cjard
Well-known member
- Joined
- Apr 25, 2006
- Messages
- 7,081
- Programming Experience
- 10+
Hi
So, I'm pretty well up on datasets and the dataset generator, but time has come where I'm having to form XML requests and parse responses directly to/from a webserver. I'd like to know, given that I have the XSD for the request/response, whether there is some tool I can run to turn this into a block of code so i can say:
Dim x as New MyXMLRequest
x.Whatever = Value
x.Whatever.OtherTHing = ANotherValue
tcpSocket.Write(x.ToXML())
I've used a tool called XSD.exe to generate a dataset from the XSD, but the XML it forms isnt quite right..
So, I'm pretty well up on datasets and the dataset generator, but time has come where I'm having to form XML requests and parse responses directly to/from a webserver. I'd like to know, given that I have the XSD for the request/response, whether there is some tool I can run to turn this into a block of code so i can say:
Dim x as New MyXMLRequest
x.Whatever = Value
x.Whatever.OtherTHing = ANotherValue
tcpSocket.Write(x.ToXML())
I've used a tool called XSD.exe to generate a dataset from the XSD, but the XML it forms isnt quite right..