以下の wsdl ファイルがあり、jsp またはその他のフロント エンド テクノロジを介してブラウザに Web サービスのリストを表示する可能性があるかどうかを知りたい.
これは SOAP を使用しています。また、REST を使用して Web サービスのリストを表示する同様の方法があるかどうかも知りたいです。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. -->
<definitions targetNamespace="http://test.com/" name="HelloWorldNewService" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://test.com/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
<types>
<xsd:schema>
<xsd:import namespace="http://test.com/" schemaLocation="HelloWorldNewService_schema1.xsd"/>
</xsd:schema>
</types>
<message name="sum">
<part name="parameters" element="tns:sum"/>
</message>
<message name="sumResponse">
<part name="parameters" element="tns:sumResponse"/>
</message>
<portType name="HelloWorldNew">
<operation name="sum">
<input message="tns:sum"/>
<output message="tns:sumResponse"/>
</operation>
</portType>
<binding name="HelloWorldNewPortBinding" type="tns:HelloWorldNew">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
<operation name="sum">
<soap:operation soapAction=""/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
<service name="HelloWorldNewService">
<port name="HelloWorldNewPort" binding="tns:HelloWorldNewPortBinding">
<soap:address location="http://localhost:7001/CustomWebservices/HelloWorldNew"/>
</port>
</service>
</definitions>
[更新]
Web サービスのセットを表示するフロント エンドを持つ Eclipse Web サービス エクスプローラーのようなものをレプリケートする必要があり、各 Web サービス名をクリックすると、そのようなパラメータやもののリストが表示されます。