This stub needs to be installed on a the Sun Enterprise server container.
1. The jar file mm_stub.jar is the Managed Methods jar file that needs to be installed as a Handler for the Web service to be managed.
2. Place the mm_stub.jar file from this zip package into the application class path. This could be done by installing the jar files in the /web-inf/lib directory.
3. Locate the jaxrpc-ri.xml file in the web-inf/webservices.xml file.
4. Insert the following in the webservices.xml file after <endpoint>
<handlerChains>
<chain runAt="server">
<handler
className="com.hubble.clientservice.MessageHandlerJaxRpc">
<property name="hubbleURL"
value="http://<managementServer>:9090"/>
</handler>
</chain>
</handlerChains>
Note: you need to replace <managementServer> with the ip address or domain address of the machine that the JaxView management server was installed on. If this is the Tomcat installation shipped with JaxView then use LocalHost. For more information on how to install Handler Chains on Tomcat please visit Sun Tutorial
other parameter for the proxy server authentication are
<property name="ProxyUsername" value="username"/>
<property name="ProxyPassword" value="password"/>
<param-name>ProxyPassword</param-name>
<param-value>password</param-value>
At this time you need to re-start the app server for the changes to take place.