qnames

XmlDocument.Save doesn't output full QNames for Elements

I've encountered an issue whereby when I create an XML Document programmatically using the System.Xml classes and then use the Save method the output XML doesn't use QNames for the Nodes and just uses local names. eg Desired Output <ex:root> <ex:something attr:name="value"> </ex:root> But what I currently get is <root> <somethin...

Accessing identical web services using the same client

Hi. I have some web services and I am creating a web client using ws-import. When creating the client I have this line: MyServiceService service = new MyServiceService(); It works fine as it is. I have the same web service running on another server and I was wondering if I could access them using the same client. Is it possible t...