W-Systems Corp.

FAQ ID # 73
Last Update : 2008/06/03
Rating : Not Rated
Send FAQ by E-mail
Add to favorites
Print this FAQ

Social Bookmark this Article :


Question / Issue
Configure wMobile activation from behind a proxy server

Answer / Solution

In order to activate wMobile when running behind a proxy server  you need to add some new settings in wMobile.ManagerConsole.exe.config.

These settings are described bellow:

  • UseProxyServer - Should be True.
  • ProxyServer.Address - Is the IP address or hostname for the proxy server.
  • ProxyServer.Port - Is the HTTP port  used by proxy server. Usually it is set to 80.
  • ProxyServer.User - Is the user name, in case your proxy server requires authentication.
  • ProxyServer.Password - Is the password for the above user name.

Note: If your proxy server does not require authentication just remove the settings for ProxyServer.User and ProxyServer.Password or set ProxyServer.User to empty string.

 

Sample 1. Proxy Server Configuration with credentials

<add key="UseProxyServer" value="True"/>
<add key="ProxyServer.Address" value="192.168.0.1"/>
<add key="ProxyServer.Port" value="80"/>
<add key="ProxyServer.User" value="jim"/>
<add key="ProxyServer.Password" value="access"/>

Sample 2. Proxy Server Configuration without credentials

<add key="UseProxyServer" value="True"/>
<add key="ProxyServer.Address" value="192.168.0.1"/>
<add key="ProxyServer.Port" value="80"/>



Direct Link to This FAQ
http://faq.w-systems.com/afmviewfaq.aspx?faqid=73

Tags
How would you rate this article?

Poor
1
2
3
4
5

Great
Submit

Back to Top