| martin 2006-01-18, 7:04 pm |
| I have received an .WSDL file for a web service, and I need to implement C++
client code for calling this web service. I looked at the WSDL.exe tool that
is bundled with visual studio, and while reading the "/help" section I found
this:
/language:<language>
The language to use for the generated proxy class. Choose from 'CS',
'VB', 'JS', 'VJS' or provide a fully-qualified name for a class
implementing System.CodeDom.Compiler.CodeDomProvider. The default is 'CS'
(CSharp). Short form is '/l:'.
So, does that mean C++ client code (proxy class or whatever its called) can
not be generated by this tool?
If I cant generate the proxy class, how can I write one myself. What classes
should I use or inherit from etc? In this case I would need something that
transmits XML wrapped into SOAP messages to a certain URL.
sincerly,
martin
|