首页 >后端开发 >Golang >在没有原生 WSDL 支持的情况下,如何在 Go 中有效处理 SOAP 请求和响应?

在没有原生 WSDL 支持的情况下,如何在 Go 中有效处理 SOAP 请求和响应?

DDD
DDD原创
2024-12-09 22:41:14658浏览

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