|
|
Consuming a spring web service in .NET 2008
Hello, I have written a web service in spring 2.5 ws 1.5.8.
It seems to work fine except some of the names for the proxy classes generated in VS 2008 wcf when adding a service reference.
I seem to get classes myRequest amp; myRequest1 which only holds a class of myRequest. the WSDL is generated with DefaultWsdl11Definition from an XSD.
I noticed the input and method names are the same as the request elements name. So i guess this is wh visual studo creates these as myRequest amp; myRequest1.
I would like to get spring to generate a wsdl that will just have the object myRequest as a parameter and not have myRequest1 which contains myRequest when consumed by visual studio... |
|