How to get get the SOAPMessage reference from the Axis client while using WSDL2JAVA utiliity

2003-06-25 Thread Chandra Talluri
We are  trying to use AXIS with Tomcat. We want client to open a connection to the server which has webservice and send many soap messages without closing the connection. Is there a way of doing it. I thought about setting http header   Connetcion: keep-alive   But I don't see how I can get

RE: Message Style and WSDL

2003-06-25 Thread Nicholas Ardlie
thanks for the clarification mitch, this promted me to deploy a simple web service in RPC, DOCUMENT & MESSAGE styles and compare the WSDL files and the SOAP messaging (using the TCP Monitor). Of course doc style wsdl can't be the same as message style wsdl as axis needs a binding structure in the

Re: Please help me on deploying "object containing array of objects"

2003-06-25 Thread Reynardine
Try comparing your WSDL, with a similar web service that does this. For example, the CapeScience Global Weather web service returns an array of weather station objects. Here's their WSDL http://live.capescience.com/wsdl/GlobalWeather.wsdl and some client code ... capescience.ws.Station[] mSta

[axis] Serializing embedded complex types

2003-06-25 Thread Rhett . DeWall
Has anyone had luck with embedded complex types with Axis. Taking the Address example one step further, I have WSDL describes an address to have a phone that is a complex type, such as: John Doe 999 999 The WSDL, SOAP request, SOAP response and J

RE: Please help me on deploying "object containing array of objects"

2003-06-25 Thread Rudolph, Troy
Hi, I'm working on an application that does something like this. Perhaps the WSDL file will help you. It is attached below. -Original Message- From: Balaji D L [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 3:59 PM To: [EMAIL PROTECTED] Subject: Please help me on deploying

Please help me on deploying "object containing array of objects"

2003-06-25 Thread Balaji D L
Hi, I'm trying to deploy a service which returns "object containing array of objects". The objects were created using javabeans standards. In my server-config.wsdd I have specified the typeMapping of object to beanfactroy de/serializer, and the array of object to arrayserializer etc.,

Error while calling webservice..

2003-06-25 Thread n k chiranthan
hi , I have created a remedy webservice(document/literal) and used Axis. When a method opCreate is called from a java client program i get the following error... In brief: MessageText: Required element expected in the input XML document AppendedText: C:\jwsdp-1.1\webapps\axis>java

Axis 1.1rc2 problem with adding Headers to Axis/SOAP requests

2003-06-25 Thread Albert Wong
Hi, I'm trying to add entries into the Axis/Soap Header. Using env, Axis 1.1rc2 (with all the libraries provided in the lib directory in the zip + Xerces 2.4.0) on IBM JDK 1.3 running in Websphere Studio 5.0.1 I followed the answer provided at http://ws.apache.org/axis/faq.html#faq18 So I cod

Re: apache, axis, proxypasses, and firewalls.

2003-06-25 Thread Barry Levinson
We're using a similar configuration with apache proxy passing to tomcat. We've added endpointURLs to each service definition https://url.server.com/axis/services/api/myClass This causes axis to disregard the incoming url when generating WSDLs. --Barry Shah, Soniya M. wrote: We use Apache web se

RE: apache, axis, proxypasses, and firewalls.

2003-06-25 Thread Shah, Soniya M.
We use Apache web server and weblogic with the same configuration (axis deployed as servlet in weblogic inside the firewall) using http tunneling. Weblogic has a patch for apache web server to do this. We just followed the configuration details provided by Weblogic and it is working. Soniya

apache, axis, proxypasses, and firewalls.

2003-06-25 Thread Linus Kamb
Hi. In my development environment, I want to run tomcat/axis on my local machine behind our firewall and have Apache running on a machine outside the firewall configured with a ProxyPass to pass the approproate requests through to my machine. The problem is that the AxisServlet gets the server

Re: Message Style and WSDL

2003-06-25 Thread Mitch Gitman
Within a WSDL document, you have the style attribute at: /wsdl:definitions/wsdl:binding/soapbind:[EMAIL PROTECTED] There are only two possible values: * document * rpc WSDL knows nothing of "message style." By the same token, there's nothing stopping message style from being done using either doc

Turning off sendMultiRefs causes OutOfMemoryError (PLAINTEXT)

2003-06-25 Thread Miller, Andy
*** I apologize for the previous message being in RTF, here's the plain text version. *** I can find no reference to this problem anywhere in this mailing list so I was hoping someone could shed some light on it. Basically my situation is that the soap testing tool we are using to diff soap resu

Turning off sendMultiRefs causes OutOfMemoryError

2003-06-25 Thread Miller, Andy
Title: Turning off sendMultiRefs causes OutOfMemoryError I can find no reference to this problem anywhere in this mailing list so I was hoping someone could shed some light on it.  Basically my situation is that the soap testing tool we are using to diff soap results can't handle mutlirefs, s

Re: Namespace Error receiving SOAP message from AXIS

2003-06-25 Thread Jeff Greif
The problem *may* be in the generated wsdl. The soap:body elements in the binding introduce a new namespace http://bmdcs2.janbe.jnj.com/PILOT_SOAP/message/ which is not the target namespace of the wsdl. On the other hand, the abstract operation, message and part names are in the target namesp

When does service class gets loaded - after deployment?

2003-06-25 Thread Agarwal, Naresh
Hi   When I deploy a Web Service in AXIS (using any of three possible scopes). What exactly happens?   Does Tomcat loads the class (which implements the web service), once Web Service is deployed or the class is loaded only when Web Service is invkoed for first time?   Also does Tomcat cache

problem creating a XML namespace with a given Prefix

2003-06-25 Thread Kai Unewisse
Hi, I have a problem creating a XML namespace with a given Prefix (wsu): My Code : soapBody.addNamespaceDeclaration("wsu", "http://schemas.xmlsoap.org/ws/2002/07/utility";); PrefixedQName qname = new PrefixedQName( "http://schemas.xmlsoap.org/ws/2002/07/utility";, "Id", "wsu"); soapBody.a