Skip to content

Instantly share code, notes, and snippets.

View YumeMichi's full-sized avatar
😄
When you say nothing at all.

YumeMichi YumeMichi

😄
When you say nothing at all.
View GitHub Profile
@YumeMichi
YumeMichi / go-soap-wsdl-using-http.go
Created March 14, 2019 16:06 — forked from novalagung/go-soap-wsdl-using-http.go
Example implementation of making SOAP call on WSDL web service using go with only net/http package. The full tutorial avaiable on https://medium.com/eaciit-engineering/soap-wsdl-request-in-go-language-3861cfb5949e
package main
import (
"bytes"
"crypto/tls"
"encoding/base64"
"encoding/xml"
"fmt"
"log"
"net/http"