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 di...@apache.org on 2006/04/14 22:48:47 UTC

svn commit: r394196 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/jms/SimpleJMSListener.java

Author: dims
Date: Fri Apr 14 13:48:44 2006
New Revision: 394196

URL: http://svn.apache.org/viewcvs?rev=394196&view=rev
Log:
Fix for AXIS2-568 - DeploymentEngine doesn't understand conf directory

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/jms/SimpleJMSListener.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/jms/SimpleJMSListener.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/jms/SimpleJMSListener.java?rev=394196&r1=394195&r2=394196&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/jms/SimpleJMSListener.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/jms/SimpleJMSListener.java Fri Apr 14 13:48:44 2006
@@ -75,9 +75,8 @@
         //TODO : modify this constructor to take locatiom of axis2.xml
         File repo = new File(repositoryDirectory);
         if (repo.exists()) {
-            File axis2xml = new File(repo, "axis2.xml");
             this.configurationContext = ConfigurationContextFactory.createConfigurationContextFromFileSystem(
-                    repositoryDirectory, axis2xml.getName());
+                    repositoryDirectory, null);
         } else {
             throw new Exception("repository not found");
         }