Hello everybody
I have an ant task that starts the "standalone" axis2 server:
<target name="start.server" >
<java classname="org.apache.axis2.transport.http.SimpleHTTPServer"
fork="true">
<classpath refid="axis2.class.path"/>
</java>
</target>
I run this task from eclipse. The problem is that pressing the "red button"
on the console doesn't really stop the service (I think this is because of
the 'fork' option), so if I execute this task 5 times, I have 5 different
processes running!!
Is there a way to STOP the standalone axis server from an ant task OR
inovking an URL?
Thanks
Lorenzo