I'm trying to encode Go struct into a Soap-Envelope (xml). So far, the soap body looks fine except one small error. While my envelope should look like this:
<SOAP-ENV:Body>
<q3:WMLS_AddToStore xmlns:q3="http://www.foo.abr/message/120">
<WMLtypeIn>param1</WMLtypeIn>
<XMLin>param2</XMLin>
<OptionsIn>param3</OptionsIn>
<CapabilitiesIn>param4</CapabilitiesIn>
</q3:WMLS_AddToStore>
</SOAP-ENV:Body>
My code is Generating this:
<SOAP-ENV:Body>
<q1:WMLS_AddToStore xmlns:q1="http://www.foo.abr/message/120">
<ActionName>
<WMLtypeIn>param1</WMLtypeIn>
<XMLin>param2</XMLin>
<OptionsIn>param3</OptionsIn>
<CapabilitiesIn>param4</CapabilitiesIn>
</ActionName>
</q1:WMLS_AddToStore>
</SOAP-ENV:Body>
Notice the ActionName tag. I want to either:
Remove this ActionName tag
OR
Rename it to q3:WMLS_AddToStore
(which I can do) but then I need to add the xmlns:q1
attribute to it.
CODE:
type Message interface{}
type OperationWMLS_AddToStoreSoapIn struct {
WMLtypeIn string `xml:"WMLtypeIn,omitempty"`
XMLin string `xml:"XMLin,omitempty"`
OptionsIn string `xml:"OptionsIn,omitempty"`
CapabilitiesIn string `xml:"CapabilitiesIn,omitempty"`
}
type Body struct {
XMLName xml.Name `xml:"SOAP-ENV:Body"`
ActionName temperature `xml:"q1:WMLS_AddToStore"`
}
type Action struct {
ActionName Message `xml:",innerxml"`
XMLAttr string `xml:"xmlns:q1,attr"`
}
func main() {
in := struct {
OperationWMLS_AddToStoreSoapIn `xml:"tns:WMLS_AddToStore"`
}{
OperationWMLS_AddToStoreSoapIn{
"WMLtypeIn",
"XMLin",
"OptionsIn",
"CapabilitiesIn",
},
}
x := &Body{
ActionName: Action{
ActionName: in,
XMLAttr: "http://www.foo.abr/message/120",
},
}
enc := xml.NewEncoder(os.Stdout)
enc.Indent("", " ")
if err := enc.Encode(x); err != nil {
fmt.Printf("error: %v
", err)
}
}
Here's the playground: https://play.golang.org/p/fWl-G2d8ME2