调用http适配器程序失败

时间:2016-02-19 10:23:46

标签: ibm-mobilefirst mobilefirst-adapters

我试图将一些值发送到Web服务器,并且它将使用ibm mobilefirst中的http适配器以true或false响应。当我从环境调用该过程时,我收到此错误:

{
"errors": [
  "Runtime: Http request failed: java.net.UnknownHostException: mfpreader.comze.com\/"
],
"info": [
],
"isSuccessful": false,
"warnings": [
]
}

以下是我使用的链接: http://mfpreader.comze.com/login.php?username=kevin&password=pass 服务器正在运行。

LoginAdapter.xml

<connectivity>
    <connectionPolicy xsi:type="http:HTTPConnectionPolicyType">
        <protocol>https</protocol>
        <domain>mfpreader.comze.com/</domain>
        <port>443</port>        


<procedure name="getVerify"/>

LoginAdapter-impl.js

                 function getVerify(pName) {

var input = {
    method : 'get',
    returnedContentType : 'json',
    path : '/login.php',
    parameters : {
        'username' : pName,
        'password' : 'pass'   // hard-coded
            }

 };

return WL.Server.invokeHttp(input);

}

请帮助我。感谢。

3 个答案:

答案 0 :(得分:1)

我认为您的问题是您的域名中有剩余/

<domain>mfpreader.comze.com/</domain>

这是域名,而不是网址。您只需要指定要尝试访问的服务器的主机名:

<domain>mfpreader.comze.com</domain>

答案 1 :(得分:0)

网站不起作用。

当您指向它时,您使用 http ,但在XML中您使用 https 。当尝试使用 https 协议访问网站时,它没有加载。

答案 2 :(得分:0)

使用 http 端口 80 连接网站。另一方面返回returnedContentType : 'plain'

LoginAdapter.xml

<connectivity>
    <connectionPolicy xsi:type="http:HTTPConnectionPolicyType">
        <protocol>http</protocol>
            <domain>mfpreader.comze.com</domain>

            <port>80</port>      


<procedure name="getVerify"/>

LoginAdapter-impl.js

function getVerify(pName) {

    var input = {
        method : 'get',
        returnedContentType : 'plain',
        path : '/login.php',
        parameters : {
            'username' : pName,
            'password' : 'pass'   // hard-coded
                }

     };

    return WL.Server.invokeHttp(input);

    }

调用结果:

{
   "errors": [
   ],
   "info": [
   ],
   "isSuccessful": true,
   "responseHeaders": {
      "Connection": "close",
      "Content-Length": "748",
      "Content-Type": "text\/html",
      "Date": "Fri, 19 Feb 2016 11:56:31 GMT",
      "Server": "Apache",
      "X-Powered-By": "PHP\/5.2.17"
   },
   "responseTime": 563,
   "statusCode": 200,
   "statusReason": "OK",
   "text": "<br><table border='1' cellpadding='2' bgcolor='#FFFFDF' bordercolor='#E8B900' align='center'><tr><td><font face='Arial' size='1' color='#000000'><b>PHP Error Message<\/b><\/font><\/td><\/tr><\/table><br \/>\n<b>Warning<\/b>:  json_encode() expects exactly 1 parameter, 2 given in <b>\/home\/a1974455\/public_html\/login.php<\/b> on line <b>72<\/b><br \/>\n<br><table border='1' cellpadding='2' bgcolor='#FFFFDF' bordercolor='#E8B900' align='center'><tr><td><div align='center'><a href='http:\/\/www.000webhost.com\/'><font face='Arial' size='1' color='#000000'>Free Web Hosting<\/font><\/a><\/div><\/td><\/tr><\/table> \n<!-- Hosting24 Analytics Code -->\n<script type=\"text\/javascript\" src=\"http:\/\/stats.hosting24.com\/count.php\"><\/script>\n<!-- End Of Analytics Code -->",
   "totalTime": 578,
   "warnings": [
   ]
}