WebService to Webservice 2
-
Hi all, I have a web service which I want to implement on multiple servers and which can communicate with each other. (Meaning reusing the same web service on the different servers) I am currently using a proxy class which i created with wsdl.exe in order to call the web service from any other component (web page, windows service, etc). That works fine, giving it the Url. Now the problem I have is communicating between one web service and another, as when I add the proxy class to the web service, in order to create an instance of a webservice and give it a URL, the namespaces, functions etc already have definitions for them. To simplify: Web page to web service communication Web page has web service proxy class, an instance of web service is created, a url is given and the web service methods called - works fine Web Service to Web service communication I add the proxy class to the web service and it gives me errors, namespace already defined, etc etc, obviously because the proxy class is of the same web service I am trying to add the class to. So effectively my question is this. In order to reuse my web service over multiple servers and call methods between these web services, what do I have to do? Thank you very much in advance for any help