Are there any packages to support SOAP/WSDL on Go?
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.