Hi,
I have a WSDL file and I want to create a SOAP server process from that file using visual studio .NET.
Until now I have created a cs file from the WSDL with the following command
wsdl my.wsdl my.xsd /language:CS /server
Now I want to start a server process at a custom port (eg port 10000) that will send the responce back to my client after an HTTP post from the client.
How do I proceed. What are the next steps? Any tutorial?