Hi,
I am using 2 different web services: Manage_Login and Manage_Employee.
In these WS I can have the same message (using the appropriate
methods), and this message is an object that I serialize: Employee.
On the client side, after using my WS, I try to compare two objects:
Manage_Login.Employee and Manage_Employee.Employee. It is the same
class, from the same assembly (my underlying business objects
assembly), but coming from 2 different web services.
I get a casting incomptability between 2 instances of the same class.
Is there a way around that?
I would like not to have to write a function that does:
Manage_Login.Employee.Name=Manage_Employee.Employe e.Name;
Manage_Login.Employee.EMail=Manage_Employee.Employ ee.EMail;
....
thank you for you thoughts and help,
Pierre