gowsdl icon indicating copy to clipboard operation
gowsdl copied to clipboard

Unmarshal returns an error with v0.5.0

Open jerome-laforge opened this issue 3 years ago • 0 comments

With v0.5.0, xml.Unmarshal returns an error:

	r := soap.SOAPEnvelope{
		Body: soap.SOAPBody{
			Content: &InfoRequest{},
		},
	}
	if err := xml.Unmarshal(buf, &r); err != nil {
		return nil, err
	}

xml.Unmarshal returns expected element type <soap:Envelope> but have <Envelope> with Go 1.16

jerome-laforge avatar Jun 12 '21 11:06 jerome-laforge