Author: midon
Date: Fri Feb 13 07:27:39 2009
New Revision: 744018

URL: http://svn.apache.org/viewvc?rev=744018&view=rev
Log:
add a test case for policy embedded in service.xml

Added:
    
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/
    
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/HelloWorld2.bpel
    
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/HelloWorld2.wsdl
    
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/deploy.xml
    
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/echo-service.wsdl
    
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/sample04-policy.axis2
    
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/testRequest.soap
Modified:
    
ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/rampart/policy/SecuredServicesTest.java

Modified: 
ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/rampart/policy/SecuredServicesTest.java
URL: 
http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/rampart/policy/SecuredServicesTest.java?rev=744018&r1=744017&r2=744018&view=diff
==============================================================================
--- 
ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/rampart/policy/SecuredServicesTest.java
 (original)
+++ 
ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/rampart/policy/SecuredServicesTest.java
 Fri Feb 13 07:27:39 2009
@@ -79,4 +79,9 @@
             server.undeployProcess(bundleName);
         }
     }
+
+    @Test
+    public void testPolicyInServiceXml() throws Exception {
+        executeProcess(testDir+"/process-sample04_policy_in_service.xml");
+    }
 }

Added: 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/HelloWorld2.bpel
URL: 
http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/HelloWorld2.bpel?rev=744018&view=auto
==============================================================================
--- 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/HelloWorld2.bpel
 (added)
+++ 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/HelloWorld2.bpel
 Fri Feb 13 07:27:39 2009
@@ -0,0 +1,73 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~    http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+<process name="HelloWorld2"
+    targetNamespace="http://ode/bpel/unit-test"; 
+    xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable";
+    xmlns:tns="http://ode/bpel/unit-test";
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema";
+    xmlns:test="http://ode/bpel/unit-test.wsdl";
+    xmlns:dummy="http://sample04.policy.samples.rampart.apache.org";
+    queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+    expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
+
+  <import location="HelloWorld2.wsdl"
+     namespace="http://ode/bpel/unit-test.wsdl";
+     importType="http://schemas.xmlsoap.org/wsdl/"; />
+
+   <partnerLinks>
+      <partnerLink name="helloPartnerLink" 
+         partnerLinkType="test:HelloPartnerLinkType" myRole="me" />
+      <partnerLink name="samplePartnerLink"
+         partnerLinkType="test:samplePartnerLinkType" partnerRole="you" />
+   </partnerLinks>
+    
+   <variables>
+     <variable name="myVar" messageType="test:HelloMessage"/>
+     <variable name="req" messageType="dummy:echoRequest"/>
+     <variable name="resp" messageType="dummy:echoResponse"/>
+   </variables>
+
+   <sequence>
+       <receive name="start" partnerLink="helloPartnerLink" 
portType="test:HelloPortType"
+          operation="hello" variable="myVar" createInstance="yes"/>
+
+       <assign>
+           <copy>
+                
<from><literal><dummy:echo><dummy:param0>foo</dummy:param0></dummy:echo></literal></from>
+                <to>$req.parameters</to>
+           </copy>
+           <copy>
+               <from>$myVar.TestPart</from>
+               <to>$req.parameters/dummy:param0</to>
+           </copy>
+       </assign>
+
+       <invoke partnerLink="samplePartnerLink" 
portType="dummy:sample04-policyPortType"
+               operation="echo" inputVariable="req" outputVariable="resp"/>
+
+       <assign>
+           <copy>
+                <from>$resp.parameters/dummy:return</from>
+               <to>$myVar.TestPart</to>
+           </copy>
+       </assign>
+       <reply name="end" partnerLink="helloPartnerLink" 
portType="test:HelloPortType"
+              operation="hello" variable="myVar"/>
+   </sequence>
+</process>

Added: 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/HelloWorld2.wsdl
URL: 
http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/HelloWorld2.wsdl?rev=744018&view=auto
==============================================================================
--- 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/HelloWorld2.wsdl
 (added)
+++ 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/HelloWorld2.wsdl
 Fri Feb 13 07:27:39 2009
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~    http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<wsdl:definitions 
+    targetNamespace="http://ode/bpel/unit-test.wsdl";
+    xmlns="http://schemas.xmlsoap.org/wsdl/";
+    xmlns:tns="http://ode/bpel/unit-test.wsdl";
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; 
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema";
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";
+    xmlns:dummy="http://sample04.policy.samples.rampart.apache.org";
+    xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype";>
+
+       <wsdl:import 
namespace="http://sample04.policy.samples.rampart.apache.org"; 
location="echo-service.wsdl"/>
+
+    <wsdl:message name="HelloMessage">
+        <wsdl:part name="TestPart" type="xsd:string"/>
+    </wsdl:message>
+    
+    <wsdl:portType name="HelloPortType">
+        <wsdl:operation name="hello">
+            <wsdl:input message="tns:HelloMessage" name="TestIn"/>
+            <wsdl:output message="tns:HelloMessage" name="TestOut"/>
+        </wsdl:operation>    
+    </wsdl:portType>
+    
+     <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
+        <soap:binding style="rpc" 
transport="http://schemas.xmlsoap.org/soap/http"/>
+        <wsdl:operation name="hello">
+            <soap:operation soapAction="" style="rpc"/>
+            <wsdl:input>
+                <soap:body
+                    namespace="http://ode/bpel/unit-test.wsdl";
+                    use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body
+                    namespace="http://ode/bpel/unit-test.wsdl"; 
+                    use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:service name="HelloService">
+               <wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
+               <soap:address 
location="http://localhost:8080/ode/processes/helloWorld"/>
+               </wsdl:port>
+    </wsdl:service>
+    
+   <plnk:partnerLinkType name="HelloPartnerLinkType">
+       <plnk:role name="me" portType="tns:HelloPortType"/>
+   </plnk:partnerLinkType>
+    <plnk:partnerLinkType name="samplePartnerLinkType">
+           <plnk:role name="you" portType="dummy:sample04-policyPortType"/>
+    </plnk:partnerLinkType>
+</wsdl:definitions>
+

Added: 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/deploy.xml
URL: 
http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/deploy.xml?rev=744018&view=auto
==============================================================================
--- 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/deploy.xml
 (added)
+++ 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/deploy.xml
 Fri Feb 13 07:27:39 2009
@@ -0,0 +1,34 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~    http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+<deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03";
+       xmlns:pns="http://ode/bpel/unit-test";
+       xmlns:wns="http://ode/bpel/unit-test.wsdl";
+    xmlns:dns="http://sample04.policy.samples.rampart.apache.org";>
+
+
+       <process name="pns:HelloWorld2">
+               <active>true</active>
+               <provide partnerLink="helloPartnerLink">
+                       <service name="wns:HelloService" port="HelloPort"/>
+               </provide>
+        <invoke partnerLink="samplePartnerLink">
+               <service name="dns:sample04-policy" 
port="sample04-policySOAP11port_http"/>
+        </invoke>
+    </process>
+</deploy>

Added: 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/echo-service.wsdl
URL: 
http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/echo-service.wsdl?rev=744018&view=auto
==============================================================================
--- 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/echo-service.wsdl
 (added)
+++ 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/echo-service.wsdl
 Fri Feb 13 07:27:39 2009
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/";
+                  xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/";
+                  xmlns:ns0="http://sample04.policy.samples.rampart.apache.org";
+                  xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/";
+                  xmlns:http="http://schemas.xmlsoap.org/wsdl/http/";
+                  xmlns:ns1="http://org.apache.axis2/xsd";
+                  xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl";
+                  xmlns:xs="http://www.w3.org/2001/XMLSchema";
+                  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";
+                 
targetNamespace="http://sample04.policy.samples.rampart.apache.org";>
+   <wsdl:types>
+          <xs:schema 
xmlns:ns="http://sample04.policy.samples.rampart.apache.org";
+                 attributeFormDefault="qualified"
+                 elementFormDefault="qualified"
+                
targetNamespace="http://sample04.policy.samples.rampart.apache.org";>
+         <xs:element name="echo">
+            <xs:complexType>
+               <xs:sequence>
+                  <xs:element minOccurs="0" name="param0" nillable="true" 
type="xs:string"/>
+               </xs:sequence>
+            </xs:complexType>
+         </xs:element>
+         <xs:element name="echoResponse">
+            <xs:complexType>
+               <xs:sequence>
+                  <xs:element minOccurs="0" name="return" nillable="true" 
type="xs:string"/>
+               </xs:sequence>
+            </xs:complexType>
+         </xs:element>
+      </xs:schema>
+   </wsdl:types>
+   <wsdl:message name="echoRequest">
+      <wsdl:part name="parameters" element="ns0:echo"/>
+   </wsdl:message>
+   <wsdl:message name="echoResponse">
+      <wsdl:part name="parameters" element="ns0:echoResponse"/>
+   </wsdl:message>
+   <wsdl:portType name="sample04-policyPortType">
+      <wsdl:operation name="echo">
+         <wsdl:input message="ns0:echoRequest" wsaw:Action="urn:echo"/>
+         <wsdl:output message="ns0:echoResponse" 
wsaw:Action="urn:echoResponse"/>
+      </wsdl:operation>
+   </wsdl:portType>
+   <wsdl:binding name="sample04-policySOAP11Binding" 
type="ns0:sample04-policyPortType">
+      <soap:binding transport="http://schemas.xmlsoap.org/soap/http"; 
style="document"/>
+      <wsdl:operation name="echo">
+         <soap:operation soapAction="urn:echo" style="document"/>
+         <wsdl:input>
+            <soap:body use="literal"/>
+         </wsdl:input>
+         <wsdl:output>
+            <soap:body use="literal"/>
+         </wsdl:output>
+      </wsdl:operation>
+   </wsdl:binding>
+   <wsdl:service name="sample04-policy">
+      <wsdl:port name="sample04-policySOAP11port_http" 
binding="ns0:sample04-policySOAP11Binding">
+         <soap:address 
location="http://localhost:8888/axis2/processes/sample04-policy"/>
+      </wsdl:port>
+   </wsdl:service>
+</wsdl:definitions>
\ No newline at end of file

Added: 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/sample04-policy.axis2
URL: 
http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/sample04-policy.axis2?rev=744018&view=auto
==============================================================================
--- 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/sample04-policy.axis2
 (added)
+++ 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/sample04-policy.axis2
 Fri Feb 13 07:27:39 2009
@@ -0,0 +1,156 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ !
+ ! Copyright 2006 The Apache Software Foundation.
+ !
+ ! Licensed under the Apache License, Version 2.0 (the "License");
+ ! you may not use this file except in compliance with the License.
+ ! You may obtain a copy of the License at
+ !
+ !      http://www.apache.org/licenses/LICENSE-2.0
+ !
+ ! Unless required by applicable law or agreed to in writing, software
+ ! distributed under the License is distributed on an "AS IS" BASIS,
+ ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ! See the License for the specific language governing permissions and
+ ! limitations under the License.
+ !-->
+
+<service>
+
+    <module ref="rampart"/>
+
+       <wsp:Policy wsu:Id="SecConvPolicy2" 
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
 xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy";>
+               <wsp:ExactlyOne>
+                       <wsp:All>
+                               <sp:SymmetricBinding 
xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy";>
+                                       <wsp:Policy>
+                                               <sp:ProtectionToken>
+                                                       <wsp:Policy>
+                                                               
<sp:SecureConversationToken 
sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient";>
+                                                                       
<wsp:Policy>
+                                                                               
<sp:RequireDerivedKeys/>
+                                                                               
<sp:BootstrapPolicy>
+                                                                               
        <wsp:Policy>
+                                                                               
                <sp:EncryptedParts>
+                                                                               
                        <sp:Body/>
+                                                                               
                </sp:EncryptedParts>
+                                                                               
                <sp:SymmetricBinding>
+                                                                               
                        <wsp:Policy>
+                                                                               
                                <sp:ProtectionToken>
+                                                                               
                                        <wsp:Policy>
+                                                                               
                                                <sp:X509Token 
sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never";>
+                                                                               
                                                        <wsp:Policy>
+                                                                               
                                                                
<sp:RequireDerivedKeys/>
+                                                                               
                                                                
<sp:RequireThumbprintReference/>
+                                                                               
                                                                
<sp:WssX509V3Token10/>
+                                                                               
                                                        </wsp:Policy>
+                                                                               
                                                </sp:X509Token>
+                                                                               
                                        </wsp:Policy>
+                                                                               
                                </sp:ProtectionToken>
+                                                                               
                                <sp:AlgorithmSuite>
+                                                                               
                                        <wsp:Policy>
+                                                                               
                                                <sp:Basic128Rsa15/>
+                                                                               
                                        </wsp:Policy>
+                                                                               
                                </sp:AlgorithmSuite>
+                                                                               
                                <sp:Layout>
+                                                                               
                                        <wsp:Policy>
+                                                                               
                                                <sp:Strict/>
+                                                                               
                                        </wsp:Policy>
+                                                                               
                                </sp:Layout>
+                                                                               
                                <sp:IncludeTimestamp/>
+                                                                               
                                <sp:EncryptSignature/>
+                                                                               
                                <sp:OnlySignEntireHeadersAndBody/>
+                                                                               
                        </wsp:Policy>
+                                                                               
                </sp:SymmetricBinding>
+                                                                               
                <sp:EndorsingSupportingTokens>
+                                                                               
                        <wsp:Policy>
+                                                                               
                                <sp:X509Token 
sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient";>
+                                                                               
                                        <wsp:Policy>
+                                                                               
                                                <sp:RequireThumbprintReference/>
+                                                                               
                                                <sp:WssX509V3Token10/>
+                                                                               
                                        </wsp:Policy>
+                                                                               
                                </sp:X509Token>
+                                                                               
                        </wsp:Policy>
+                                                                               
                </sp:EndorsingSupportingTokens>
+                                                                               
                <sp:Wss11>
+                                                                               
                        <wsp:Policy>
+                                                                               
                                <sp:MustSupportRefKeyIdentifier/>
+                                                                               
                                <sp:MustSupportRefIssuerSerial/>
+                                                                               
                                <sp:MustSupportRefThumbprint/>
+                                                                               
                                <sp:MustSupportRefEncryptedKey/>
+                                                                               
                                <sp:RequireSignatureConfirmation/>
+                                                                               
                        </wsp:Policy>
+                                                                               
                </sp:Wss11>
+                                                                               
                <sp:Trust10>
+                                                                               
                        <wsp:Policy>
+                                                                               
                                <sp:MustSupportIssuedTokens/>
+                                                                               
                                <sp:RequireClientEntropy/>
+                                                                               
                                <sp:RequireServerEntropy/>
+                                                                               
                        </wsp:Policy>
+                                                                               
                </sp:Trust10>
+                                                                               
        </wsp:Policy>
+                                                                               
</sp:BootstrapPolicy>
+                                                                       
</wsp:Policy>
+                                                               
</sp:SecureConversationToken>
+                                                       </wsp:Policy>
+                                               </sp:ProtectionToken>
+                                               <sp:AlgorithmSuite>
+                                                       <wsp:Policy>
+                                                               
<sp:Basic128Rsa15/>
+                                                       </wsp:Policy>
+                                               </sp:AlgorithmSuite>
+                                               <sp:Layout>
+                                                       <wsp:Policy>
+                                                               <sp:Strict/>
+                                                       </wsp:Policy>
+                                               </sp:Layout>
+                                               <sp:IncludeTimestamp/>
+                                               <sp:EncryptSignature/>
+                                               
<sp:OnlySignEntireHeadersAndBody/>
+                                       </wsp:Policy>
+                               </sp:SymmetricBinding>
+                               <sp:Wss11 
xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy";>
+                                       <wsp:Policy>
+                                               
<sp:MustSupportRefKeyIdentifier/>
+                                               <sp:MustSupportRefIssuerSerial/>
+                                               <sp:MustSupportRefThumbprint/>
+                                               <sp:MustSupportRefEncryptedKey/>
+                                       </wsp:Policy>
+                               </sp:Wss11>
+                               <sp:Trust10 
xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy";>
+                                       <wsp:Policy>
+                                               <sp:MustSupportIssuedTokens/>
+                                               <sp:RequireClientEntropy/>
+                                               <sp:RequireServerEntropy/>
+                                       </wsp:Policy>
+                               </sp:Trust10>
+                               <sp:EncryptedParts 
xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy";>
+                                       <sp:Body/>
+                               </sp:EncryptedParts>
+                               <ramp:RampartConfig 
xmlns:ramp="http://ws.apache.org/rampart/policy";> 
+                                       <ramp:user>client</ramp:user>
+                                       
<ramp:encryptionUser>service</ramp:encryptionUser>
+                                       
<ramp:passwordCallbackClass>org.apache.rampart.samples.policy.sample04.PWCBHandler</ramp:passwordCallbackClass>
+                               
+                                       <ramp:signatureCrypto>
+                                               <ramp:crypto 
provider="org.apache.ws.security.components.crypto.Merlin">
+                                                       <ramp:property 
name="org.apache.ws.security.crypto.merlin.keystore.type">JKS</ramp:property>
+                                                       <ramp:property 
name="org.apache.ws.security.crypto.merlin.file">TestRampartPolicy/secured-services/client.jks</ramp:property>
+                                                       <ramp:property 
name="org.apache.ws.security.crypto.merlin.keystore.password">apache</ramp:property>
+                                               </ramp:crypto>
+                                       </ramp:signatureCrypto>
+                                       <ramp:encryptionCypto>
+                                               <ramp:crypto 
provider="org.apache.ws.security.components.crypto.Merlin">
+                                                       <ramp:property 
name="org.apache.ws.security.crypto.merlin.keystore.type">JKS</ramp:property>
+                                                       <ramp:property 
name="org.apache.ws.security.crypto.merlin.file">TestRampartPolicy/secured-services/client.jks</ramp:property>
+                                                       <ramp:property 
name="org.apache.ws.security.crypto.merlin.keystore.password">apache</ramp:property>
+                                               </ramp:crypto>
+                                       </ramp:encryptionCypto>
+                               
+                               </ramp:RampartConfig>
+                       </wsp:All>
+               </wsp:ExactlyOne>
+       </wsp:Policy>
+
+</service>

Added: 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/testRequest.soap
URL: 
http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/testRequest.soap?rev=744018&view=auto
==============================================================================
--- 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/testRequest.soap
 (added)
+++ 
ode/trunk/axis2-war/src/test/resources/TestRampartPolicy/secured-services/process-sample04_policy_in_service.xml/testRequest.soap
 Fri Feb 13 07:27:39 2009
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~    http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";>
+  <!-- test soap message -->
+  <SOAP-ENV:Body>
+    <ns1:hello xmlns:ns1="http://ode/bpel/unit-test.wsdl";>
+        <TestPart xmlns="">Hello World</TestPart>
+    </ns1:hello>
+  </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>


Reply via email to