I have the following in an ant build.xml
<target name="axis.deploy"> <java classname="org.apache.axis.client.AdminClient" fork="yes"> <arg line="-lhttp://localhost:8080/jboss-net/services/AdminService ${server.conf.deploy}"/> <arg line="-lhttp://localhost:8080/axis/services/AdminService ${server.conf.deploy}"/> <classpath refid="server.lib.classpath"/> </java> </target> It works fine for a tomcat deploy of axis (changing jboss-net to axis) The issue I am having that is I get a 404 because: HTTP ERROR: 404 /axis/services/AdminService Not Found Seems like JBoss.Net wants web services to be deployed in another way? Anyone know a good how to on this? Thanks!
