Giter VIP home page Giter VIP logo

Comments (3)

droyo avatar droyo commented on September 4, 2024

Just so I understand, would this be an acceptable marshalling?

<BaseFilterType xmlns="http://www.fdsn.org/xml/station/1" name="foo" resourceId="1">
  <Description>blah blah blah</Description>
</BaseFilterType>

from go-xml.

droyo avatar droyo commented on September 4, 2024

The above marshalling should be doable by adding an XMLName attribute to any structs, and removing any duplicate namespaces from the field, e.g.

type BaseFilterType struct {
	XMLName     xml.Name  `xml:"http://www.fdsn.org/xml/station/1 BaseFilterType"`
	ResourceId  string    `xml:"resourceId,attr"`
	Name        string    `xml:"name,attr"`
	Items       []string  `xml:",any"`
	Description string    `xml:"Description"`
}

See https://play.golang.org/p/ek-mHr-zFY . It still has the problem that it could introduce errors when decoding, as there could be multiple "Description" elements with different name spaces.

from go-xml.

droyo avatar droyo commented on September 4, 2024

This also raises an issue I had not considered -- case mismatch in root-level element names. If the type name in the schema was baseFilterType, this package would produce invalid output when marshalling a variable of type BaseFilterType -- we would see <BaseFilterType>...</BaseFilterType>. So the XMLName field seems to be necessary for the case when the case doesn't match.

from go-xml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.