Novell Storage Manager™

http://www.storagemgr.com/support/troubleshooting/nsmadmin-internetproxies.php

Internet Explorer Proxy Bypass


Last modified:  2009-Jan-25

product(s) affected
Novell Storage Manager, eDirectory Platform
Novell Storage Manager, Active Directory Platform

symptom
NSMAdmin cannot communicate with engine.
Getting error message of "Attempt to communicate with the NSM engine failed" when trying to log in via NSMAdmin.

cause
Applications written using Microsoft .NET will always use the proxy settings for Internet Explorer from the user's profile. NSMAdmin is written in .NET, so it will try to use these proxy settings. Unfortunately, any bypass list that has been setup for Internet Explorer's proxy configuration is completely ignored by these same .NET applications.

fix
Create a text file called NSMAdmin.exe.config and place it in the same directory as your NSMAdmin.exe file to bypass your IE Internet proxy settings for this one application. The text file needs the following contents, and can be created using NotePad.exe or your favorite text editor:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.net>
    <defaultProxy>
      <bypasslist>
        <add address="[a-zA-Z0-9]+\.novell\.com" />
        <add address="192\.168\.100\..*" />
      </bypasslist>
    </defaultProxy>
  </system.net>
</configuration>

Please change the Novell domain name and IP Address sections to match your environment.