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
I am new to GoWSDL.
I am using GoWSDL to generate SOAP client from WSDL. Go Code got generated successfully from WSDL without any issues. However when I tried to call one the SOAP method I do receive HTTP status 415. Here's the step I followed.
gowsdl myservice.wsdl // to generate code
In main.go I added following steps;
Hello All,
I am new to GoWSDL.
I am using GoWSDL to generate SOAP client from WSDL. Go Code got generated successfully from WSDL without any issues. However when I tried to call one the SOAP method I do receive HTTP status 415. Here's the step I followed.
client := soap.NewClient(
"http://////.svc",
soap.WithTimeout(time.Second*5),
soap.WithBasicAuth("xxxx", "xxxx"),
)
Let me know If I missed any additional steps here? Not sure why I am receiving HTTP 415 for this request .
Thanks in advance Asru
The text was updated successfully, but these errors were encountered: