I need to use 2 different web services. Both contain a definition for the user object.
When I refer to services using the Add Service Link link, I provide each service with a unique namespace:
com.xyz.appname.ui.usbo.UserManagement
com.xyz.appname.ui.usbo.AgencyManagement
The problem is that each of the proxies created contains a new custom class. One is at com.xyz.appname.ui.usbo.UserManagement.user, and the other is at com.xyz.appname.ui.usbo.AgencyManagement.user. However, the user objects are identical, and I would like to consider them as such.
Is it possible to somehow refer to a user object as one object instead of considering them as two different?
I am using .Net 3.5 to use the service. The consumed service is written in Java.
Thanks!!
Edit:
This forum topic is very close to the answer, but the accepted answer was for sharing types from the client and server - which I can not do because we cross platforms (Java in .Net). The real question is: is there a parameter / type of type sharetypes for svcutil in WCF?
source
share