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
First of all congrats for this nice tool, you did a great job with it.
So, I came across some error and I'm not sure why but it seems to be related with the client doRoundTrip()
Unmarshling the byte array from resp.body (using ioutil.ReadAll(resp.Body) I can see the whole correct xml response
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<HelloWorldResponse xmlns="http://localhost:8282/">
<HelloWorldResult>Yey, it works</HelloWorldResult>
</HelloWorldResponse>
</soap:Body>
</soap:Envelope`
The marshalStructure.XMLName is just fine, so it did unmarshal correct. Thing is, the body didn't and i can't figure out why and how to correct that.
Hello,
First of all congrats for this nice tool, you did a great job with it.
So, I came across some error and I'm not sure why but it seems to be related with the client doRoundTrip()
Unmarshling the byte array from resp.body (using ioutil.ReadAll(resp.Body) I can see the whole correct xml response
Any idea?
The text was updated successfully, but these errors were encountered: