I have an ASMX web service that exposes several objects. I have a real instance of that object, and I would like to instantiate a stub object that is populated from it. Clearly there is such functionality already, because when the web service returns a value it is creating the stub and populating it. I just need to do the same thing manually.

Ideas?

link|improve this question

71% accept rate
feedback

2 Answers

I answered a similar question at the following link: The following link

link|improve this answer
feedback

You said

the web service returns a value it is creating the stub and populating it

This is not true. The web service uses the XML Serializer to serialize the object into a SOAP message, then sends it to the client. At the client side, the SOAP is deserialized back into an object, though this time, it's a proxy object.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.