I have 2 web services, one written in java and the other in c#. The java web service is the main web service and the .net web service is a backup, so the .net service basically just mirrors the java service.
The problem is that when i generate my client code using wsdl.exe /sharetypes none of the types are shared. This leaves me with something like this
AClass, AClass1
SecondClass, SecondClass1
I want my client to basically use these 2 web services interchangeably. If i cant connect to the java service i want to connect to the .net service and use it the exact same way, but if the types are not the same i cannot achieve this.
BTW the client must be written in .net 2.0
Thanks ahead for any help!