goxsd icon indicating copy to clipboard operation
goxsd copied to clipboard

Generate XML decoding structs from an XSD schema

Results 7 goxsd issues
Sort by recently updated
recently updated
newest added

goxsd FictionBook.xsd runtime: goroutine stack exceeds 1000000000-byte limit runtime: sp=0xc0201e0350 stack=[0xc0201e0000, 0xc0401e0000] fatal error: stack overflow https://github.com/gribuser/fb2

This follows #3. I'm new to Go, so there might be problems with my code. 🙈 I want to use `goxsd` to generate a parser from the huge XSD tree...

The xml double type is specificed as a 64bit float so we should use the go type float64 type when creating models. http://books.xmlschemata.org/relaxng/ch19-77065.html

If the imported XSD file is not a local file, the `No such file or directory` will be misreported. I simply modified the `parseXSDFile` function to satisfy my use. (Not...

Example XSD: Generated struct field: Name string `xml:"Name"` This is incorrect, as the Name element can appear multiple times.