Author: coheigea
Date: Wed May 30 13:19:53 2012
New Revision: 1344244

URL: http://svn.apache.org/viewvc?rev=1344244&view=rev
Log:
[CXF-3520] - Adding a @Ignore'd testcase

Added:
    
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/
    
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/CrossDomainTest.java
    
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/CrossDomainValidator.java
    
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/STSServer.java
    
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/STSServer2.java
    
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/Server.java
    
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/
    
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/DoubleIt.wsdl
    
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-client.xml
    
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-service.xml
    
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-sts-saml1.xml
    
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-sts-saml2.xml

Added: 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/CrossDomainTest.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/CrossDomainTest.java?rev=1344244&view=auto
==============================================================================
--- 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/CrossDomainTest.java
 (added)
+++ 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/CrossDomainTest.java
 Wed May 30 13:19:53 2012
@@ -0,0 +1,107 @@
+/**
+ * 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.
+ */
+package org.apache.cxf.systest.sts.cross_domain;
+
+import java.net.URL;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+
+import org.apache.cxf.Bus;
+import org.apache.cxf.bus.spring.SpringBusFactory;
+import org.apache.cxf.systest.sts.common.SecurityTestUtil;
+import org.apache.cxf.testutil.common.AbstractBusClientServerTestBase;
+
+import org.example.contract.doubleit.DoubleItPortType;
+import org.junit.BeforeClass;
+
+/**
+ * In this test, a CXF client checks to see that the location defined on it's 
STSClient is different
+ * from that configured in the Issuer of the IssuedToken policy supplied in 
the WSDL of the
+ * service provider. It obtains a SAML Token from the configured STS first, 
and then sends it in
+ * the security header to the second STS. The returned token is then sent to 
the service provider.
+ * This illustrates cross-domain SSO: 
https://issues.apache.org/jira/browse/CXF-3520
+ */
+public class CrossDomainTest extends AbstractBusClientServerTestBase {
+    
+    static final String STSPORT = allocatePort(STSServer.class);
+    static final String STSPORT2 = allocatePort(STSServer.class, 2);
+    
+    private static final String NAMESPACE = 
"http://www.example.org/contract/DoubleIt";;
+    private static final QName SERVICE_QNAME = new QName(NAMESPACE, 
"DoubleItService");
+
+    private static final String PORT = allocatePort(Server.class);
+    
+    @BeforeClass
+    public static void startServers() throws Exception {
+        assertTrue(
+                   "Server failed to launch",
+                   // run the server in the same process
+                   // set this to false to fork
+                   launchServer(Server.class, true)
+        );
+        assertTrue(
+                   "Server failed to launch",
+                   // run the server in the same process
+                   // set this to false to fork
+                   launchServer(STSServer.class, true)
+        );
+        assertTrue(
+                "Server failed to launch",
+                // run the server in the same process
+                // set this to false to fork
+                launchServer(STSServer2.class, true)
+        );
+    }
+    
+    @org.junit.AfterClass
+    public static void cleanup() throws Exception {
+        SecurityTestUtil.cleanup();
+        stopAllServers();
+    }
+
+    @org.junit.Test
+    @org.junit.Ignore
+    public void testCrossDomain() throws Exception {
+        SpringBusFactory bf = new SpringBusFactory();
+        URL busFile = CrossDomainTest.class.getResource("cxf-client.xml");
+
+        Bus bus = bf.createBus(busFile.toString());
+        SpringBusFactory.setDefaultBus(bus);
+        SpringBusFactory.setThreadDefaultBus(bus);
+
+        URL wsdl = CrossDomainTest.class.getResource("DoubleIt.wsdl");
+        Service service = Service.create(wsdl, SERVICE_QNAME);
+        QName portQName = new QName(NAMESPACE, "DoubleItCrossDomainPort");
+        DoubleItPortType transportPort = 
+            service.getPort(portQName, DoubleItPortType.class);
+        updateAddressPort(transportPort, PORT);
+
+        // Transport port
+        doubleIt(transportPort, 25);
+        
+        bus.shutdown(true);
+    }
+    
+
+    private static void doubleIt(DoubleItPortType port, int numToDouble) {
+        int resp = port.doubleIt(numToDouble);
+        assertEquals(numToDouble * 2 , resp);
+    }
+}

Added: 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/CrossDomainValidator.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/CrossDomainValidator.java?rev=1344244&view=auto
==============================================================================
--- 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/CrossDomainValidator.java
 (added)
+++ 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/CrossDomainValidator.java
 Wed May 30 13:19:53 2012
@@ -0,0 +1,44 @@
+/**
+ * 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.
+ */
+package org.apache.cxf.systest.sts.cross_domain;
+
+import org.apache.ws.security.WSSecurityException;
+import org.apache.ws.security.handler.RequestData;
+import org.apache.ws.security.saml.ext.AssertionWrapper;
+import org.apache.ws.security.validate.Credential;
+import org.apache.ws.security.validate.SamlAssertionValidator;
+
+/**
+ * This class validates a SAML Assertion by checking the issuer name.
+ */
+public class CrossDomainValidator extends SamlAssertionValidator {
+    
+    public Credential validate(Credential credential, RequestData data) throws 
WSSecurityException {
+        Credential validatedCredential = super.validate(credential, data);
+        
+        AssertionWrapper token = validatedCredential.getAssertion();
+        if (token == null || token.getSaml2() == null
+            || !"b-issuer".equals(token.getIssuerString())) {
+            throw new WSSecurityException(WSSecurityException.FAILURE);
+        }
+
+        return validatedCredential;
+    }
+
+}

Added: 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/STSServer.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/STSServer.java?rev=1344244&view=auto
==============================================================================
--- 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/STSServer.java
 (added)
+++ 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/STSServer.java
 Wed May 30 13:19:53 2012
@@ -0,0 +1,50 @@
+/**
+ * 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.
+ */
+package org.apache.cxf.systest.sts.cross_domain;
+
+import java.net.URL;
+
+import org.apache.cxf.Bus;
+import org.apache.cxf.BusFactory;
+import org.apache.cxf.bus.spring.SpringBusFactory;
+import org.apache.cxf.testutil.common.AbstractBusTestServerBase;
+
+public class STSServer extends AbstractBusTestServerBase {
+
+    public STSServer() {
+
+    }
+
+    protected void run()  {
+        URL busFile = STSServer.class.getResource("cxf-sts-saml1.xml");
+        Bus busLocal = new SpringBusFactory().createBus(busFile);
+        BusFactory.setDefaultBus(busLocal);
+        setBus(busLocal);
+
+        try {
+            new STSServer();
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+    }
+    
+    public static void main(String args[]) {
+        new STSServer().run();
+    }
+}

Added: 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/STSServer2.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/STSServer2.java?rev=1344244&view=auto
==============================================================================
--- 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/STSServer2.java
 (added)
+++ 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/STSServer2.java
 Wed May 30 13:19:53 2012
@@ -0,0 +1,50 @@
+/**
+ * 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.
+ */
+package org.apache.cxf.systest.sts.cross_domain;
+
+import java.net.URL;
+
+import org.apache.cxf.Bus;
+import org.apache.cxf.BusFactory;
+import org.apache.cxf.bus.spring.SpringBusFactory;
+import org.apache.cxf.testutil.common.AbstractBusTestServerBase;
+
+public class STSServer2 extends AbstractBusTestServerBase {
+
+    public STSServer2() {
+
+    }
+
+    protected void run()  {
+        URL busFile = STSServer2.class.getResource("cxf-sts-saml2.xml");
+        Bus busLocal = new SpringBusFactory().createBus(busFile);
+        BusFactory.setDefaultBus(busLocal);
+        setBus(busLocal);
+
+        try {
+            new STSServer2();
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+    }
+    
+    public static void main(String args[]) {
+        new STSServer2().run();
+    }
+}

Added: 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/Server.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/Server.java?rev=1344244&view=auto
==============================================================================
--- 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/Server.java
 (added)
+++ 
cxf/trunk/services/sts/systests/advanced/src/test/java/org/apache/cxf/systest/sts/cross_domain/Server.java
 Wed May 30 13:19:53 2012
@@ -0,0 +1,46 @@
+/**
+ * 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.
+ */
+package org.apache.cxf.systest.sts.cross_domain;
+
+import java.net.URL;
+
+import org.apache.cxf.Bus;
+import org.apache.cxf.BusFactory;
+import org.apache.cxf.bus.spring.SpringBusFactory;
+import org.apache.cxf.testutil.common.AbstractBusTestServerBase;
+
+public class Server extends AbstractBusTestServerBase {
+
+    public Server() {
+
+    }
+
+    protected void run()  {
+        URL busFile = Server.class.getResource("cxf-service.xml");
+        Bus busLocal = new SpringBusFactory().createBus(busFile);
+        BusFactory.setDefaultBus(busLocal);
+        setBus(busLocal);
+
+        try {
+            new Server();
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+    }
+}

Added: 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/DoubleIt.wsdl
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/DoubleIt.wsdl?rev=1344244&view=auto
==============================================================================
--- 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/DoubleIt.wsdl
 (added)
+++ 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/DoubleIt.wsdl
 Wed May 30 13:19:53 2012
@@ -0,0 +1,175 @@
+<!--
+ 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 name="DoubleIt"
+       xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/";
+       xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; 
xmlns:di="http://www.example.org/schema/DoubleIt";
+       xmlns:tns="http://www.example.org/contract/DoubleIt"; 
xmlns:wsp="http://www.w3.org/ns/ws-policy";
+       
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
+       xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"; 
xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702";
+       xmlns:t="http://docs.oasis-open.org/ws-sx/ws-trust/200512"; 
xmlns:wsaw="http://www.w3.org/2005/08/addressing";
+       xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex"; 
targetNamespace="http://www.example.org/contract/DoubleIt";>
+
+    <wsdl:import location="src/test/resources/DoubleItLogical.wsdl" 
+                 namespace="http://www.example.org/contract/DoubleIt"/>
+
+       <wsdl:binding name="DoubleItTransportBinding" 
type="tns:DoubleItPortType">
+               <wsp:PolicyReference URI="#DoubleItBindingTransportPolicy" />
+               <soap:binding style="document"
+                       transport="http://schemas.xmlsoap.org/soap/http"; />
+               <wsdl:operation name="DoubleIt">
+                       <soap:operation soapAction="" />
+                       <wsdl:input>
+                               <soap:body use="literal" />
+                               <wsp:PolicyReference 
URI="#DoubleItBinding_DoubleIt_Input_Policy" />
+                       </wsdl:input>
+                       <wsdl:output>
+                               <soap:body use="literal" />
+                               <wsp:PolicyReference 
URI="#DoubleItBinding_DoubleIt_Output_Policy" />
+                       </wsdl:output>
+               </wsdl:operation>
+       </wsdl:binding>
+
+       <wsdl:service name="DoubleItService">
+               <wsdl:port name="DoubleItCrossDomainPort" 
binding="tns:DoubleItTransportBinding">
+                       <soap:address
+                               
location="https://localhost:8081/doubleit/services/doubleitcrossdomain"; />
+               </wsdl:port>
+       </wsdl:service>
+       
+       <wsp:Policy wsu:Id="DoubleItBindingTransportPolicy">
+               <wsp:ExactlyOne>
+                       <wsp:All>
+                               <wsam:Addressing wsp:Optional="false">
+                                       <wsp:Policy />
+                               </wsam:Addressing>
+                               <sp:TransportBinding
+                                       
xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702";>
+                                       <wsp:Policy>
+                                               <sp:TransportToken>
+                                                       <wsp:Policy>
+                                                               <sp:HttpsToken>
+                                                                    
<wsp:Policy/>
+                                                                
</sp:HttpsToken>
+                                                       </wsp:Policy>
+                                               </sp:TransportToken>
+                                               <sp:AlgorithmSuite>
+                                                       <wsp:Policy>
+                                                               
<sp:TripleDesRsa15 />
+                                                       </wsp:Policy>
+                                               </sp:AlgorithmSuite>
+                                               <sp:Layout>
+                                                       <wsp:Policy>
+                                                               <sp:Lax />
+                                                       </wsp:Policy>
+                                               </sp:Layout>
+                                               <sp:IncludeTimestamp />
+                                       </wsp:Policy>
+                               </sp:TransportBinding>
+                               <sp:SupportingTokens
+                                       
xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702";>
+                                       <wsp:Policy>
+                                               <sp:IssuedToken
+                                                       
sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/AlwaysToRecipient";>
+                                                       
<sp:RequestSecurityTokenTemplate>
+                                                               
<t:TokenType>http://docs.oasis-open.org/wss/oasis-wss-saml-token-profile-1.1#SAMLV2.0</t:TokenType>
+                                                               
<t:KeyType>http://docs.oasis-open.org/ws-sx/ws-trust/200512/Bearer</t:KeyType>
+                                                       
</sp:RequestSecurityTokenTemplate>
+                                                       <wsp:Policy>
+                                                               
<sp:RequireInternalReference />
+                                                       </wsp:Policy>
+                                                       <sp:Issuer>
+                                                               
<wsaw:Address>http://localhost:8080/SecurityTokenService/UT
+                                                               </wsaw:Address>
+                                                       </sp:Issuer>
+                                               </sp:IssuedToken>
+                                       </wsp:Policy>
+                               </sp:SupportingTokens>
+                               <sp:Wss11>
+                                       <wsp:Policy>
+                                               <sp:MustSupportRefIssuerSerial 
/>
+                                               <sp:MustSupportRefThumbprint />
+                                               <sp:MustSupportRefEncryptedKey 
/>
+                                       </wsp:Policy>
+                               </sp:Wss11>
+                               <sp:Trust13>
+                                       <wsp:Policy>
+                                               <sp:MustSupportIssuedTokens />
+                                               <sp:RequireClientEntropy />
+                                               <sp:RequireServerEntropy />
+                                       </wsp:Policy>
+                               </sp:Trust13>
+                       </wsp:All>
+               </wsp:ExactlyOne>
+       </wsp:Policy>
+       
+       <wsp:Policy wsu:Id="DoubleItBinding_DoubleIt_Input_Policy">
+               <wsp:ExactlyOne>
+                       <wsp:All>
+                               <sp:EncryptedParts>
+                                       <sp:Body />
+                               </sp:EncryptedParts>
+                               <sp:SignedParts>
+                                       <sp:Body />
+                                       <sp:Header Name="To" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="From" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="FaultTo" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="ReplyTo" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="MessageID" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="RelatesTo" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="Action" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="AckRequested"
+                                               
Namespace="http://docs.oasis-open.org/ws-rx/wsrm/200702"; />
+                                       <sp:Header 
Name="SequenceAcknowledgement"
+                                               
Namespace="http://docs.oasis-open.org/ws-rx/wsrm/200702"; />
+                                       <sp:Header Name="Sequence"
+                                               
Namespace="http://docs.oasis-open.org/ws-rx/wsrm/200702"; />
+                                       <sp:Header Name="CreateSequence"
+                                               
Namespace="http://docs.oasis-open.org/ws-rx/wsrm/200702"; />
+                               </sp:SignedParts>
+                       </wsp:All>
+               </wsp:ExactlyOne>
+       </wsp:Policy>
+       <wsp:Policy wsu:Id="DoubleItBinding_DoubleIt_Output_Policy">
+               <wsp:ExactlyOne>
+                       <wsp:All>
+                               <sp:EncryptedParts>
+                                       <sp:Body />
+                               </sp:EncryptedParts>
+                               <sp:SignedParts>
+                                       <sp:Body />
+                                       <sp:Header Name="To" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="From" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="FaultTo" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="ReplyTo" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="MessageID" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="RelatesTo" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="Action" 
Namespace="http://www.w3.org/2005/08/addressing"; />
+                                       <sp:Header Name="AckRequested"
+                                               
Namespace="http://docs.oasis-open.org/ws-rx/wsrm/200702"; />
+                                       <sp:Header 
Name="SequenceAcknowledgement"
+                                               
Namespace="http://docs.oasis-open.org/ws-rx/wsrm/200702"; />
+                                       <sp:Header Name="Sequence"
+                                               
Namespace="http://docs.oasis-open.org/ws-rx/wsrm/200702"; />
+                                       <sp:Header Name="CreateSequence"
+                                               
Namespace="http://docs.oasis-open.org/ws-rx/wsrm/200702"; />
+                               </sp:SignedParts>
+                       </wsp:All>
+               </wsp:ExactlyOne>
+       </wsp:Policy>
+</wsdl:definitions>

Added: 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-client.xml
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-client.xml?rev=1344244&view=auto
==============================================================================
--- 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-client.xml
 (added)
+++ 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-client.xml
 Wed May 30 13:19:53 2012
@@ -0,0 +1,79 @@
+<!--
+ 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.
+-->
+<beans xmlns="http://www.springframework.org/schema/beans";
+   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+   xmlns:jaxws="http://cxf.apache.org/jaxws";
+   xmlns:cxf="http://cxf.apache.org/core";
+   xmlns:http="http://cxf.apache.org/transports/http/configuration";
+   xmlns:sec="http://cxf.apache.org/configuration/security";
+   xsi:schemaLocation="
+http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
+http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
+http://cxf.apache.org/transports/http/configuration 
http://cxf.apache.org/schemas/configuration/http-conf.xsd
+http://cxf.apache.org/configuration/security 
http://cxf.apache.org/schemas/configuration/security.xsd";>
+
+    <bean 
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>
+    
+    <cxf:bus>
+        <cxf:features>
+            <cxf:logging/>
+        </cxf:features>
+    </cxf:bus>
+    
+   <jaxws:client 
name="{http://www.example.org/contract/DoubleIt}DoubleItCrossDomainPort"; 
+                 createdFromAPI="true">
+       <jaxws:properties>
+           <entry key="ws-security.sts.client">
+               <bean class="org.apache.cxf.ws.security.trust.STSClient">
+                   <constructor-arg ref="cxf"/>
+                   <property name="wsdlLocation" 
+                             
value="https://localhost:${testutil.ports.STSServer.2}/SecurityTokenService/a?wsdl"/>
+                   <property name="serviceName" 
+                             
value="{http://docs.oasis-open.org/ws-sx/ws-trust/200512/}SecurityTokenService"/>
+                   <property name="endpointName" 
+                             
value="{http://docs.oasis-open.org/ws-sx/ws-trust/200512/}Transport_Port"/>
+                   <property name="properties">
+                       <map>
+                           <entry key="ws-security.username" value="alice"/>
+                           <entry key="ws-security.callback-handler" 
+                                  
value="org.apache.cxf.systest.sts.common.CommonCallbackHandler"/>
+                           <entry key="ws-security.sts.token.username" 
value="myclientkey"/>
+                           <entry key="ws-security.sts.token.properties" 
value="clientKeystore.properties"/> 
+                           <entry key="ws-security.sts.token.usecert" 
value="true"/> 
+                       </map>
+                   </property>
+               </bean>            
+           </entry> 
+       </jaxws:properties>
+   </jaxws:client>
+   
+   <http:conduit name="https://localhost:.*";>
+      <http:tlsClientParameters disableCNCheck="true">
+        <sec:keyManagers keyPassword="ckpass">
+           <sec:keyStore type="jks" password="cspass" 
resource="clientstore.jks"/>
+        </sec:keyManagers>
+        <sec:trustManagers>
+          <sec:keyStore type="jks" password="cspass" 
resource="clientstore.jks"/>
+        </sec:trustManagers>
+      </http:tlsClientParameters>
+   </http:conduit>
+   
+</beans>
+

Added: 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-service.xml
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-service.xml?rev=1344244&view=auto
==============================================================================
--- 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-service.xml
 (added)
+++ 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-service.xml
 Wed May 30 13:19:53 2012
@@ -0,0 +1,84 @@
+<!--
+ 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.
+-->
+<beans xmlns="http://www.springframework.org/schema/beans";
+  xmlns:cxf="http://cxf.apache.org/core";
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+  xmlns:sec="http://cxf.apache.org/configuration/security";
+  xmlns:http="http://cxf.apache.org/transports/http/configuration";
+  xmlns:httpj="http://cxf.apache.org/transports/http-jetty/configuration";
+  xmlns:jaxws="http://cxf.apache.org/jaxws";
+  xsi:schemaLocation="
+            http://cxf.apache.org/core
+            http://cxf.apache.org/schemas/core.xsd
+            http://cxf.apache.org/configuration/security
+            http://cxf.apache.org/schemas/configuration/security.xsd
+            http://cxf.apache.org/jaxws
+            http://cxf.apache.org/schemas/jaxws.xsd
+            http://cxf.apache.org/transports/http/configuration
+            http://cxf.apache.org/schemas/configuration/http-conf.xsd
+            http://cxf.apache.org/transports/http-jetty/configuration
+            http://cxf.apache.org/schemas/configuration/http-jetty.xsd
+            http://www.springframework.org/schema/beans
+            http://www.springframework.org/schema/beans/spring-beans.xsd";>
+   
+   <bean 
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>
+   
+   <jaxws:endpoint id="doubleitcrossdomain"
+      implementor="org.apache.cxf.systest.sts.common.DoubleItPortTypeImpl"
+      endpointName="s:DoubleItCrossDomainPort"
+      serviceName="s:DoubleItService"
+      depends-on="ClientAuthHttpsSettings"
+      
address="https://localhost:${testutil.ports.Server}/doubleit/services/doubleitcrossdomain";
+      wsdlLocation="org/apache/cxf/systest/sts/cross_domain/DoubleIt.wsdl"
+      xmlns:s="http://www.example.org/contract/DoubleIt";>
+        
+      <jaxws:properties>
+         <entry key="ws-security.saml2.validator">
+            <bean 
class="org.apache.cxf.systest.sts.cross_domain.CrossDomainValidator"/>
+         </entry>
+         <entry key="ws-security.callback-handler" 
+                
value="org.apache.cxf.systest.sts.common.CommonCallbackHandler"/>
+         <entry key="ws-security.signature.properties" 
value="serviceKeystore.properties"/>
+      </jaxws:properties> 
+   </jaxws:endpoint>
+   
+   <httpj:engine-factory id="ClientAuthHttpsSettings" bus="cxf">
+   <httpj:engine port="${testutil.ports.Server}">
+    <httpj:tlsServerParameters>
+      <sec:keyManagers keyPassword="skpass">
+          <sec:keyStore type="jks" password="sspass" 
resource="servicestore.jks"/>
+      </sec:keyManagers>
+      <sec:trustManagers>
+          <sec:keyStore type="jks" password="stsspass" 
resource="stsstore.jks"/>
+      </sec:trustManagers>
+      <sec:cipherSuitesFilter>
+        <sec:include>.*_EXPORT_.*</sec:include>
+        <sec:include>.*_EXPORT1024_.*</sec:include>
+        <sec:include>.*_WITH_DES_.*</sec:include>
+        <sec:include>.*_WITH_AES_.*</sec:include>
+        <sec:include>.*_WITH_NULL_.*</sec:include>
+        <sec:exclude>.*_DH_anon_.*</sec:exclude>
+        </sec:cipherSuitesFilter>
+      <sec:clientAuthentication want="false" required="false"/>
+    </httpj:tlsServerParameters>
+   </httpj:engine>
+  </httpj:engine-factory>
+  
+</beans>
+

Added: 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-sts-saml1.xml
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-sts-saml1.xml?rev=1344244&view=auto
==============================================================================
--- 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-sts-saml1.xml
 (added)
+++ 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-sts-saml1.xml
 Wed May 30 13:19:53 2012
@@ -0,0 +1,140 @@
+<!--
+ 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.
+-->
+<beans xmlns="http://www.springframework.org/schema/beans";
+  xmlns:cxf="http://cxf.apache.org/core";
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+  xmlns:sec="http://cxf.apache.org/configuration/security";
+  xmlns:http="http://cxf.apache.org/transports/http/configuration";
+  xmlns:httpj="http://cxf.apache.org/transports/http-jetty/configuration";
+  xmlns:jaxws="http://cxf.apache.org/jaxws";
+  xmlns:util="http://www.springframework.org/schema/util";
+  xsi:schemaLocation="
+            http://cxf.apache.org/core
+            http://cxf.apache.org/schemas/core.xsd
+            http://cxf.apache.org/configuration/security
+            http://cxf.apache.org/schemas/configuration/security.xsd
+            http://cxf.apache.org/jaxws
+            http://cxf.apache.org/schemas/jaxws.xsd
+            http://cxf.apache.org/transports/http/configuration
+            http://cxf.apache.org/schemas/configuration/http-conf.xsd
+            http://cxf.apache.org/transports/http-jetty/configuration
+            http://cxf.apache.org/schemas/configuration/http-jetty.xsd
+            http://www.springframework.org/schema/beans
+            http://www.springframework.org/schema/beans/spring-beans.xsd
+            http://www.springframework.org/schema/util
+            http://www.springframework.org/schema/util/spring-util-2.0.xsd";>
+    
+    <bean 
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>
+    
+    <cxf:bus>
+        <cxf:features>
+            <cxf:logging/>
+        </cxf:features>
+    </cxf:bus>
+
+       <bean id="transportSTSProviderBean"
+               
class="org.apache.cxf.ws.security.sts.provider.SecurityTokenServiceProvider">
+               <property name="issueOperation" ref="transportIssueDelegate" />
+               <property name="validateOperation" 
ref="transportValidateDelegate" />
+       </bean>
+
+       <bean id="transportIssueDelegate" 
class="org.apache.cxf.sts.operation.TokenIssueOperation">
+               <property name="tokenProviders" ref="transportTokenProviders" />
+               <property name="services" ref="transportService" />
+               <property name="stsProperties" ref="transportSTSProperties" />
+       </bean>
+
+       <bean id="transportValidateDelegate" 
class="org.apache.cxf.sts.operation.TokenValidateOperation">
+               <property name="tokenProviders" ref="transportTokenProviders" />
+               <property name="tokenValidators" ref="transportTokenValidators" 
/>
+               <property name="stsProperties" ref="transportSTSProperties" />
+       </bean>
+
+       <util:list id="transportTokenProviders">
+               <ref bean="transportSAMLProvider" />
+       </util:list>
+
+       <util:list id="transportTokenValidators">
+               <ref bean="transportSAMLValidator" />
+       </util:list>
+
+       <bean id="transportSAMLProvider" 
class="org.apache.cxf.sts.token.provider.SAMLTokenProvider">
+       </bean>
+
+       <bean id="transportSAMLValidator" 
class="org.apache.cxf.sts.token.validator.SAMLTokenValidator">
+       </bean>
+
+       <bean id="transportService" 
class="org.apache.cxf.sts.service.StaticService">
+               <property name="endpoints" ref="transportEndpoints" />
+       </bean>
+
+       <util:list id="transportEndpoints">
+               <value>https://localhost:(\d)*/doubleit/services/doubleit.*
+               </value>
+       </util:list>
+
+       <bean id="customRealmParser" 
class="org.apache.cxf.systest.sts.realms.URLRealmParser" />
+
+       <bean id="transportSTSProperties" 
class="org.apache.cxf.sts.StaticSTSProperties">
+               <property name="signaturePropertiesFile"
+                       value="stsKeystore.properties" />
+               <property name="signatureUsername" value="mystskey" />
+               <property name="callbackHandlerClass"
+                       
value="org.apache.cxf.systest.sts.common.CommonCallbackHandler" />
+               <property name="issuer" value="a-issuer" />
+       </bean>
+
+       <jaxws:endpoint id="DefaultSTS" implementor="#transportSTSProviderBean"
+               
address="https://localhost:${testutil.ports.STSServer.2}/SecurityTokenService/a";
+               
wsdlLocation="src/test/resources/org/apache/cxf/systest/sts/deployment/ws-trust-1.4-service.wsdl"
+               xmlns:ns1="http://docs.oasis-open.org/ws-sx/ws-trust/200512/";
+               depends-on="ClientAuthHttpsSettings" 
serviceName="ns1:SecurityTokenService"
+               endpointName="ns1:Transport_Port">
+               <jaxws:properties>
+                       <entry key="ws-security.callback-handler"
+                               
value="org.apache.cxf.systest.sts.common.CommonCallbackHandler" />
+               </jaxws:properties>
+       </jaxws:endpoint>
+
+       <httpj:engine-factory id="ClientAuthHttpsSettings"
+               bus="cxf">
+               <httpj:engine port="${testutil.ports.STSServer.2}">
+                       <httpj:tlsServerParameters>
+                               <sec:trustManagers>
+                                       <sec:keyStore type="jks" 
password="stsspass" resource="stsstore.jks" />
+                               </sec:trustManagers>
+                               <sec:keyManagers keyPassword="stskpass">
+                                       <sec:keyStore type="jks" 
password="stsspass" resource="stsstore.jks" />
+                               </sec:keyManagers>
+                               <sec:cipherSuitesFilter>
+                                       <sec:include>.*_EXPORT_.*</sec:include>
+                                       
<sec:include>.*_EXPORT1024_.*</sec:include>
+                                       
<sec:include>.*_WITH_DES_.*</sec:include>
+                                       
<sec:include>.*_WITH_AES_.*</sec:include>
+                                       
<sec:include>.*_WITH_NULL_.*</sec:include>
+                                       <sec:exclude>.*_DH_anon_.*</sec:exclude>
+                               </sec:cipherSuitesFilter>
+                               <sec:clientAuthentication want="true"
+                                       required="true" />
+                       </httpj:tlsServerParameters>
+               </httpj:engine>
+       </httpj:engine-factory>
+   
+</beans>
+

Added: 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-sts-saml2.xml
URL: 
http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-sts-saml2.xml?rev=1344244&view=auto
==============================================================================
--- 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-sts-saml2.xml
 (added)
+++ 
cxf/trunk/services/sts/systests/advanced/src/test/resources/org/apache/cxf/systest/sts/cross_domain/cxf-sts-saml2.xml
 Wed May 30 13:19:53 2012
@@ -0,0 +1,137 @@
+<!--
+ 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.
+-->
+<beans xmlns="http://www.springframework.org/schema/beans";
+  xmlns:cxf="http://cxf.apache.org/core";
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+  xmlns:sec="http://cxf.apache.org/configuration/security";
+  xmlns:http="http://cxf.apache.org/transports/http/configuration";
+  xmlns:httpj="http://cxf.apache.org/transports/http-jetty/configuration";
+  xmlns:jaxws="http://cxf.apache.org/jaxws";
+  xmlns:util="http://www.springframework.org/schema/util";
+  xsi:schemaLocation="
+            http://cxf.apache.org/core
+            http://cxf.apache.org/schemas/core.xsd
+            http://cxf.apache.org/configuration/security
+            http://cxf.apache.org/schemas/configuration/security.xsd
+            http://cxf.apache.org/jaxws
+            http://cxf.apache.org/schemas/jaxws.xsd
+            http://cxf.apache.org/transports/http/configuration
+            http://cxf.apache.org/schemas/configuration/http-conf.xsd
+            http://cxf.apache.org/transports/http-jetty/configuration
+            http://cxf.apache.org/schemas/configuration/http-jetty.xsd
+            http://www.springframework.org/schema/beans
+            http://www.springframework.org/schema/beans/spring-beans.xsd
+            http://www.springframework.org/schema/util
+            http://www.springframework.org/schema/util/spring-util-2.0.xsd";>
+    
+    <bean 
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>
+    
+    <cxf:bus>
+        <cxf:features>
+            <cxf:logging/>
+        </cxf:features>
+    </cxf:bus>
+
+    <bean id="transportSTSProviderBean"
+           
class="org.apache.cxf.ws.security.sts.provider.SecurityTokenServiceProvider">
+           <property name="issueOperation" ref="transportIssueDelegate" />
+           <property name="validateOperation" ref="transportValidateDelegate" 
/>
+    </bean>
+
+       <bean id="transportIssueDelegate" 
class="org.apache.cxf.sts.operation.TokenIssueOperation">
+               <property name="tokenProviders" ref="transportTokenProviders" />
+               <property name="services" ref="transportService" />
+               <property name="stsProperties" ref="transportSTSProperties" />
+       </bean>
+
+       <bean id="transportValidateDelegate" 
class="org.apache.cxf.sts.operation.TokenValidateOperation">
+               <property name="tokenProviders" ref="transportTokenProviders" />
+               <property name="tokenValidators" ref="transportTokenValidators" 
/>
+               <property name="stsProperties" ref="transportSTSProperties" />
+       </bean>
+
+       <util:list id="transportTokenProviders">
+               <ref bean="transportSAMLProvider" />
+       </util:list>
+
+       <util:list id="transportTokenValidators">
+               <ref bean="transportSAMLValidator" />
+       </util:list>
+
+       <bean id="transportSAMLProvider" 
class="org.apache.cxf.sts.token.provider.SAMLTokenProvider">
+       </bean>
+
+       <bean id="transportSAMLValidator" 
class="org.apache.cxf.sts.token.validator.SAMLTokenValidator">
+       </bean>
+
+       <bean id="transportService" 
class="org.apache.cxf.sts.service.StaticService">
+               <property name="endpoints" ref="transportEndpoints" />
+       </bean>
+
+       <util:list id="transportEndpoints">
+               <value>https://localhost:(\d)*/doubleit/services/doubleit.*
+               </value>
+       </util:list>
+
+       <bean id="transportSTSProperties" 
class="org.apache.cxf.sts.StaticSTSProperties">
+               <property name="signaturePropertiesFile" 
value="stsKeystore.properties" />
+               <property name="signatureUsername" value="mystskey" />
+               <property name="callbackHandlerClass"
+                       
value="org.apache.cxf.systest.sts.common.CommonCallbackHandler" />
+               <property name="issuer" value="b-issuer" />
+       </bean>
+
+       <jaxws:endpoint id="BSTS" implementor="#transportSTSProviderBean"
+               
address="https://localhost:${testutil.ports.STSServer}/SecurityTokenService/b";
+               
wsdlLocation="src/test/resources/org/apache/cxf/systest/sts/deployment/ws-trust-1.4-service.wsdl"
+               xmlns:ns1="http://docs.oasis-open.org/ws-sx/ws-trust/200512/";
+               depends-on="ClientAuthHttpsSettings" 
serviceName="ns1:SecurityTokenService"
+               endpointName="ns1:Transport_Port">
+               <jaxws:properties>
+                       <entry key="ws-security.callback-handler"
+                               
value="org.apache.cxf.systest.sts.common.CommonCallbackHandler" />
+               </jaxws:properties>
+       </jaxws:endpoint>
+
+       <httpj:engine-factory id="ClientAuthHttpsSettings"
+               bus="cxf">
+               <httpj:engine port="${testutil.ports.STSServer}">
+                       <httpj:tlsServerParameters>
+                               <sec:trustManagers>
+                                       <sec:keyStore type="jks" 
password="stsspass" resource="stsstore.jks" />
+                               </sec:trustManagers>
+                               <sec:keyManagers keyPassword="stskpass">
+                                       <sec:keyStore type="jks" 
password="stsspass" resource="stsstore.jks" />
+                               </sec:keyManagers>
+                               <sec:cipherSuitesFilter>
+                                       <sec:include>.*_EXPORT_.*</sec:include>
+                                       
<sec:include>.*_EXPORT1024_.*</sec:include>
+                                       
<sec:include>.*_WITH_DES_.*</sec:include>
+                                       
<sec:include>.*_WITH_AES_.*</sec:include>
+                                       
<sec:include>.*_WITH_NULL_.*</sec:include>
+                                       <sec:exclude>.*_DH_anon_.*</sec:exclude>
+                               </sec:cipherSuitesFilter>
+                               <sec:clientAuthentication want="true"
+                                       required="true" />
+                       </httpj:tlsServerParameters>
+               </httpj:engine>
+       </httpj:engine-factory>
+   
+</beans>
+


Reply via email to