登录
首页 >  Golang >  Go问答

如何在 Go 中正确构建和嵌套结构来解组 SOAP 响应?

来源:stackoverflow

时间:2024-04-22 23:54:34 483浏览 收藏

今日不肯埋头,明日何以抬头!每日一句努力自己的话哈哈~哈喽,今天我将给大家带来一篇《如何在 Go 中正确构建和嵌套结构来解组 SOAP 响应?》,主要内容是讲解等等,感兴趣的朋友可以收藏或者有更好的建议在评论提出,我都会认真看的!大家一起进步,一起学习!

问题内容

我在使用 go 中的 encoding/xml 解组 soap 响应时遇到问题。 (下面是代码和摘录。)

  1. 我用来初始化结构字段的值是否错误? (例如,xml:“xmlns:soap,attr”

我学习的博客文章中的大多数示例都不使用带前缀的 xml 字段,例如 <soap:body>。所以我不完全理解如何解析这个包。

  1. 我的结构嵌套是否不正确?

  2. 我是否需要为每个元素和属性提供结构和字段,以便 xml.unmarshal 正确填充结构?

例如,如果我没有为 <soap:envelope><soap:body> 提供结构字段,xml.unmarshal 会忽略这些元素的内容吗?或者我可以仅为我想要解组的元素提供结构和字段(例如,仅 resdata 结构中表示的元素)?

我可能在这里遗漏了一些明显的东西,因为我对 go 和 soap 都很陌生。即使在阅读了一些展示如何使用它的示例的博客文章并阅读了一些 go 文档之后,我也不完全理解 encoding/xml 的工作原理。我可能只是比较笨。

这是 go 演示中的完整测试代码。当我运行它时我什么也没得到:

[~/d/xml]% ./xmltest
url:
name:
protocol:
version:
id:

这是我试图解组的 soap 响应:

<soap:envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:xsd="http://www.w3.org/2001/xmlschema">
    <soap:body>
      <getcompanywsdkurlresponse xmlns="http://corrigo.com/integration/">
         <getcompanywsdkurlresult xsi:type="getcompanywsdkurlresult">
            <url>https://am-ce96e.corrigo.com/wsdk/corrigoservice.asmx?wsdl</url>
            <companyname>acme test company</companyname>
            <protocol>https</protocol>
            <companyversion>9.6</companyversion>
            <companyid>1337</companyid>
         </getcompanywsdkurlresult>
      </getcompanywsdkurlresponse>
   </soap:body>
</soap:envelope>

这些是我将数据解组到的结构:

type Envelope struct {
    XMLName     xml.Name    `xml:"Envelope"`
    XMLNSs      string      `xml:"xmlns:soap,attr"`
    XMLNSxsi    string      `xml:"xmlns:xsi,attr"`
    XMLNSxsd    string      `xml:"xmlns:xsd,attr"`
    Body
}

type Body struct {
    Body        string      `xml:"Body"`
    Response
}

type Response struct {
    UrlResponse string      `xml:"GetCompanyWsdkUrlResponse"`
    XMLNSs      string      `xml:"xmlns,attr"`
    Result
}

type Result struct {
    UrlResult   string      `xml:"GetCompanyWsdkUrlResult"`
    XMLNSxsi    string      `xml:"xsi:type,attr"`
    ResData
}

type ResData struct {
    Url         string      `xml:"Url"`
    Name        string      `xml:"CompanyName"`
    Protocol    string      `xml:"Protocol"`
    Version     string      `xml:"CompanyVersion"`
    Id          string      `xml:"CompanyId"`
}

解决方案


(按照问题编号的顺序)

1. 啊啊,你离得太近了!最重要的是您领先了“xsi:”和“xmlns:”,而您不需要。我确实相信 go 会忽略这些值,然后只查看这些字段。

采用您的信封结构应该是这样的(您的其他结构也需要在适当的情况下进行调整):

type envelope struct {
    xmlname  xml.name `xml:"envelope"`
    xmlnss   string   `xml:"soap,attr"` // note the lack of `xmlns:`
    xmlnsxsi string   `xml:"xsi,attr"`
    xmlnsxsd string   `xml:"xsd,attr"`
    body     body     `xml:"body"` // note how we tell go about the body tag here
}

上面代码块中的 body 已经稍微触及了这一点。但是,是的,有很多不同的方法可以做到这一点,但我将发布一个链接到演示,您将在其中找到一系列结构的有效示例,这些结构可以正确解析您提供的 soap xml。

https://play.golang.org/p/L2F4bduac-3

3. 不,您可以选择仅定义 soap 中您需要的内容。假设您只需要公司 id。您可以创建您的结构:

type OnlyCompanyID struct {
    XMLName   xml.Name `xml:"Envelope"`
    CompanyID int      `xml:"Body>GetCompanyWsdkUrlResponse>GetCompanyWsdkUrlResult>CompanyId"`
}

编辑:我强烈建议将我放入演示文稿中的内容并进行修改。在我看来,解组 xml 比 go 中的 json/yml 等更直接的东西要棘手一些。请随意提出任何后续问题,我可以看看我能做些什么来解决这些问题:)

今天带大家了解了的相关知识,希望对你有所帮助;关于Golang的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>