Go 中的WSDL/SOAP 支援
雖然Go 缺乏對WSDL 的明確支持,但它確實提供了直接處理SOAP 請求的選項。
SOAP 編碼和解碼
Go 中的標準編碼/xml 套件可能不足以用於 SOAP。這是因為 SOAP 需要特定的 XML 屬性,例如字串標籤上的 xsi:type="xsd:string"。
為了解決此限制,開發了 github.com/webconnex/xmlutil 套件。它為 SOAP 提供增強的編碼和解碼功能,包括對命名空間和自訂 XML 屬性的支援。
範例 SOAP 實作
以下程式碼片段說明如何使用 xmlutil編碼和解碼 SOAP 要求:
package main import ( "bytes" "fmt" "github.com/webconnex/xmlutil" "log" ) type Envelope struct { Body `xml:"soap:"` } type Body struct { Msg interface{} } type MethodCall struct { One string Two string } type MethodCallResponse struct { Three string } func main() { x := xmlutil.NewXmlUtil() // Register namespaces and types x.RegisterNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi") x.RegisterNamespace("http://www.w3.org/2001/XMLSchema", "xsd") x.RegisterNamespace("http://www.w3.org/2003/05/soap-envelope", "soap") // Encode the SOAP request env := &Envelope{Body{MethodCall{ One: "one", Two: "two", }}} buf := new(bytes.Buffer) enc := x.NewEncoder(buf) if err := enc.Encode(env); err != nil { log.Fatal(err) } // Decode the SOAP response dec := x.NewDecoder(bytes.NewBufferString(`<?xml version="1.0" encoding="utf-8"?> <soap:Envelope> <soap:Body> <MethodCallResponse> <Three>three</Three> </MethodCallResponse> </soap:Body> </soap:Envelope>`)) var resp MethodCallResponse if err := dec.DecodeElement(&resp); err != nil { log.Fatal(err) } fmt.Println(resp) }
以上是在沒有原生 WSDL 支援的情況下,如何在 Go 中有效處理 SOAP 請求和回應?的詳細內容。更多資訊請關注PHP中文網其他相關文章!