Sandro Galletti | Hi to all, i'm writing to you to know if there are any options, to do an auto login to the webdialer http page, using Javascript or Html. I have used the sample below, but i don't find where i can put username and password for auto login. It is possible to do? Thx
<pre>function launchWebDialerWindow( url ) { </pre>
<a name="wp1055311"></a>
<pre> webdialer=window.open( url, "webdialer", "status=no, width=420, height=300, scrollbars=no, resizable=yes, toolbar=no" ); </pre>
<a name="wp1055312"></a>
<pre> } </pre>
<pre class="pPreformatted"><a name="wp1055313"></a> </pre>
<a name="wp1055314"></a>
<pre> function launchWebDialerServlet( destination ) { </pre>
<a name="wp1055315"></a>
<pre> url= 'https://<%=server_name%>/webdialer/Redirector?destination='+escape(destination); </pre>
<a name="wp1055316"></a>
<pre> launchWebDialerWindow( url ); </pre>
<a name="wp1055317"></a>
<pre> } </pre>
<a name="wp1055318"></a>
<pre><em class="cEmphasis">!These functions can be called from the HTML page which has a hyperlink to the phone number to be called. An example of it is </pre>
<a name="wp1055319"></a>
<pre><em class="cEmphasis"><TD><A href="javascript:launchWebDialerServlet( <%= userInfo.TelephoneNumber %> )"><%= userInfo.TelephoneNumber %></A></TD> </pre>
|