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
