Hi
I understand, that the "normal way" in creating Web Services is:
Creating Web Service --> WSDL --> Creating Client
Unfortunately, I have to create a Web Service (Service, not Clinet) from an
existing WSDL.
Can somebody tell me, what's the right way to do this?
Any hint is much appreciated.
Bert Leu
Cowboy (Gregory A. Beamer) - 23 Nov 2007 19:59 GMT
I don't think there is a tool to do it for you, although creating the client
will help you rough in any objects you have to use and give you the method
call for the service, so you can copy it into your service.
MapForce (Altova) can also be used to create services from the WSDL.

Signature
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA
*************************************************
| Think outside the box!
*************************************************
> Hi
>
[quoted text clipped - 10 lines]
>
> Bert Leu
Nick Locke - 28 Nov 2007 14:22 GMT
Take a look at wsdl.exe which lives down in the .NET folders. Throw your
wsdl at it, making sure to specify the /si parameter and you will get a
service (which I think is what you want). Actually you will get an
interface class which you can then use in another class which implements
that interface.
Basically, you will end up with all the methods that you need to react when
the service is called - you just need to add your functionality.
wsdl.exe is a bit of a picky beast - shout if you get stuck.
Nick
> Hi
>
[quoted text clipped - 10 lines]
>
> Bert Leu