vote up 2 vote down star

So I have an XSD and a webservice that delivers in that same format.

Now I could go ahead and read the xml into a document, create my objects from the class etc... But I am thinking, there must be some easier way to do that.

Am I right? ;)

<ResultSet xsi:schemaLocation="urn:yahoo:maps http://api.local.yahoo.com/MapsService/V1/GeocodeResponse.xsd">
 <Result precision="address">
  <Latitude>47.643727</Latitude>
  <Longitude>-122.130474</Longitude>
  <Address>1 Microsoft Way, #Way1</Address>
  <City>Redmond</City>
  <State>WA</State>
  <Zip>98052-6399</Zip>
  <Country>US</Country>
 </Result>
</ResultSet>

Below are auto-generated classes (two actually), using xsd.exe

class diagram

flag

5 Answers

vote up 6 vote down check

You could use the XmlSerializer to deserialize the XML text into instances of the classes generated by xsd.exe.
The XmlSerializer will use the metadata attributes placed on the generated classes to map back and forth between XML elements and objects.

string xmlSource = "<ResultSet><Result precision=\"address\"><Latitude>47.643727</Latitude></Result></ResultSet>";

XmlSerializer serializer = new XmlSerializer(typeof(ResultSet));
ResultSet output;

using (StringReader reader = new StringReader(xmlSource))
{
    output = (ResultSet)serializer.Deserialize(reader);
}
link|flag
vote up 0 vote down

You could just create a Typed DataSet from the XSD and then fill one of those objects with the XML. That's the pretty common method.

link|flag
Interesting! How would you fill it? – Kjensen Apr 27 at 10:30
1  
I am guessing myDataSet.ReadXml(stream/reader/file) – Preets Apr 27 at 10:51
vote up -1 vote down

Kjensen, can you elaborate on your problem a little ? What do you mean by

Generated classes (two actually), using xsd.exe ?

link|flag
I am just showing the two classes that xsd generated for me. That is just supplemental information, not a problem. – Kjensen Apr 27 at 10:29
I edited the question to make it more clear, what that is. :) – Kjensen Apr 27 at 10:38
1  
Do the standard .NET Serializer / Deserializers not work for you ? Why do I feel I am missing something ! – Preets Apr 27 at 10:53
It works perfectly for me - I just did not know it existed (serializer/deserializer). – Kjensen Apr 27 at 18:44
Ahh... Super ! :) – Preets Apr 28 at 3:43
vote up -1 vote down

I guess that you want to create classes for parsing an xml file which should fullfill a given xsd. If so you can generate a .jar using apache xmlbeans

Read this:

http://xmlbeans.apache.org/documentation/tutorial_getstarted.html ..

Down load it from: http://www.apache.org/dist/xmlbeans/binaries/

Actually the simple command is goto the "bin" directory of "xml beans" (you've installed that)

then type

scomp -out <out.jar> <in.xsd>

that's it ..

Luis

PS: As far as I remember XMLspy brings also the possibility for automatically creating java classes for the same pourpose.

link|flag
The question is specific to .NET (see tags) – Enrico Campidoglio Apr 27 at 11:03
vote up 0 vote down

The XSD Code Generator in Liquid XML Studio does a great job of creating highly compliant c# or vb.net code from an XML Schema. This code can then be used to call or implement a web service.

If your implementing a web service then you can take control of the WSDL produced using XmlSchemaProvider and IXmlSerializable, see Taking Control of your WSDL

link|flag

Your Answer

Get an OpenID
or

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