Author: alessio.soldano(a)jboss.com
Date: 2007-11-12 06:43:32 -0500 (Mon, 12 Nov 2007)
New Revision: 5033
Modified:
stack/native/branches/asoldano/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSClientMetaDataBuilder.java
stack/native/branches/asoldano/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSWebServiceMetaDataBuilder.java
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsaSoap12/WEB-INF/wsdl/wsdl1.wsdl
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/encrypt3DES/META-INF/jboss-wsse-client.xml
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/encrypt3DES/WEB-INF/jboss-wsse-server.xml
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/shared/WEB-INF/wsdl/wsdl0
Log:
- Set type of token reference also in Encrypt3DES tests
- Re-enable WS-Policy
- Comment ws-policy stuff in interop nov2007 wsdls
Modified:
stack/native/branches/asoldano/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSClientMetaDataBuilder.java
===================================================================
---
stack/native/branches/asoldano/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSClientMetaDataBuilder.java 2007-11-12
11:09:49 UTC (rev 5032)
+++
stack/native/branches/asoldano/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSClientMetaDataBuilder.java 2007-11-12
11:43:32 UTC (rev 5033)
@@ -88,11 +88,11 @@
//Setup policies for each endpoint
//Policy processing disable in order to attend the WSCF Interoperability
plug-fest (that requires WS-Security Policy and we don't have it yet)
-// for (EndpointMetaData epMetaData : serviceMetaData.getEndpoints())
-// {
-// PolicyMetaDataBuilder policyBuilder =
PolicyMetaDataBuilder.getClientSidePolicyMetaDataBuilder();
-// policyBuilder.processPolicyExtensions(epMetaData, wsdlDefinitions);
-// }
+ for (EndpointMetaData epMetaData : serviceMetaData.getEndpoints())
+ {
+ PolicyMetaDataBuilder policyBuilder =
PolicyMetaDataBuilder.getClientSidePolicyMetaDataBuilder();
+ policyBuilder.processPolicyExtensions(epMetaData, wsdlDefinitions);
+ }
// Read the WSDL and initialize the schema model
// This should only be needed for debuging purposes of the UMDM
Modified:
stack/native/branches/asoldano/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSWebServiceMetaDataBuilder.java
===================================================================
---
stack/native/branches/asoldano/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSWebServiceMetaDataBuilder.java 2007-11-12
11:09:49 UTC (rev 5032)
+++
stack/native/branches/asoldano/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSWebServiceMetaDataBuilder.java 2007-11-12
11:43:32 UTC (rev 5033)
@@ -371,7 +371,7 @@
//we can no longer use the user provided wsdl without parsing it right now,
since we
//need to look for policies and eventually choose the supported policy
alternatives
WSDLDefinitions wsdlDefinitions = factory.parse(wsdlLocation);
-// policyBuilder.processPolicyExtensions(epMetaData, wsdlDefinitions);
+ policyBuilder.processPolicyExtensions(epMetaData, wsdlDefinitions);
//now we have the UMDM containing policy data; anyway we can't write a
new wsdl file with
//the supported alternatives and so on, since we need to publish the file the
user provided
serviceMetaData.setWsdlLocation(wsdlLocation);
Modified:
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsaSoap12/WEB-INF/wsdl/wsdl1.wsdl
===================================================================
---
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsaSoap12/WEB-INF/wsdl/wsdl1.wsdl 2007-11-12
11:09:49 UTC (rev 5032)
+++
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsaSoap12/WEB-INF/wsdl/wsdl1.wsdl 2007-11-12
11:43:32 UTC (rev 5033)
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions
targetNamespace="http://example.org/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex"
xmlns:wsa10="http://www.w3.org/2005/08/addressing"
xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy&...
xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
xmlns:tns="http://example.org/"
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
xmlns:i1="http://example.org/echo"
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-w...
xmlns:i0="http://example.org/notify"
xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
+<!--
<wsp:Policy wsu:Id="CustomBinding_Notify_policy">
<wsp:ExactlyOne>
<wsp:All>
@@ -60,6 +61,8 @@
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
+-->
+
<wsdl:import
namespace="http://example.org/notify"
location="wsdl0.wsdl"/>
<wsdl:import
namespace="http://example.org/echo"
location="wsdl2.wsdl"/>
<wsdl:types/>
Modified:
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/encrypt3DES/META-INF/jboss-wsse-client.xml
===================================================================
---
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/encrypt3DES/META-INF/jboss-wsse-client.xml 2007-11-12
11:09:49 UTC (rev 5032)
+++
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/encrypt3DES/META-INF/jboss-wsse-client.xml 2007-11-12
11:43:32 UTC (rev 5033)
@@ -5,7 +5,7 @@
<config>
<timestamp ttl="300"/>
<sign type="x509v3" alias="1"
includeTimestamp="true"/>
- <encrypt type="x509v3" alias="bob"
algorithm="tripledes"/>
+ <encrypt type="x509v3" alias="bob"
algorithm="tripledes" tokenReference="keyIdentifier"/>
<requires>
<signature/>
<encryption/>
Modified:
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/encrypt3DES/WEB-INF/jboss-wsse-server.xml
===================================================================
---
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/encrypt3DES/WEB-INF/jboss-wsse-server.xml 2007-11-12
11:09:49 UTC (rev 5032)
+++
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/encrypt3DES/WEB-INF/jboss-wsse-server.xml 2007-11-12
11:43:32 UTC (rev 5033)
@@ -11,7 +11,7 @@
<config>
<timestamp ttl="300"/>
<sign type="x509v3" alias="1"
includeTimestamp="true"/>
- <encrypt type="x509v3" alias="alice"
algorithm="tripledes"/>
+ <encrypt type="x509v3" alias="alice"
algorithm="tripledes" tokenReference="keyIdentifier"/>
<requires>
<signature/>
<encryption/>
Modified:
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/shared/WEB-INF/wsdl/wsdl0
===================================================================
---
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/shared/WEB-INF/wsdl/wsdl0 2007-11-12
11:09:49 UTC (rev 5032)
+++
stack/native/branches/asoldano/trunk/src/test/resources/interop/nov2007/wsse/shared/WEB-INF/wsdl/wsdl0 2007-11-12
11:43:32 UTC (rev 5033)
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions
targetNamespace="http://tempuri.org/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-w...
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"
xmlns:tns="http://tempuri.org/"
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
xmlns:i0="http://InteropBaseAddress/interop"
xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy&...
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract"
xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
xmlns:wsa10="http://www.w3.org/2005/08/addressing"
xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex">
+
+<!--
<wsp:Policy wsu:Id="UserNameOverTransport_IPingService_policy">
<wsp:ExactlyOne>
<wsp:All>
@@ -994,12 +996,12 @@
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
+-->
-
<wsdl:import namespace="http://InteropBaseAddress/interop"
location="WsSecurity10.wsdl"/>
<wsdl:types/>
<wsdl:binding name="UserNameOverTransport_IPingService"
type="i0:IPingService">
- <wsp:PolicyReference
URI="#UserNameOverTransport_IPingService_policy"/>
+ <!-- <wsp:PolicyReference
URI="#UserNameOverTransport_IPingService_policy"/> -->
<soap:binding
transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="Ping">
<soap:operation
soapAction="http://xmlsoap.org/Ping"
style="document"/>
@@ -1059,61 +1061,61 @@
</wsdl:operation>
</wsdl:binding>
<wsdl:binding name="MutualCertificate10SignEncrypt_IPingService"
type="i0:IPingService">
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_policy"/> -->
<soap:binding
transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="Ping">
<soap:operation
soapAction="http://xmlsoap.org/Ping"
style="document"/>
<wsdl:input name="PingRequest">
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_Ping_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_Ping_Input_policy"/>
-->
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="PingResponse">
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_Ping_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_Ping_output_policy"/>
-->
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echo">
<soap:operation soapAction="http://InteropBaseAddress/interop/echo"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echo_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echo_Input_policy"/>
-->
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echo_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echo_output_policy"/>
-->
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echoXml">
<soap:operation
soapAction="http://InteropBaseAddress/interop/echoXml"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echoXml_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echoXml_Input_policy"/>
-->
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echoXml_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echoXml_output_policy"/>
-->
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echoDataSet">
<soap:operation
soapAction="http://InteropBaseAddress/interop/echoDataSet"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echoDataSet_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echoDataSet_Input_policy"/>
-->
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echoDataSet_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_echoDataSet_output_policy"/>
-->
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="header">
<soap:operation
soapAction="http://InteropBaseAddress/interop/header"
style="document"/>
<wsdl:input name="headerRequest">
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_header_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_header_Input_policy"/>
-->
<soap:header message="i0:headerRequest_Headers"
part="CustomHeader" use="literal"/>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="headerResponse">
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_header_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_header_output_policy"/>
-->
<soap:header message="i0:headerResponse_Headers"
part="CustomHeader" use="literal"/>
<soap:body use="literal"/>
</wsdl:output>
@@ -1121,71 +1123,71 @@
<wsdl:operation name="fault">
<soap:operation soapAction="http://InteropBaseAddress/interop/fault"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_fault_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_fault_Input_policy"/>
-->
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_fault_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncrypt_IPingService_fault_output_policy"/>
-->
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding
name="MutualCertificate10SignEncryptRsa15TripleDes_IPingService"
type="i0:IPingService">
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_policy"/>
-->
<soap:binding
transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="Ping">
<soap:operation
soapAction="http://xmlsoap.org/Ping"
style="document"/>
<wsdl:input name="PingRequest">
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_Ping_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_Ping_Input_policy"/>
-->
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="PingResponse">
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_Ping_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_Ping_output_policy"/>
-->
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echo">
<soap:operation soapAction="http://InteropBaseAddress/interop/echo"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echo_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echo_Input_policy"/>
-->
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echo_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echo_output_policy"/>
-->
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echoXml">
<soap:operation
soapAction="http://InteropBaseAddress/interop/echoXml"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echoXml_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echoXml_Input_policy"/>
-->
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echoXml_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echoXml_output_policy"/>
-->
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echoDataSet">
<soap:operation
soapAction="http://InteropBaseAddress/interop/echoDataSet"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echoDataSet_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echoDataSet_Input_policy"/>
-->
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echoDataSet_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_echoDataSet_output_policy"/>
-->
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="header">
<soap:operation
soapAction="http://InteropBaseAddress/interop/header"
style="document"/>
<wsdl:input name="headerRequest">
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_header_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_header_Input_policy"/>
-->
<soap:header message="i0:headerRequest_Headers"
part="CustomHeader" use="literal"/>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="headerResponse">
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_header_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_header_output_policy"/>
-->
<soap:header message="i0:headerResponse_Headers"
part="CustomHeader" use="literal"/>
<soap:body use="literal"/>
</wsdl:output>
@@ -1193,45 +1195,45 @@
<wsdl:operation name="fault">
<soap:operation soapAction="http://InteropBaseAddress/interop/fault"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_fault_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_fault_Input_policy"/>
-->
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_fault_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#MutualCertificate10SignEncryptRsa15TripleDes_IPingService_fault_output_policy"/>
-->
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding name="X10_IPingService"
type="i0:IPingService">
- <wsp:PolicyReference URI="#X10_IPingService_policy"/>
+ <!-- <wsp:PolicyReference URI="#X10_IPingService_policy"/>
-->
<!-- <soap12:binding
transport="http://schemas.xmlsoap.org/soap/http"/> -->
<soap:binding
transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="Ping">
<soap12:operation
soapAction="http://xmlsoap.org/Ping"
style="document"/>
<wsdl:input name="PingRequest">
- <wsp:PolicyReference
URI="#X10_IPingService_Ping_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_Ping_Input_policy"/> -->
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output name="PingResponse">
- <wsp:PolicyReference
URI="#X10_IPingService_Ping_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_Ping_output_policy"/> -->
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echo">
<soap12:operation
soapAction="http://InteropBaseAddress/interop/echo"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#X10_IPingService_echo_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_echo_Input_policy"/> -->
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#X10_IPingService_echo_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_echo_output_policy"/> -->
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echoXml">
<soap12:operation
soapAction="http://InteropBaseAddress/interop/echoXml"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#X10_IPingService_echoXml_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_echoXml_Input_policy"/> -->
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output>
@@ -1242,23 +1244,23 @@
<wsdl:operation name="echoDataSet">
<soap12:operation
soapAction="http://InteropBaseAddress/interop/echoDataSet"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#X10_IPingService_echoDataSet_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_echoDataSet_Input_policy"/> -->
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#X10_IPingService_echoDataSet_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_echoDataSet_output_policy"/> -->
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="header">
<soap12:operation
soapAction="http://InteropBaseAddress/interop/header"
style="document"/>
<wsdl:input name="headerRequest">
- <wsp:PolicyReference
URI="#X10_IPingService_header_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_header_Input_policy"/> -->
<soap12:header message="i0:headerRequest_Headers"
part="CustomHeader" use="literal"/>
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output name="headerResponse">
- <wsp:PolicyReference
URI="#X10_IPingService_header_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_header_output_policy"/> -->
<soap12:header message="i0:headerResponse_Headers"
part="CustomHeader" use="literal"/>
<soap12:body use="literal"/>
</wsdl:output>
@@ -1266,72 +1268,72 @@
<wsdl:operation name="fault">
<soap12:operation
soapAction="http://InteropBaseAddress/interop/fault"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#X10_IPingService_fault_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_fault_Input_policy"/> -->
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#X10_IPingService_fault_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10_IPingService_fault_output_policy"/> -->
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding name="X10-NoTimestamp_IPingService"
type="i0:IPingService">
- <wsp:PolicyReference URI="#X10-NoTimestamp_IPingService_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_policy"/> -->
<!-- <soap12:binding
transport="http://schemas.xmlsoap.org/soap/http"/> -->
<soap:binding
transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="Ping">
<soap12:operation
soapAction="http://xmlsoap.org/Ping"
style="document"/>
<wsdl:input name="PingRequest">
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_Ping_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_Ping_Input_policy"/> -->
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output name="PingResponse">
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_Ping_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_Ping_output_policy"/> -->
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echo">
<soap12:operation
soapAction="http://InteropBaseAddress/interop/echo"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echo_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echo_Input_policy"/> -->
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echo_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echo_output_policy"/> -->
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echoXml">
<soap12:operation
soapAction="http://InteropBaseAddress/interop/echoXml"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echoXml_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echoXml_Input_policy"/> -->
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echoXml_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echoXml_output_policy"/> -->
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="echoDataSet">
<soap12:operation
soapAction="http://InteropBaseAddress/interop/echoDataSet"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echoDataSet_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echoDataSet_Input_policy"/> -->
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echoDataSet_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_echoDataSet_output_policy"/> -->
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="header">
<soap12:operation
soapAction="http://InteropBaseAddress/interop/header"
style="document"/>
<wsdl:input name="headerRequest">
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_header_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_header_Input_policy"/> -->
<soap12:header message="i0:headerRequest_Headers"
part="CustomHeader" use="literal"/>
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output name="headerResponse">
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_header_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_header_output_policy"/> -->
<soap12:header message="i0:headerResponse_Headers"
part="CustomHeader" use="literal"/>
<soap12:body use="literal"/>
</wsdl:output>
@@ -1339,11 +1341,11 @@
<wsdl:operation name="fault">
<soap12:operation
soapAction="http://InteropBaseAddress/interop/fault"
style="document"/>
<wsdl:input>
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_fault_Input_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_fault_Input_policy"/> -->
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output>
- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_fault_output_policy"/>
+ <!-- <wsp:PolicyReference
URI="#X10-NoTimestamp_IPingService_fault_output_policy"/> -->
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>