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 Bill Grubbs <bg...@wamnet.com> on 2002/10/03 18:36:54 UTC

Axis 1.0rc2 soapmonitor

According to the axis bug page (http://xml.apache.org/axis/bugs.html) this
should be the axis-user mail group, but I don't think so...

I'll try anyway.  The SOAPMonitor applet has just the .java and not the
.class file in the distribution directories as part of the installation.  Is
this a bug?  How do I get it built/installed so it will work.  I am
interested in seeing what it will do.

Thanks


----------------------------
Bill Grubbs
Consulting Software Engineer
Wam!Net
bgrubbs@wamnet.com
(248) 375-5896


Re: Axis 1.0rc2 soapmonitor

Posted by Brian Price <pr...@us.ibm.com>.
The logic to compile the SOAPMonitorApplet is provided as part of the 
source when you specify the war file as the ANT target.  If you are using 
the distribution (instead of the source) then you will need to compile the 
applet and put it in your webapp.  To compile the applet, just use the 
javac command (part of the Java 2 SDK) and be sure that the axis.jar from 
the distrubution is in the classpath. 

Example:

javac -classpath ../../lib/axis.jar SOAPMonitorApplet.

Note that there are several class files (8 of them) that need to be put in 
your webapp.

Brian Price