1

簡単なWebサービスを作りました

wsdl:

<wsdl:definitions name='mysum' >

<wsdl:types>
 <xsd:schema 
  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
 xmlns:tns="http://www.my-uni-project.info/joomla/components/com_jv_vm_soa/"
 xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="mysum"
   targetNamespace="http://www.my-uni-project.info/joomla/components/com_jv_vm_soa/"
   xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">

   <xsd:complexType name="mysumRequest">
    <xsd:all>
     <xsd:element minOccurs="0" name="n1" type="xsd:int"/>
     <xsd:element minOccurs="0" name="n2" type="xsd:int"/>
    </xsd:all>
   </xsd:complexType>   

   <xsd:element name="mysumResponse" type="xsd:int"/>
  </xsd:schema>
 </wsdl:types>

 <wsdl:message name="mysumRequest">
   <wsdl:part name="parameters" element="tns:mysumRequest" />
 </wsdl:message> 
 <wsdl:message name="mysumResponse">
   <wsdl:part name="result" element="tns:mysumResponse" />
 </wsdl:message> 


 <wsdl:portType name="mysum">
  <wsdl:operation name="mysum">
   <wsdl:input message="tns:mysumRequest"/>
   <wsdl:output message="tns:mysumResponse"/>
  </wsdl:operation>
 </wsdl:portType> 

 <wsdl:binding name="mysumSOAP" type="tns:mysum">
  <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
  <wsdl:operation name="mysum">
   <soap:operation soapAction="mysum" />
   <wsdl:input>
    <soap:body use="literal" />
   </wsdl:input>
   <wsdl:output>
    <soap:body use="literal" />
   </wsdl:output>
  </wsdl:operation>
 </wsdl:binding> 

 <wsdl:service name="mysum">
  <wsdl:port name="mysumSOAP" binding="tns:mysumSOAP">
    <soap:address location="http://www.my-uni-
    project.info/joomla/components/com_jv_vm_soa/mysum.php" />
  </wsdl:port>
 </wsdl:service>

</wsdl:definitions>

サービス:

function mysum($parameters) {

$result = $parameters->item[0]->value + $parameters->item[1]->value; return $result ; }

ini_set("soap.wsdl_cache_enabled", "0"); // disabling WSDL cache $server = new SoapServer("mysum.wsdl"); $server->addFunction("mysum"); $server->handle();

PHPクライアントからアクセスできます:

$client = new SoapClient("http://www.my-uni- project.info/joomla/components/com_jv_vm_soa/mysum.wsdl"); $params = array('n1' => '4', 'n2' => '8');

try { 
  $result = $client->__soapCall('mysum', array('parameters' => $params));

echo $result; } catch (SoapFault $exception) { echo $exception;
}

C#クライアントを作成しようとしたので、最初にサービス参照「mysum」を作成し、次にフォームにボタンとラベルを追加し、ボタンに次のコードを追加しました

 private void button1_Click(object sender, EventArgs e)
    {
        mysum s = new mysum();
        label1.Text = "" + s.mysum(2, 3);                
    }

実行すると、次のエラーが発生します。

Error 5 The type or namespace name 'mysum' could not be found (are you 
missing a using directive or an assembly reference?) 

サービスはオンラインです

高度なジョンに感謝します

4

2 に答える 2

0

通常、ディレクティブを使用して問題を解決できるかどうかを判断するには、問題のオブジェクト (この場合は mysum) を右クリックし、'Resolve Using' どこディレクティブの名前です。

于 2010-10-20T14:43:46.227 に答える
0

あなたの問題は、サービスを Web サービス参照ではなくサービス参照として追加していることだと思います。

Web サービス参照を追加するには

  1. サービス参照を追加
  2. ウィンドウの[詳細]ボタンを押します
  3. [ Web 参照の追加] をクリックします
  4. サービスの URL を入力してください

また、

プロジェクトに System.Web.Services 名前空間参照が追加されていることを確認してください。

それが役に立てば幸い。

于 2013-01-25T21:03:17.297 に答える