gpt4 book ai didi

web-services - Coldfusion Web 服务接收对象

转载 作者:行者123 更新时间:2023-12-04 05:21:52 24 4
gpt4 key购买 nike

我觉得自己像个傻瓜,因为我没有弄清楚这一点。我有 coldfusion 网络服务 (bluedragon7) 来接受来自合作伙伴的信息。他们在结果字段中传递 xml,它仅在参数中显示 accessionNumber 的第一个元素。如果我将参数类型更改为任何其他类型(任何、字符串等),它会抛出 500 个错误。我在这里错过了什么吗?

这是函数的一个片段:

<cffunction access="remote" name="result" output="false" returntype="any" hint="">
<cfargument name="userid" type="string" required="yes" hint="userid">
<cfargument name="password" type="string" required="yes" hint="password">
<cfargument name="result" type="xml" required="Yes" default="result">
</cffunction>

这是他们帖子的示例:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header />
<soapenv:Body>
<result xmlns="http://cws.ots.labcorp.com">
<userId>peter265974</userId>
<password>pwd265974</password>
<result>
<accessionNumber>0572854881</accessionNumber>
<accountLocationCode>000010</accountLocationCode>
<accountLocationName>AERO CONTROL</accountLocationName>
<accountLocationPhone>2537353350</accountLocationPhone>
<accountName>HEALTHFORCE PARTNERS CORPORATE</accountName>
<accountNumber>000804</accountNumber>
<collectorCOCcomments>
<abbreviation />
<commentText>100154550. TEST OF VIEWING CO</commentText>
<commentType>MS</commentType>
</collectorCOCcomments>
</result>
</result>
</soapenv:Body>

最佳答案

我刚刚遇到了同样的问题。我试图遍历所有元素,同时检查元素是否仍然有“xmlchild”。也许我的 thread可以在这里提供帮助。

但是你必须改变这一行,你的 body 内容将被保存在一个var中

<cfset var body = xmlsearch(cont, "//SOAP-ENV:Body")[1] />

只需插入“soapenv:Body”而不是“SOAP-ENV:Body”

关于web-services - Coldfusion Web 服务接收对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11147628/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com