Re: Creating a JWS web service with OUT parameters?

2004-03-03 Thread Ben Brown
t;bla"; ret2.value="blabla"; } regards, kiran pathuru -Original Message- From: Ben Brown [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 1:19 PM To: [EMAIL PROTECTED] Subject: Re: Creating a JWS web service with OUT parameters? I was hoping that I could jus

Re: Creating a JWS web service with OUT parameters?

2004-03-03 Thread Ben Brown
ike this... That should do... regards, kiran pathuru -Original Message- From: Ben Brown [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 12:56 PM To: [EMAIL PROTECTED] Subject: Creating a JWS web service with OUT parameters? I want to do some JUnit tests with

Creating a JWS web service with OUT parameters?

2004-03-03 Thread Ben Brown
I want to do some JUnit tests with simple JWS webservices but only a result parameter can be returned by default, not OUT parameters. How can I get it to return OUT parameters as a java method can only return one OUT parameter? TIA, Ben

Binding all xsi types to an Object

2004-02-27 Thread Ben Brown
Axis or bust this one I have an Axis client with which I want to bind all xsi types to java.lang.Object in order to convert them to a String. I'm not using beans to do bindings as the client must be able to dynamically connect to a variety of web services. Is there an easy way to do this?

Re: SEND_TYPE_ATTR ignored?

2004-02-11 Thread Ben Brown
It was being caused by my setting an incorrect (undefined) QName type for a parameter- this overrode the SEND_TYPE_ATTR flag in axis. Benjamin Ben Brown wrote: I'm writing a client that should not send the XSI type attribute so I've set the property using: call.s

SEND_TYPE_ATTR ignored?

2004-02-11 Thread Ben Brown
I'm writing a client that should not send the XSI type attribute so I've set the property using: call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); According to the API: AXIS properties: SEND_TYPE_ATTR - Should we send the XSI type attributes (true/false) Using So

Re: Web Services testing

2004-02-04 Thread Ben Brown
It might be slightly too technical but how about SOAPScope 3? I don't know if this contains the Scope-It functionality of "TRY IT" on www.xmethods.net but I would assume so. This builds the wsdl, generates proxies and can test the service. SoapScope: http://www.mindreef.com/products/overview.htm

Axis and Document Style RPC

2004-02-02 Thread Ben Brown
Apologies if this has been asked before: Does anybody have a simple example I can use for document style soap using Axis? (I.e. similar to the first few examples in the user guide?) I'm trying to write a client that will connect to any document style SOAP service but I don't know if this is possi