Hi,
How do I create a multi purpose WebService that can service different requests based on the parameter passed to it. Lets say we had a .dll that contains all the service functions related to our Widgets application like...
1. get city and state by passing the zip,
2. get zip by passing the city and state,
3. get unlock key by passing a string,
4. get uptime by passing an uptime function,
5 and on and on.
The idea here is I need to know how to build and call a multi function/procedure webservice, as all examples I've seen only has a single purpose function.
Also, can I create a webservice that has all company wide functions (for all our apps in a single "webservices.dll") that we would want to expose to a client process?
Thanks,
Stanley
How do I create a multi purpose WebService that can service different requests based on the parameter passed to it. Lets say we had a .dll that contains all the service functions related to our Widgets application like...
1. get city and state by passing the zip,
2. get zip by passing the city and state,
3. get unlock key by passing a string,
4. get uptime by passing an uptime function,
5 and on and on.
The idea here is I need to know how to build and call a multi function/procedure webservice, as all examples I've seen only has a single purpose function.
Also, can I create a webservice that has all company wide functions (for all our apps in a single "webservices.dll") that we would want to expose to a client process?
Thanks,
Stanley