├── .gitignore ├── README ├── example-request.xml ├── example-response.xml ├── main.go └── test-client ├── ProjectService1.go └── soap.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | test-client\*.exe -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Very early stage development of a general-purpose SOAP client for Go. 2 | 3 | -------------------------------------------------------------------------------- /example-request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/go-soap/HEAD/example-request.xml -------------------------------------------------------------------------------- /example-response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/go-soap/HEAD/example-response.xml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/go-soap/HEAD/main.go -------------------------------------------------------------------------------- /test-client/ProjectService1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/go-soap/HEAD/test-client/ProjectService1.go -------------------------------------------------------------------------------- /test-client/soap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/go-soap/HEAD/test-client/soap.go --------------------------------------------------------------------------------