You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@ws.apache.org by "Adam.Leggett" <Ad...@upco.co.uk> on 2001/11/29 12:22:54 UTC

RE: FW: .NET Service Apache Soap and Axis clients - now Cookies

Big thanks Sam..works a treat even on complex types. 

Also Does anyone have experience of using cookies with Axis /Apache?

Cheers

Adam

Adam Leggett
UPCO
Direct Line: 0113 20 10 631
Fax: 0113 20 10 666
<http://www.upco.co.uk>
The contents of this email are intended for the named addressees and may
contain confidential and / or privileged material. If received in error,
please contact UPCO on +44 (0)113 20 10 600 and then delete the entire email
from your system. Unauthorised review, distribution, disclosure or other use
of this information could constitute a breach of confidence. Your
co-operation in this matter is greatly appreciated.




-----Original Message-----
From: Sam Ruby [mailto:rubys@us.ibm.com] 
Sent: Wednesday, November 28, 2001 1:31 PM
To: axis-user@xml.apache.org
Cc: soap-user@xml.apache.org
Subject: Re: FW: .NET Service Apache Soap and Axis clients


Adam Leggett wrote:
>
> My MS colleague is auto-generating WSDL from his deployed C# class.
>
> When comparing the base interop WSDL with my colleagues, it appears 
> that 'our' WSDL defines all parameters to all methods as complex types

Have your MS colleague change his .asmx file.  Where it currently says:

   [WebMethod]

Replace this with:

   [WebMethod, SoapRpcMethod]

In order to get this to work, the following may also need to be added:

   using System.Web.Services.Protocols;

- Sam Ruby