Search code examples
soapgosoap-client

WSDL/SOAP support on Go?


Are there any packages to support SOAP/WSDL on Go?


Solution

  • Nope.

    SOAP sucks, but I had to implement a server of an already-defined protocol that uses SOAP, so I listened with net/http and decoded/encoded envelopes with encoding/xml. In few minutes, I already served my first envelope with Go.