W3C SOAP Standards - XML

cardgunner

Member
Joined
Feb 8, 2008
Messages
13
Programming Experience
Beginner
I'm a newbie.

I have a customer who wants me to export to him a list of our equipment using his XML scheme.

I have no idea how to do it. Thru my Visual Studio .net 2003 I can export to a XML but it's not the right schema. It has to be in the W3C SOAP Standard.

How do I do this?
 
If your list is in database, you can use System.Xml.XmlWriter to rebuild the export list according to your XML schema.
If you list is exposed as XML Web Service, you need to map your Web Service to that schema. Please note that XML Web Service only support SOAP 1.1. If the schema is SOAP 1.2, you need WCF service.
 
Back
Top