You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello!
how to remove the tag from soap:Header?
I want to make such a request <soap:Envelope> <soap:Header> <userId>1111111111</userId> </soap:Header> <soap:Body><test></test></soap:Body> </soap:Envelope>
The text was updated successfully, but these errors were encountered:
You can try using version 0.4.0. I have the same problem that the implementation has changed regarding headers from v0.4.0 -> v0.5.0. For me it works in v0.4.0 :)
a field with tag ",chardata" is written as character data, not as an XML element.
...
an anonymous struct field is handled as if the fields of its value were part of the outer struct.
Using an anonymous struct field and having a tag xml:",chardata" like below should marshal into the desired XML
<soap:Envelope> <soap:Header> <Headers><userId>1111111111</userId></Headers> </soap:Header> <soap:Body><test></test></soap:Body> </soap:Envelope>
Hello!
how to remove the tag from soap:Header?
I want to make such a request
<soap:Envelope> <soap:Header> <userId>1111111111</userId> </soap:Header> <soap:Body><test></test></soap:Body> </soap:Envelope>
The text was updated successfully, but these errors were encountered: