views:

20

answers:

1

I have 2 services that one returns an object and a second service that takes that same object in as a paramater. Is it possible to do something like the following in .NET? From my understanding JAVA actually supports actions like this

var personObject = Service1.GetPerson();

Service2.DeletePerson(personObject);

Thank you for any assistance or direction that can be provided!

A: 

The solution is actually shared types on the reference. Doesn't appear to have a permanent solution for it that you will not have to update after each update of the wsdl but it works.

Nic