DeploymentEngine doesn't understand conf directory
--------------------------------------------------
Key: AXIS2-568
URL: http://issues.apache.org/jira/browse/AXIS2-568
Project: Apache Axis 2.0 (Axis2)
Type: Bug
Components: core
Versions: 0.95
Reporter: rnell
In class DeploymentEngine
Some of the code appears to look in the conf directory for the axis2.xml file.
line100: File axis2conf = new File(axisRepo, "conf")
while another branch of the code ignores it:
line 548: in = new FileInputStream(axis2_xml_file_name);
where axis2_xml_file_name is "axis2.xml" , but should be:
in = new FileInputStream( new File( axis2repository + File.separatorChar +
DIRECTORY_CONF, axis2_xml_file_name) );
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira