You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ba...@apache.org on 2007/02/17 17:25:02 UTC

svn commit: r508775 - in /webservices/axis2/trunk/java/modules/jaxws: src/org/apache/axis2/jaxws/utility/SimpleServer.java test/org/apache/axis2/jaxws/utility/ test/org/apache/axis2/jaxws/utility/SimpleServer.java

Author: barrettj
Date: Sat Feb 17 08:25:02 2007
New Revision: 508775

URL: http://svn.apache.org/viewvc?view=rev&rev=508775
Log:
AXIS2-2208
Move test server from "src" to "test" directory.

Added:
    webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/utility/
    webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/utility/SimpleServer.java
Removed:
    webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/utility/SimpleServer.java

Added: webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/utility/SimpleServer.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/utility/SimpleServer.java?view=auto&rev=508775
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/utility/SimpleServer.java (added)
+++ webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/utility/SimpleServer.java Sat Feb 17 08:25:02 2007
@@ -0,0 +1,78 @@
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ * Copyright 2006 International Business Machines Corp.
+ *
+ * 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.
+ */
+
+package org.apache.axis2.jaxws.utility;
+
+import org.apache.axis2.AxisFault;
+import org.apache.axis2.context.ConfigurationContext;
+import org.apache.axis2.context.ConfigurationContextFactory;
+import org.apache.axis2.transport.http.SimpleHTTPServer;
+import org.apache.log4j.BasicConfigurator;
+
+
+
+public class SimpleServer {
+
+    private static SimpleHTTPServer server;
+    private String repositoryDir;
+    private int port = 8080;
+    
+    public void init() {
+        repositoryDir = System.getProperty("basedir",".")+"/"+System.getProperty("build.repository");
+        System.out.println(">> repositoryDir = " + repositoryDir);
+        
+        String axis2xml = System.getProperty("axis2.config");
+        System.out.println(">> axis2.xml     = " + axis2xml);
+        
+        try {
+            ConfigurationContext config = ConfigurationContextFactory.createConfigurationContextFromFileSystem(
+                    repositoryDir, axis2xml);
+            server = new SimpleHTTPServer(config, port);
+        } catch (AxisFault e) {
+            e.printStackTrace();
+        }
+    }
+    
+    public void start() {
+        System.out.println("------------ starting server ---------------");
+        init();
+        if (server != null) {
+            try {
+                server.start();
+            } catch (AxisFault e) {
+                e.printStackTrace();
+            }
+        }
+        System.out.println("------------------ done --------------------");
+    }
+    
+    public void stop() {
+        System.out.println("------------ stopping server ---------------");
+        if (server != null) {
+            server.stop();
+        }
+        System.out.println("------------------ done --------------------");
+    }
+    
+    public static void main(String[] args) throws Exception {
+        // To change the settings, edit the log4j.property file
+        // in the test-resources directory.
+        BasicConfigurator.configure();
+        SimpleServer server = new SimpleServer();
+        server.start();
+    }
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org