0

私の石鹸情報の下に。

 NAMESPACE = "http://wm.tren.com/";
 URL = "http://wmc.com:80/tren/TrenService";
 SOAP_ACTION = "http://wm.tren.com/gettest";
 METHOD = "gettest";

石鹸サーバーを使用していますが、以下の石鹸文字列でサーバーに接続できません。障害コードが表示されました。誰でも私を助けることができますか?

   NSString *soapMessage = [NSString stringWithFormat:

@"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"

"<soap:Envelope xmlns:soap=\"http://www.w3.org/2003/05/soap-envelope\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance/\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:TrenService=\"http://wm.tren.com/\" xsl:version=\"1.0\">\n"

"<soap:Body>\n"

    "<gettest xsi:type=\"TrenService:gettest/\">\n"

"<cdOr>%@</cdOr>\n"

    "<cdDest>%@</cdDest>\n"

    "<date>%@</date>\n"

    "</gettest>\n"

"</soap:Body>\n"

"</soap:Envelope>\n", @"01005",@"01007",@"2013-10-22"

];

エラーメッセージは次のとおりです。

version='1.0' ?>
<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'>
<env:Body>
<env:Fault>
<faultcode>env:Client</faultcode>
<faultstring>Internal Error</faultstring>
</env:Fault>
</env:Body>
</env:Envelope>
4

1 に答える 1