1

.NetクライアントからphpSOAPWebサービスを呼び出そうとしていますが、次のエラーが発生します。

System.Net.WebException was unhandled by user code
  Message="**The request failed with HTTP status 404: Not Found**."
  Source="System.Web.Services"
  StackTrace:
       at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
       at php_webservice_test_CS.WebReference.MyService.testServer() in c:\documents and settings\gdeshpande.parcdev.003\my documents\visual studio 2008\projects\php_webservice_test_cs\php_webservice_test_cs\web references\webreference\reference.cs:line 79
       at php_webservice_test_CS._Default.Page_Load(Object sender, EventArgs e) in C:\Documents and Settings\gdeshpande.PARCDEV.003\My Documents\Visual Studio 2008\Projects\php_webservice_test_CS\php_webservice_test_CS\Default.aspx.cs:line 23
       at System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e)
       at System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
       at System.Web.UI.Control.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
  InnerException: 

問題を取得できません。phpSoapサーバー側または.Netクライアント側です。私はphpを初めて使用します。

誰か助けてください。

以下はSOAPサーバーコードです。

ini_set("soap.wsdl_cache_enabled", "0");
$server = new SoapServer("http://10.20.1.161/api/soap/report.wsdl");
$server->addFunction("testServer");
$server->handle();

以下はSOAP.Netクライアントコードです。

 protected void Page_Load(object sender, EventArgs e)
        {
            try
            {
                MyService ms = new MyService(); 
                Object ac = ms.testServer();
            }
            catch (Exception ae)
            {
                Response.Write(ae);
            }
        }

私のWSDLを共有したいのですが、これがその方法です...

<wsdl:definitions xmlns:tns="http://10.20.1.161/api/soap/"
 targetNamespace="http://10.20.1.161/api/soap/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
 xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
 xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
 <wsdl:types>
  <s:schema targetNamespace="http://10.20.1.161/api/soap/">

   <s:complexType name="stringArray">
    <s:annotation>
     <s:documentation> A string array type </s:documentation>
    </s:annotation>
    <s:complexContent>

     <s:restriction base="soapenc:Array">
      <s:attribute ref="soapenc:arrayType" wsdl:arrayType="s:string[]"/>
     </s:restriction>
    </s:complexContent>
   </s:complexType>   
  </s:schema>
 </wsdl:types> 

 <wsdl:message name="reportRequest" />

 <wsdl:message name="reportResponse">
  <wsdl:part name="resParam" type="tns:stringArray"/>

 </wsdl:message> 

 <wsdl:portType name="MyPortType">
   <wsdl:operation name="testServer">
   <wsdl:documentation> Get a complex type object </wsdl:documentation>
    <wsdl:input message="tns:reportRequest"/>
    <wsdl:output message="tns:reportResponse"/>
  </wsdl:operation>
 </wsdl:portType>


 <wsdl:binding name="MyPortType" type="tns:MyPortType">
  <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>

  <wsdl:operation name="testServer">
   <soap:operation soapAction="http://10.20.1.161/api/soap/testServer"/>
   <wsdl:input>
    <soap:body use="encoded" namespace="http://10.20.1.161/api/soap/"
     encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
   </wsdl:input>
   <wsdl:output>
    <soap:body use="encoded" namespace="http://10.20.1.161/api/soap/"
     encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>

   </wsdl:output>
  </wsdl:operation>
 </wsdl:binding>

 <wsdl:service name="MyService">
  <wsdl:port name="MyPortType" binding="tns:MyPortType">
   <soap:address location="http://10.20.1.161/api/soap/parc_web_servise.php"/>
  </wsdl:port>
 </wsdl:service>
</wsdl:definitions>

助けてください..

4

2 に答える 2

1

404応答があります。404またはNotFoundエラーメッセージは、クライアントがサーバーと通信できたが、サーバーが要求されたものを見つけることができなかったことを示すHTTP標準応答コードです。

有効なURLがあることを確認し、ブラウザにリンクを配置して、それが正しいかどうかを確認してください。要求したURLに特別なヘッダーがあるかどうかを確認してください。PostManという名前のGoogle Chromeには、必要に応じてヘッダーを追加できる便利な拡張機能があります。 URLをテストします

于 2012-11-26T10:39:35.197 に答える