You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by bi...@apache.org on 2020/04/15 16:08:59 UTC

[axis-axis2-java-rampart] 16/18: Merged r1303198 to the 1.5 branch for debugging purposes.

This is an automated email from the ASF dual-hosted git repository.

billblough pushed a commit to branch 1_5_x
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-rampart.git

commit 14e01826290f5f62cefbcb7e858957c809fbf03b
Author: Andreas Veithen <ve...@apache.org>
AuthorDate: Tue Mar 20 23:13:35 2012 +0000

    Merged r1303198 to the 1.5 branch for debugging purposes.
---
 .../src/main/java/org/apache/rahas/TestClient.java | 116 ++++++++++-----------
 1 file changed, 55 insertions(+), 61 deletions(-)

diff --git a/modules/rampart-integration/src/main/java/org/apache/rahas/TestClient.java b/modules/rampart-integration/src/main/java/org/apache/rahas/TestClient.java
index 3fdb63c..bedca63 100644
--- a/modules/rampart-integration/src/main/java/org/apache/rahas/TestClient.java
+++ b/modules/rampart-integration/src/main/java/org/apache/rahas/TestClient.java
@@ -54,68 +54,62 @@ public abstract class TestClient extends TestCase {
 
     /**
      */
-    public void testRequest() {
-        try {
-
-            // Get the repository location from the args
-            String repo = Constants.TESTING_PATH + "rahas_client_repo";
-
-            ConfigurationContext configContext = ConfigurationContextFactory.createConfigurationContextFromFileSystem(repo,
-                                                                                                                      null);
-            ServiceClient serviceClient = new ServiceClient(configContext, null);
-            Options options = new Options();
-
-            System.setProperty("javax.net.ssl.keyStorePassword", "password");
-            System.setProperty("javax.net.ssl.keyStoreType", "JKS");
-            System.setProperty("javax.net.ssl.trustStore", "/home/ruchith/Desktop/interop/certs/interop2.jks");
-            System.setProperty("javax.net.ssl.trustStorePassword", "password");
-            System.setProperty("javax.net.ssl.trustStoreType","JKS");
-
-            options.setTo(new EndpointReference("http://127.0.0.1:" + port + "/axis2/services/SecureService"));
-//            options.setTo(new EndpointReference("http://127.0.0.1:" + 9090 + "/axis2/services/UTSAMLHoK"));
-//            options.setTo(new EndpointReference("https://www-lk.wso2.com:8443/axis2/services/UTSAMLHoK"));
-//            options.setTo(new EndpointReference("https://192.18.49.133:2343/jaxws-s1-sts/sts"));
-//            options.setTo(new EndpointReference("https://207.200.37.116/SxSts/Scenario_1_IssuedTokenOverTransport_UsernameOverTransport"));
-//            options.setTo(new EndpointReference("http://localhost:9090/SxSts/Scenario_4_IssuedToken_MutualCertificate10"));
-
-//            options.setTo(new EndpointReference("http://127.0.0.1:" + 9090 + "/axis2/services/MutualCertsSAMLHoK"));
-//            options.setTo(new EndpointReference("http://www-lk.wso2.com:8888/axis2/services/MutualCertsSAMLHoK"));
-//            options.setTo(new EndpointReference("https://131.107.72.15/trust/Addressing2004/UserName"));
-//            options.setTo(new EndpointReference("https://131.107.72.15/trust/UserName"));
-//            options.setTo(new EndpointReference("http://127.0.0.1:" + 9090 + "/trust/X509WSS10"));
-//            options.setTo(new EndpointReference("https://131.107.72.15/trust/UserName"));
-//            options.setTo(new EndpointReference("http://127.0.0.1:" + 9090 + "/jaxws-s4-sts/sts"));
-//            options.setTo(new EndpointReference("http://127.0.0.1:9090/jaxws-s4/simple"));
-//            options.setTo(new EndpointReference("http://127.0.0.1:" + 9090 + "/axis2/services/UTSAMLBearer"));
-
-            options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
-            options.setAction(this.getRequestAction());
-//            options.setProperty(AddressingConstants.WS_ADDRESSING_VERSION, this.getWSANamespace());
-
-            options.setTimeOutInMilliSeconds(200 * 1000);
-            OutflowConfiguration clientOutflowConfiguration = getClientOutflowConfiguration();
-            if (clientOutflowConfiguration != null) {
-                configContext.setProperty(WSSHandlerConstants.OUTFLOW_SECURITY, clientOutflowConfiguration.getProperty());
-            }
-            InflowConfiguration clientInflowConfiguration = getClientInflowConfiguration();
-            if (clientInflowConfiguration != null) {
-                configContext.setProperty(WSSHandlerConstants.INFLOW_SECURITY, clientInflowConfiguration.getProperty());
-            }
-
-            serviceClient.engageModule(new QName("addressing"));
-            serviceClient.engageModule(new QName("rampart"));
-
-            serviceClient.setOptions(options);
-
-            //Blocking invocation
-
-            OMElement result = serviceClient.sendReceive(getRequest());
-
-            this.validateRsponse(result);
-        } catch (Exception e) {
-            e.printStackTrace();
-            fail(e.getMessage());
+    public void testRequest() throws Exception {
+        // Get the repository location from the args
+        String repo = Constants.TESTING_PATH + "rahas_client_repo";
+
+        ConfigurationContext configContext = ConfigurationContextFactory.createConfigurationContextFromFileSystem(repo,
+                                                                                                                  null);
+        ServiceClient serviceClient = new ServiceClient(configContext, null);
+        Options options = new Options();
+
+        System.setProperty("javax.net.ssl.keyStorePassword", "password");
+        System.setProperty("javax.net.ssl.keyStoreType", "JKS");
+        System.setProperty("javax.net.ssl.trustStore", "/home/ruchith/Desktop/interop/certs/interop2.jks");
+        System.setProperty("javax.net.ssl.trustStorePassword", "password");
+        System.setProperty("javax.net.ssl.trustStoreType","JKS");
+
+        options.setTo(new EndpointReference("http://127.0.0.1:" + port + "/axis2/services/SecureService"));
+//        options.setTo(new EndpointReference("http://127.0.0.1:" + 9090 + "/axis2/services/UTSAMLHoK"));
+//        options.setTo(new EndpointReference("https://www-lk.wso2.com:8443/axis2/services/UTSAMLHoK"));
+//        options.setTo(new EndpointReference("https://192.18.49.133:2343/jaxws-s1-sts/sts"));
+//        options.setTo(new EndpointReference("https://207.200.37.116/SxSts/Scenario_1_IssuedTokenOverTransport_UsernameOverTransport"));
+//        options.setTo(new EndpointReference("http://localhost:9090/SxSts/Scenario_4_IssuedToken_MutualCertificate10"));
+
+//        options.setTo(new EndpointReference("http://127.0.0.1:" + 9090 + "/axis2/services/MutualCertsSAMLHoK"));
+//        options.setTo(new EndpointReference("http://www-lk.wso2.com:8888/axis2/services/MutualCertsSAMLHoK"));
+//        options.setTo(new EndpointReference("https://131.107.72.15/trust/Addressing2004/UserName"));
+//        options.setTo(new EndpointReference("https://131.107.72.15/trust/UserName"));
+//        options.setTo(new EndpointReference("http://127.0.0.1:" + 9090 + "/trust/X509WSS10"));
+//        options.setTo(new EndpointReference("https://131.107.72.15/trust/UserName"));
+//        options.setTo(new EndpointReference("http://127.0.0.1:" + 9090 + "/jaxws-s4-sts/sts"));
+//        options.setTo(new EndpointReference("http://127.0.0.1:9090/jaxws-s4/simple"));
+//        options.setTo(new EndpointReference("http://127.0.0.1:" + 9090 + "/axis2/services/UTSAMLBearer"));
+
+        options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
+        options.setAction(this.getRequestAction());
+//        options.setProperty(AddressingConstants.WS_ADDRESSING_VERSION, this.getWSANamespace());
+
+        options.setTimeOutInMilliSeconds(200 * 1000);
+        OutflowConfiguration clientOutflowConfiguration = getClientOutflowConfiguration();
+        if (clientOutflowConfiguration != null) {
+            configContext.setProperty(WSSHandlerConstants.OUTFLOW_SECURITY, clientOutflowConfiguration.getProperty());
         }
+        InflowConfiguration clientInflowConfiguration = getClientInflowConfiguration();
+        if (clientInflowConfiguration != null) {
+            configContext.setProperty(WSSHandlerConstants.INFLOW_SECURITY, clientInflowConfiguration.getProperty());
+        }
+
+        serviceClient.engageModule(new QName("addressing"));
+        serviceClient.engageModule(new QName("rampart"));
+
+        serviceClient.setOptions(options);
+
+        //Blocking invocation
+
+        OMElement result = serviceClient.sendReceive(getRequest());
+
+        this.validateRsponse(result);
     }
 
     protected String getWSANamespace() {