1.5 NoojeeClick Configuration

Configuration of NoojeeClick

The file /var/lib/tomcat6/webapps/noojeeclick/WEB-INF/web.xml is used to configure some basic setttings for NoojeeClick for Ajax, such as the Asterisk server and the Manager account/password used to generate calls.

For example, the following section needs to point to your Asterisk server and contain a valid (and prefereably unique) Asterisk manager account and password:

       <init-param>
            <param-name>AsteriskHost</param-name>
            <param-value>192.168.1.1</param-value>
        </init-param>
        <init-param>
            <param-name>AsteriskPort</param-name>
            <param-value>5038</param-value>
        </init-param>
        <init-param>
            <param-name>AsteriskUser</param-name>
            <param-value>click</param-value>
        </init-param>
        <init-param>
            <param-name>AsteriskSecret</param-name>
            <param-value>parsewurd</param-value>
        </init-param>

ert