Re: document through wsdl

2004-01-13 Thread Dhanush Gopinath
Hi Krishna ,   I dont think your code deployment is correct. To pass an Object as an argument I think u must specify it in the deployment descriptor . It should have a tag which gives all the details of the Object to be passed as argument. You can refer Axis User Guide  for this.   String e

Re: Accessing SOAP Message Header

2004-01-13 Thread Rommel Sharma
Here is sample code to use MessageContext,,,(after the necessary imports of course)     MessageContext msgContext = MessageContext.getCurrentContext();   //get the servlet requestHttpServletRequest request = (HttpServletRequest)msgContext.getProperty(HTTPConstants.MC_HTTP_SERVLETREQUEST); (

Re: Throwing Axis Faults

2004-01-13 Thread Rommel Sharma
Hi Ransel, Thanks! Warm regards, Rommel Sharma. - Original Message - From: "Ransel Lopez" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Rommel Sharma" <[EMAIL PROTECTED]> Sent: Wednesday, January 14, 2004 3:43 AM Subject: RE: Throwing Axis Faults > You can provide org.w3

Re: Accessing SOAP Message Header

2004-01-13 Thread Jim Stafford
I believe you can use http://ws.apache.org/axis/java/apiDocs/org/apache/axis/MessageContext.html#getCurrentContext() to get the current MessageContext which will point you to just about everything Axis knows about the message. http://ws.apache.org/axis/java/apiDocs/org/apache/axis/MessageConte

Re: Problem with multiple parameters

2004-01-13 Thread Shantanu Sen
Are you using the rpc-encoded or doc-lit? If you used doc-lit, you may need to use the wrapped style option. Shantanu Sen --- Rosén_Håkan <[EMAIL PROTECTED]> wrote: > Hi, > I have written an interface : > public interface Myervice { > public boolean logonTest(String username, String > pword )

SOAP with Smalltalk Experience

2004-01-13 Thread Charles Griswold
Has anyone had useful experiences with connecting to VisualAge Smalltalk? I am particulary interested in the need for customer XML serializers for use with a Smalltalk client -- Charles H. Griswold, III LogixPartners, Inc. 617-803-2502

Accessing SOAP Message Header

2004-01-13 Thread Ransel Lopez
Title: Message Hi all:   How can I access to the header of a client request?? I mean, for example: my client always send me some information and I don't need it like a parameter (for example a sessionID). Clients are going to send that info as a header parameter. How can I acces that info a

RE: Throwing Axis Faults

2004-01-13 Thread Ransel Lopez
You can provide org.w3c.dom.Element[] like this: DOMImplementationImpl DOM = new DOMImplementationImpl(); DocumentType docType = DOM.createDocumentType("test", "", "test.dtd"); Document doc = new DocumentImpl(d

WSDLException: faultCode=OTHER_ERROR: Can't find prefix for

2004-01-13 Thread Pravir Ramtekkar
Hello, I have sucessfully deployed webservices using AXIS using the wsdds. I wrote a CORBA provider so that I dont have to write the bean class and still have the interfaces published as webservice just using the wsdd. This works great and I am able to access the CORBA methods as using webservi

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18530

2004-01-13 Thread Pradeep Bhatt
Hi, I would like to know if this bug is fixed in AXIS 1.0 release. Also I am looking at "18530.zip" in which it says it solves the issue. Can some one let me know how to down load this ! This info is required ASAP ! Thanks Pradeep

limiting a service to a particular transport

2004-01-13 Thread Jason Essington
Is there a way to keep a service from accepting requests from a particular transport if an axis engine is servicing more than one transport? Or would a service level handler on the (server) request side that checks the transport be the right way to go? -jason

Re: Bad envelope namespace

2004-01-13 Thread Christoph Tratter
Hi Jørgen, The problem is, where you like it to have. In SOAP versioning is accomplished by means of the namespace name for the SOAP envelope. In your case the Axis client (presumably you have version 1.1 final of Axis) uses Version 1.1 of SOAP as default. This can be seen from the use of the

RE: Bad envelope namespace

2004-01-13 Thread Jørgen Austvik
On Tue, 2003-10-14 at 12:49, Schie, Sjaak van wrote: > You can run the HTTP connection through the axis tcp monitor. > It's described in the User Guide. > See "Using the Axis TCP Monitor (tcpmon)" for that. > > I think you sometimes get and invalid page from the server, which in not > correctly fo

document through wsdl

2004-01-13 Thread MANCHIKALAP, KRISHNA (SBCSI)
Hello one & ALL, Did anyone tried to deploy, which returns org.w3c.dom.Document . If YES then pls help me to deploy my code Heres am attaching the source code of my example, but am able deploy string return. I appreciate if some one can help me out to fix this <> <>

Re: Problem with multiple parameters

2004-01-13 Thread Jim Stafford
I have done nearly the same with the alpha (and previous versions) successfully. I would suggest you either * add some debug statements to the Stub and/or Skeleton to determine what is happening at the Call level, * insert the monitor at the TCP level (see bottom of http://ws.apache.org/axis/jav

Problem with multiple parameters

2004-01-13 Thread Rosén Håkan
Hi, I have written an interface : public interface Myervice { public boolean logonTest(String username, String pword ); } and generated classes via java2wsdl and deployed the service. Then I wrote a client that passes a username/password to the service. My problem is that the second parameter '

headers and namespace prefix web service response

2004-01-13 Thread Enrique Rodríguez
I have to deploy a web service for that have to work with a created  web service client.   This web service have to read information from soap-header, ando f course from soap-body, and both have all the tags namespace prefixed.   Read the client callo n the server wan not dificult using

Re: How to get to the wsdl

2004-01-13 Thread Tore Halset
Hello. I found the solution to the problem :) It was the server-config.wsdd. Starting with the generaded wsdd by the demo webapp and AdminService/AdminClient fixed the problem. Puh! - Tore. http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>

Re: How to get to the wsdl

2004-01-13 Thread Tore Halset
Hello. I still have problems generating wsdl for my web services. I am running jboss-3.2.1_tomcat-4.1.24 on OS X 10.3.2 with java build 1.4.1_01-99. "axis-1_1/webapps/axis" works very well. Both happyaxis, EchoHeaders and generating wsdl works. I have created a minimal project to demonstrate t