You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2008/03/08 16:23:55 UTC

svn commit: r634990 - in /webservices/axis2/trunk/java/modules: documentation/xdocs/@axis2_version_dir@/soapmonitor-module.xml soapmonitor/src/org/apache/axis2/soapmonitor/servlet/SOAPMonitorService.java

Author: dims
Date: Sat Mar  8 07:23:55 2008
New Revision: 634990

URL: http://svn.apache.org/viewvc?rev=634990&view=rev
Log:
Fix for AXIS2-3427 - SOAPMonitorApplet/SOAPMonitorService broken

Modified:
    webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/soapmonitor-module.xml
    webservices/axis2/trunk/java/modules/soapmonitor/src/org/apache/axis2/soapmonitor/servlet/SOAPMonitorService.java

Modified: webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/soapmonitor-module.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/documentation/xdocs/%40axis2_version_dir%40/soapmonitor-module.xml?rev=634990&r1=634989&r2=634990&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/soapmonitor-module.xml (original)
+++ webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/soapmonitor-module.xml Sat Mar  8 07:23:55 2008
@@ -16,7 +16,7 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
   "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
 <html>
 <head>
@@ -139,7 +139,7 @@
 &lt;CATALINA_HOME&gt;/webapps/axis2/) of the extracted WAR file. You can find
 the SOAPMonitorApplet.java in the source distribution. To compile, use the
 following command:</p>
-<pre>javac -classpath axis2-soapmonitor.jar SOAPMonitorApplet.java</pre>
+<pre>javac -classpath axis2-soapmonitor.jar org/apache/axis2/soapmonitor/applet/SOAPMonitorApplet.java</pre>
 
 <p>Alternatively, you can directly get the <strong>compiled applet
 classes</strong> from the WEB-INF/lib/soapmonitor-1.3.jar which is inside

Modified: webservices/axis2/trunk/java/modules/soapmonitor/src/org/apache/axis2/soapmonitor/servlet/SOAPMonitorService.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/soapmonitor/src/org/apache/axis2/soapmonitor/servlet/SOAPMonitorService.java?rev=634990&r1=634989&r2=634990&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/soapmonitor/src/org/apache/axis2/soapmonitor/servlet/SOAPMonitorService.java (original)
+++ webservices/axis2/trunk/java/modules/soapmonitor/src/org/apache/axis2/soapmonitor/servlet/SOAPMonitorService.java Sat Mar  8 07:23:55 2008
@@ -164,12 +164,12 @@
    response.getWriter().println("</head>");
    response.getWriter().println("<body>");
    response.getWriter().println("<object classid=\"clsid:8AD9C840-044E-11D1-B3E9-00805F499D93\" width=100% height=100% codebase=\"http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0\">");
-   response.getWriter().println("<param name=code value=SOAPMonitorApplet.class>");
+   response.getWriter().println("<param name=code value=org.apache.axis2.soapmonitor.applet.SOAPMonitorApplet.class>");
    response.getWriter().println("<param name=\"type\" value=\"application/x-java-applet;version=1.3\">");
    response.getWriter().println("<param name=\"scriptable\" value=\"false\">");
    response.getWriter().println("<param name=\"port\" value=\""+port+"\">");
    response.getWriter().println("<comment>");
-   response.getWriter().println("<embed type=\"application/x-java-applet;version=1.3\" code=SOAPMonitorApplet.class width=100% height=100% port=\""+port+"\" scriptable=false pluginspage=\"http://java.sun.com/products/plugin/1.3/plugin-install.html\">"); 
+   response.getWriter().println("<embed type=\"application/x-java-applet;version=1.3\" code=org.apache.axis2.soapmonitor.applet.SOAPMonitorApplet.class width=100% height=100% port=\""+port+"\" scriptable=false pluginspage=\"http://java.sun.com/products/plugin/1.3/plugin-install.html\">"); 
    response.getWriter().println("<noembed>"); 
    response.getWriter().println("</comment>"); 
    response.getWriter().println("</noembed>"); 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org