0

Axis2 codegen ウィザードを使用して wsdl から Java クラスを生成しています。

私のサンプルwsdlは以下です

<definitions name="HelloService"
   targetNamespace="http://www.examples.com/wsdl/HelloService.wsdl"
   xmlns="http://schemas.xmlsoap.org/wsdl/"
   xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
   xmlns:tns="http://www.examples.com/wsdl/HelloService.wsdl"
   xmlns:xsd="http://www.w3.org/2001/XMLSchema">

   <message name="SayHelloRequest">
      <part name="firstName" type="xsd:string"/>
   </message>
   <message name="SayHelloResponse">
      <part name="greeting" type="xsd:string"/>
   </message>

   <portType name="Hello_PortType">
      <operation name="sayHello">
         <input message="tns:SayHelloRequest"/>
         <output message="tns:SayHelloResponse"/>
      </operation>
   </portType>

   <binding name="Hello_Binding" type="tns:Hello_PortType">
   <soap:binding style="rpc"
      transport="http://schemas.xmlsoap.org/soap/http"/>
   <operation name="sayHello">
      <soap:operation soapAction="sayHello"/>
      <input>
         <soap:body
            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
            namespace="urn:examples:helloservice"
            use="encoded"/>
      </input>
      <output>
         <soap:body
            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
            namespace="urn:examples:helloservice"
            use="encoded"/>
      </output>
   </operation>
   </binding>

   <service name="Hello_Service">
      <documentation>WSDL File for HelloService</documentation>
      <port binding="tns:Hello_Binding" name="Hello_Port">
         <soap:address
            location="http://www.examples.com/SayHello/">
      </port>
   </service>
</definitions>

axis codegen を使用して Java を生成しようとすると、次のエラーが表示されます。

 Specified WSDL is invalid!, Please select a validated *.wsdl/*.xml file on previous page

wsdl を検証する方法と、wsdl の何が問題なのですか??

4

1 に答える 1

1

soap:addressWSDL の問題は、タグを閉じていないことです。交換

<soap:address location="http://www.examples.com/SayHello/">

<soap:address location="http://www.examples.com/SayHello" />

                                                          ^
                                                          |
                                                          |
                                                      close tag

一般に、バインディングを生成する前に WSDL を公開する (サーバーにアプリケーションをインストールする) 必要はありません。

于 2012-10-19T05:49:19.383 に答える