Xsd2Code is a CSharp or Visual Basic Business Entity class Generator from XSD schema.

learn more… | top users | synonyms

1
vote
0answers
29 views

Loading XML with code, generated by XSD2Code

I am having trouble to get the code, generated by XSD2Code, to load a supposedly valid xml file. My test case involves generating C# code for the KML version 2.2.0 schema and trying to load a sample ...
0
votes
0answers
20 views

How can I get automatic properties in my class generated from XSD?

Is there any way to get automatic properties in my class file that's generated from xsd? I am using Xsd2code and have tried the following command. c:\xsd2code q2test.xsd /n ContractXml /pl Net35 ...
0
votes
1answer
37 views

Deserializing XML element containing namespace

I have received an XSD schema, from which I have created object using xsd2code. The next step was to deserialize sample XML file using the object generated above. The problem is when I try to ...
0
votes
1answer
55 views

XSD2Code namespace issue

I am using XSD2Code to generate C# class from XSD file. I got stuck with the following problem. XML file looks something like <?xml version="1.0" encoding="utf-8" standalone="yes"?> ...
4
votes
1answer
146 views

What happened to Xsd2Code class generator Add-in for Visual Studio?

I am using Version 3.4 and it is no longer working and the link on codeplex indicates, "This project is not yet published." Maybe an exception is thrown in the check for updates because the Generate ...
0
votes
0answers
81 views

XSD2CODE and DataContract WCF

my problem seems to be simple but I don't find a solution till now. I have created a wsdl file. The wsdl uses complex type so at the end, before creating it I have created some xsd files that ...
0
votes
0answers
40 views

Xsd2code and validation via Data annotations?

I am using XSD2Code, and very useful it is too. However it would be very handy if one could define validation in the XSD Schema file using facets for example to setup restrictions. These could then be ...
1
vote
0answers
22 views

Can I use wsdl2php on a plain XSD document? [duplicate]

I'm trying to generate classes for the OVF xsd. I've found a bunch of incomplete/broken projects. I was thinking that wsdl2php might work, but it looks like it expects a WSDLdocument and not an XSD. ...
2
votes
1answer
225 views

Can we control type name in xsd.exe tool generated class

xsd.exe tool generates classes for given xsd file. It follows a pattern for naming the type. For example, <Students> <Student Name="A" RollNo="1" Address="Some Address"> ...
1
vote
0answers
50 views

need to edit xsd to get a specific format

I'm using xsd2code and my xsd have this <xs:element name="TransactionRequest"> <xs:complexType> <xs:sequence> <xs:element name="Records"> <xs:complexType> ...
0
votes
1answer
166 views

Complex XML Parsing in C#

I need to parse a complex and large (100 MB+) XML file. Fortunately I have XML Schema definitions, but unfortunately I can not use xsd2code to generate an automatic XML deserialization, because there ...
1
vote
1answer
100 views

XSD2Code, Is it possible to serialize inherited properties from a parent abstract class?

I have a XSD2Code generated Class and all is working. However I want to generate and store IDs as GUIDs on all Complex class types ie Order, OrderItem etc. to facilitate CRUD from the object ...
0
votes
1answer
339 views

WSDL-XSD to PL\SQL

Hers my problem: we have a web service that we need to invoke from PL\SQL. I want a tool similar to this http://www.liquid-technologies.com/XmlDataBinding/Xml-Schema-To-VB.aspx, only for PL\SQL. In ...
1
vote
1answer
317 views

How to make xsd2code create XmlArrayAttribute and XmlArrayItemAttribute without making an extra class

I have an xsd that I want to look a certain way serialized. I can achieve what I want with the following but the problem is, xsd2code generates an extra class that's completely unused anywhere. Am I ...
0
votes
0answers
105 views

How to obtain the xml element name corresponding to the binding data type in c#

I have used xsd2code and generated c# classes for my xsd. In my xsd i have elements such as <xs:element name="helloworld" type="HelloWorldData"/> I read an xml using xmlserializer, and it is ...
0
votes
1answer
243 views

Create Java Class from XSD at run time

I have a requirement in which my front-end screen creates an XSD at run time. After which i need to create Java Classes for the same then zip it into an war file. all this needs to be done at run ...
0
votes
1answer
203 views

Free tool / extension to convert XSD to C# with working annotations

Is there any tool or version of XSD2Code or xsd.exe that can generate C# entities together WITH comments from XSD2Code? Both XSD2Code and xsd.exe ignore annotations (for XSD2Code, ...
0
votes
0answers
125 views

XML Format when using XSD2Code VS Extension

I've just started looking at XSD2Code for serialization. It seems good so far but when i use the Serialize or SaveToFile methods the entire document is on one line. Is there a way to formate it like ...
0
votes
1answer
259 views

Xsd2Code and xmldsig

I have a problem with generating code from xsd with Xsd2Code. The xsd looks like this: <?xml version="1.0" encoding="utf-8"?> <xs:schema ...
1
vote
2answers
360 views

XSD.EXE gives error when Multiple Elements Generation when Files have cross references

I have orbitz (global hotel distribution system) xsd schema and want to generate c#.Net classes from these xsd files. When I use Xsd.Exe or XSD2Code or something else, generated classes copies ...
0
votes
1answer
205 views

Error converting PMML XML Schema (xsd) to C# Object using Xsd2Code

I tried to create C# object from PMML 3.0 Schema (PMML 3.0 Schema) using Xsd2Code (Xsd2Code), but all I got was following error: Error: Multiple definition of element ...
-1
votes
1answer
147 views

import in XSD and its implementation

I have 2 separate XSDs with some common attributes. I want to create another XSD and put all my common attributes in the separate XSD and import them in the 2 XSDs i have already rather than repeating ...
1
vote
1answer
352 views

Creating an Array with xsd2Code and c#

I'm using an .xsd schema like this <?xml version="1.0" encoding="utf-8"?> <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" ...
0
votes
1answer
256 views

“System.InvalidOperationException” - xsd XSD2Code Stylesheet XML C# Visual Studio

I created an .xsd from an xml file using XSD.Exe from the Visual Studio Tools (now Win 7 SDK Tools). My .xsd file: <?xml version="1.0" encoding="utf-8"?> <xs:schema id="SceneFile" xmlns="" ...
0
votes
1answer
233 views

Modifying code generated from XSD schema

I have some 5 XML calls to be implemented in C#. I used Xsd2Code to auto generate the code, and I am quite happy with the results. My problem, however, is that all the XML calls have same request ...
0
votes
1answer
188 views

Using non default types within a xsd definition for xsd2code when generating C# code

In our project we are using Xsd2Code to generate c# code. The XSD I am trying to adjust looks like this: <?xml version="1.0"?> <xs:schema attributeFormDefault="unqualified" ...
0
votes
1answer
501 views

Access to class generated with XSD

I've issue with access to property of my generated class. This is my xml: <?xml version="1.0" encoding="UTF-8"?> <e:Envelope xmlns:e="http://www.w3.org/2003/05/soap-envelope" ...
0
votes
1answer
2k views

Using XSD2CODE with multiple schema files

I am using XSD2CODE with Visual Studio 2010. I know I can right click on a schema (XSD) file and generate the c# class from it. What I would like to know is how can I generate the C# class when I ...
5
votes
1answer
479 views

In Visual Studio, can I make one file run another's custom tool? (in this case using Xsd2Code)

I am trying to work out if it is possible, when using a Custom Tool in Visual Studio, to have a change in the contents of one file, trigger the Custom Tool of another. My scenario is this: In a ...
0
votes
2answers
412 views

RestSharp consuming SubSonic REST Api

I am currently writing a c# library to use cross platform on windows, iOS, Android. I am consuming a Rest service and having some trouble with the objects being returned from the response. I am using ...
1
vote
1answer
209 views

What is the maximum number of elements in an XML document if the XSD does not specify maxOccurs?

I have an XSD schema that defines multiple elements in a document. Two sets of the elements I expect to be collections. One set of elements is defined like follow: <xsd:element name="Prospects" ...
3
votes
2answers
1k views

Deserializing complex xsd schemas (containing substitutiongroup elements for inheritance) with xsd.exe or xsd2code

I have problems with deserializing/serializing some xsd schemas, specially with substitution group elements (substitutiongroup) within. What I want to do is to generate C# classes from xsd schemas, ...
0
votes
1answer
951 views

Xsd2Code help - generated code does not seem to match schema

I might be doing something totally wrong, but i created a simple test schema: <?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ...
0
votes
2answers
222 views

pass xml and get strongly typed .NET OBjects

I've been using Linq To XML in order to mapp the XML DOcument to .NET OBjects. Could anyone please guide me whether there any too exist where I can pass XML Document (string) and it returns strongly ...
0
votes
1answer
382 views

xsd2Code Deserialize not working

I'm using XSD2Code in order to serialize and deserialize an XML document. For some reason I'm not getting Deserialize method in my intellisense. When I look at the code generated by XSD2Code, I can ...
2
votes
1answer
273 views

Why has an xsd file code behind files. What are they for?

Can anybody explain me why an xsd file has 2 sub files (.cs and .designer.cs) and what they are for? As for the designer.cs, in our case it is generated by Xsd2Code. Why would you do that?
3
votes
2answers
4k views

How to use class generated by Xsd2Code

I am new to XML coding. I have an XML file with which I generated the Schema file using XSD tool, then generated the class file using Xsd2Code tool. Now I have a file called Timesheet.Designer.cs ...
0
votes
2answers
2k views

How to use XSD2CODE generated C# classes

I am new to XSD world, I worked with XML but not much programtically. I have successfully generated C# classes using XSD2Code.Can somebody please guide me how can I use those generated classes using ...
0
votes
2answers
1k views

c++/Parsing: error: expected primary-expression before '->' token .how to solve this error..?

I am new to c++/parsing, I convert the xsd file into an auto generated cpp and header file. When I try to access the element (member functions) of the xml file (xmlfilename) I am getting the error ...
1
vote
1answer
1k views

xsd2code - problem deserializing xml file

In the past I created own xml serialization class manually. But now I would like to do it automatically. So I found XSD tool by Microsoft. Unfortunately I face a bug with this utility (CS030 etc.). ...
1
vote
0answers
198 views

sxd2Code generated code deserializes xml files fine when run in VA2008/VS2010, but not when run from cmd

I have a schema file I used to generate corresponding classes in C# with xsd2code. When I run the application in VS2010 debugger, I get all the data from my xml file in, but when I run .exe from cmd, ...
1
vote
2answers
617 views

Xsd2Code omits certain fields

I'm using Xsd2Code to generate classes from an XML schema. It works for some complex types like the following: <xs:complexType name="AsiguratB1Type"> <xs:sequence> ...
1
vote
2answers
920 views

Looking for generator of Python <--> XML bindings

I'm looking for a generator which takes schema file(s) (XSD) on input and generates Python code (bindings) able to transform xml file to Python objects and the other way around. It should be ...
0
votes
3answers
2k views

xsd2code multiple xsd file create duplicate sub classes

I am using xsd2code to generate classes from the xsd schema provided by the star standard. I did try to use xsd.exe to generate the classes, but it did not do a good job. When I generate the class ...
1
vote
1answer
906 views

WPF TreeView HierarchicalDataTemplate Unlimited Nodes

I am having problems populating my treeview beyond the first level when the xml is using the same class name to have unlimited levels. I have used Xsd2Code to create the object class. To keep this ...
0
votes
1answer
496 views

Recursive XSD Help

i'm trying to learn a little bit XSD and I'm trying to create a XSD for this xml: <Document> <TextBox Name="Username" /> <TextBox Name="Password" /> </Document> ... so ...
0
votes
1answer
696 views

XML complexType with element that ends up as “XmlElement”

In my XSD, I have something similar to this: <?xml version="1.0" encoding="utf-8" ?> <schema xmlns:jump="testThingy" elementFormDefault="qualified" targetNamespace="testThingy" ...
11
votes
3answers
10k views

How to convert XSD to Python Class

I just want to know if there is a program that can convert an XSD file to a Python class as JAXB does for Java?