XML response of webservice call in C# -


I'm calling a webservice in C # and returning an array of objects.

How to get an XML string instead?

Change the return type of the webservice method in a string, and make your data serial before returning it .

Besides, why do you want to do this? If you are getting an array of objects, then what is not included in XML / SOAP?


Comments

Popular posts from this blog

iphone - How do I make a UIPickerView in a UIActionSheet -

java - Is there an object like a "Set" that can contain only unique string values, but also contain a count on the number of occurrences of the string value? -