The problem is probably related to the style="document" instead of
style="rpc" confusion, discussed here a while back. Moral of the story
was MS's thingy (and PHP pear::SOAP, I've found) works fine if it gets
style="rpc"
Uche: If you're worried about the performance of all those calls, the
generated WSDL should be cached by the MS stuff. I don't see why calling
the stub generator before using the service is a problem, perhaps give
yourself a wrapper so that you just give it the service name and it
gives you the stub? You'd have to have the service name somewhere
anyway, I would think. 45 times or not.
Pete
Cameron Smith wrote:
Uche, what version of wsdl.exe (or Visual Studio .NET) where you using?
Because I have had problems using it against OFBiz-generated WSDL files.
cameron
___________________________________________________________
The all-new Yahoo! Mail goes wherever you go - free your email address from your Internet provider. http://uk.docs.yahoo.com/nowyoucan.html
Akotaobi, Uche wrote:
...There is only one service per WSDL definition. Exposing 45 services means
having 45 separate WSDL definitions, which means I have to invoke the WSDL stub
generator 45 times and add 45 classes to my project--which just seems wrong.