This is an automated email from the ASF dual-hosted git repository.
veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git
The following commit(s) were added to refs/heads/master by this push:
new 4ccf766a9f Fix package name of SimpleAxis2Server in axis2server scripts
4ccf766a9f is described below
commit 4ccf766a9f008af6e2368f8e6587e301ed9ee09e
Author: Andreas Veithen <[email protected]>
AuthorDate: Mon Apr 1 10:17:41 2024 +0000
Fix package name of SimpleAxis2Server in axis2server scripts
---
modules/tool/script/axis2server.bat | 2 +-
modules/tool/script/axis2server.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/tool/script/axis2server.bat
b/modules/tool/script/axis2server.bat
index aaa1a832d4..b05f0d2253 100644
--- a/modules/tool/script/axis2server.bat
+++ b/modules/tool/script/axis2server.bat
@@ -105,7 +105,7 @@ echo Using JAVA_HOME %JAVA_HOME%
echo Using AXIS2_HOME %AXIS2_HOME%
cd %AXIS2_HOME%
-"%_JAVACMD%" %JAVA_OPTS% -cp "!AXIS2_CLASS_PATH!"
org.apache.axis2.transport.SimpleAxis2Server %AXIS2_CMD_LINE_ARGS%
+"%_JAVACMD%" %JAVA_OPTS% -cp "!AXIS2_CLASS_PATH!"
org.apache.axis2.kernel.SimpleAxis2Server %AXIS2_CMD_LINE_ARGS%
goto end
:end
diff --git a/modules/tool/script/axis2server.sh
b/modules/tool/script/axis2server.sh
index fe6aee8486..7f6f020739 100755
--- a/modules/tool/script/axis2server.sh
+++ b/modules/tool/script/axis2server.sh
@@ -61,5 +61,5 @@ while [ $# -ge 1 ]; do
done
java $JAVA_OPTS -classpath "$AXIS2_CLASSPATH" \
- org.apache.axis2.transport.SimpleAxis2Server \
+ org.apache.axis2.kernel.SimpleAxis2Server \
-repo "$AXIS2_HOME"/repository -conf "$AXIS2_HOME"/conf/axis2.xml $*