首頁 >後端開發 >Golang >在沒有原生 WSDL 支援的情況下,如何在 Go 中有效處理 SOAP 請求和回應?

在沒有原生 WSDL 支援的情況下,如何在 Go 中有效處理 SOAP 請求和回應?

DDD
DDD原創
2024-12-09 22:41:14655瀏覽

How Can I Effectively Handle SOAP Requests and Responses in Go Without Native WSDL Support?

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn