This is the JVNetExtension.dll that will be installed on the ASP .NET server that will intercept messages from the Web Service.
To install the dll, please do the following.
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 set other properties here.
<appSettings>
<add key="hubbleURL"
value="http://<JAXVIEW_SERVER>:9090"
/>
</appSettings>
For 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>