You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by he...@apache.org on 2005/07/04 11:01:58 UTC

svn commit: r209037 - /webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/SimpleHTTPServer.java

Author: hemapani
Date: Mon Jul  4 02:01:57 2005
New Revision: 209037

URL: http://svn.apache.org/viewcvs?rev=209037&view=rev
Log:
fix the message printing on simple HTTP server

Modified:
    webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/SimpleHTTPServer.java

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/SimpleHTTPServer.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/SimpleHTTPServer.java?rev=209037&r1=209036&r2=209037&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/SimpleHTTPServer.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/SimpleHTTPServer.java Mon Jul  4 02:01:57 2005
@@ -239,8 +239,8 @@
         Thread thread = new Thread(reciver);
         thread.setDaemon(true);
         try {
-            System.out.println("[Axis2] Using the Repository " + new File(args[1]).getAbsolutePath());
-            System.out.println("[Axis2] Starting the SimpleHTTPServer on port "+ args[0]);
+            System.out.println("[Axis2] Using the Repository " + new File(args[0]).getAbsolutePath());
+            System.out.println("[Axis2] Starting the SimpleHTTPServer on port "+ args[1]);
             thread.start();
              System.out.println("[Axis2] SimpleHTTPServer started");
             System.in.read();