.NET Extension Stub Installation


About the JaxView .NET Extension Stub

JaxView includes a stub for use in monitoring messages from .NET servers. The file JVNetExtension.dll can be installed on the ASP .NET server. When configured, this will intercept messages from the Web Service and forward copies to JaxView.

Installation Instructions

Use the following steps to install the JaxView agent stub on .NET servers.

To install the DLL on .NET servers:

  1. Locate the Web.config file for the Web service.
  2. Insert the following under <system.web> tag:

    <webServices>
       <soapExtensionTypes>
          <add type="JVNetExtension.NetExtension,JVNetExtension"
           priority="1"
           group="0"/>
       </soapExtensionTypes>
     </webServices>
    

  3. Insert the following under <configuration> tag where <JAXVIEW_SERVER>is the IP address of the JaxView server. You can also set other properties here.

    <appSettings>
       <add key="hubbleURL" value="http://<JAXVIEW_SERVER>:9090"/>
    </appSettings>
    

  4. To enable remote configuration of a .NET stub add the following to the Web.config file under <system.web> tag

    <httpHandlers>
       <add verb="*" path="StubHandler.aspx" type="JVNetExtension.StubHandler, JVNetExtension" />
    </httpHandlers>