| How do I configure Call Services to use a proxy for Internet access? |
| Categories: Audium Call Services 3.6 |
| Article ID: | 315 |
| Last updated: | June 28, 2007 |
| User Opinions |
|
No users have voted.
|
|
Thank you for rating this answer.
|
SUMMARY
This article explains how to configure Call Services to access the Internet via a proxy.
SYMPTOMS
Automatic activation fails with the message: There is no connection to the server. Please try again later.
RESOLUTION
Your application server needs to be set up to use proxy settings to access the Internet. Proxy settings are passed to JVM as additional properties using the following format:
-Dhttp.proxyHost=PROXY_HOST -Dhttp.proxyPort=PROXY_PORT
where PROXY_HOST and PROXY_PORT are proxy host and port settings repectively.
If you use Tomcat, edit the catalina.bat (Windows) or catalina.sh (Linux/AIX) and add the following entry just after the block of lines starting with rem:
set JAVA_OPTS=%JAVA_OPTS% -Dhttp.proxyHost=PROXY_HOST -Dhttp.proxyPort=PROXY_PORT
If you do not use Tomcat, please refer to your application how to configure the JAVA_OPTS parameters.
NOTE: If you start Tomcat as a service, you have to edit the registry entries to add the proxy settings.
- Open the registry editor, by choosing Start->Run ... and typing regedit
- Navigate to the registry entry with your Tomcat. It might be HKLM\Software\Apache Software Foundation\ however it depneds on the version of Tomcat installed.
- Edit the Options registry key and add -Dhttp.proxyHost=PROXY_HOST -Dhttp.proxyPort=PROXY_PORT settings.
- Stop and start the service
|
| Visitor Comments |
|
No visitor comments posted. Post a comment
|
| Related Questions |
|
No related questions were found.
|
| Attachments |
|
No attachments were found.
|