ColdFusion SOAP调用API

时间:2014-04-04 19:35:22

标签: soap coldfusion coldfusion-10

我正在关注RegOnline的开发者页面,以便为我们的服务器设置API调用。它们提供了如何握手的各种示例(PHP,C#,JS,SOAP),最后一个示例包含如何在方法调用中包含API令牌的最差示例。

http://developer.regonline.com/authentication-basics/

我正在尝试调用他们的GetEvent方法,此调用必须包含我生成的API令牌。但是,根据他们的SOAP示例,我猜测如何包含令牌的值。以下是他们的例子:

<s:complexType name="TokenHeader">
  <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="APIToken" type="s:string"/>
  </s:sequence>
  <s:anyAttribute/>
</s:complexType>

页面上的其他示例包含完整版本,明确显示您可以在必要时对令牌进行硬编码的位置。我承认我目前对SOAP的了解很少,所以也许我在这个例子中遗漏了一些东西。

这是我尝试调用该方法。它只会吐出一个文档页面和200 OK状态,这是不对的。

<cfset apiToken = "xxxxx" />
<cfset eventID = "xxxxxx" />
    <cfsavecontent variable="soapBody">
        <cfoutput>

            <?xml version="1.0" encoding="utf-8"?>  
            <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">

                <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

                    <GetEvent xmlns="http://www.regonline.com/api">

                        <eventID>#eventID#</eventID>

                    </GetEvent>

                </s:Body>

            </s:Envelope>

            <s:complexType name="TokenHeader">
                <s:sequence>
                    <s:element minOccurs="0" maxOccurs="1" name="APIToken" type="s:string">
                        #apiToken#
                    </s:element>
                </s:sequence>
                <s:anyAttribute/>
            </s:complexType>

        </cfoutput>
    </cfsavecontent>

    <cfhttp url="https://www.regonline.com/api" method="get" result="theCFHTTP" redirect="true">

        <cfhttpparam type="HEADER" name="Content-Type" value="text/xml; charset=utf-8">
        <cfhttpparam type="HEADER" name="Accept" value="application/soap+xml, multipart/related, text/*">
        <cfhttpparam type="HEADER" name="User-Agent" value="Axis/1.1">
        <cfhttpparam type="HEADER" name="Cache-Control" value="no-cache">
        <cfhttpparam type="HEADER" name="Pragma" value="no-cache">
        <cfhttpparam type="HEADER" name="SOAPAction" value="https://www.regonline.com/api/default.asmx/GetEvent">
        <cfhttpparam type="HEADER" name="Content-Length" value="#len(soapBody)#">
        <cfhttpparam type="xml" name="body" value="#soapBody#">

    </cfhttp>

    <cfdump var="#theCFHTTP#">

2 个答案:

答案 0 :(得分:1)

您的SOAP请求格式错误。所有SOAP请求都应该在SOAP信封中。以下是在SoapUI中为getEvent请求创建的模板。

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://www.regonline.com/api">
  <soapenv:Header>
    <api:TokenHeader>
      <!--Optional:-->
      <api:APIToken>?</api:APIToken>
   </api:TokenHeader>
  </soapenv:Header>
  <soapenv:Body>
    <api:GetEvent>
      <api:eventID>?</api:eventID>
    </api:GetEvent>
  </soapenv:Body>
</soapenv:Envelope>

对于通话本身,您可能需要尝试发布get,但我对此不确定。我认为您可能需要更新的一件事是SOAPAction。在我在SoapUI中的测试调用中,标题中的操作是http://www.regonline.com/api/GetEvent。虽然它可以双向工作。

答案 1 :(得分:0)

那不是你想要做的。使用SOAP调用,您只需遵循文档中提供的XML(https://www.regonline.com/api/default.asmx?op=GetEvent)。

因此,在特定情况下,您希望将CSSAVECONTENT变量soapBody替换为以下内容:

<cfsavecontent variable="soapBody">
<cfoutput>
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
        <soap:Header>
            <TokenHeader xmlns="http://www.regonline.com/api">
                <APIToken>#apiToken#</APIToken>
            </TokenHeader>
        </soap:Header>

        <soap:Body>
            <GetEvent xmlns="http://www.regonline.com/api">
                <eventID>#eventID#</eventID>
            </GetEvent>
        </soap:Body>
    </soap:Envelope>
</cfoutput>
</cfsavecontent>

看看你的回报。