Web based SIP Phone

rshafer0

New Member
Joined
Jul 14, 2008
Messages
24
Reaction score
0
Is anyone familiar with a SIP phone that is web based. A site that I could log into from anywhere and get connected to asterisk? I need this because company firewall blocks SIP.
 
Hi

You could look at the Zoiper web based phone.

the demo appears to work with any IAX account by copying this bit of code supplied by them into a handy web server

http://www.zoiper.com/activex.php

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>ZOIPER WEB DEMO</title>
</head>

<body>
            <object 
                ID="Zoiper" 
                TYPE="application/x-itst-activex"
                CLASSID="clsid:9CE5FBF9-6373-413C-91A9-0245BD8F557E" 
                CODEBASE="http://www.zoiper.com/ActiveZoiper.cab#Version=2,0,20,63"
                ALIGN="CENTER" WIDTH='434' HEIGHT='236' NAME="Zoiper"> 
            </object>  
   
        <script type="text/javascript"> 
       <!-- 
       function SetAccount() 
       { 
           var Account = document.Zoiper.AccountNew("TestAccount", 0);
           [B]Account.Context = "62.213.196.38";
           Account.Username = "activex1";
           Account.Password = "Bugryik7";
           Account.CallerID = "activexTest";
           document.Zoiper.SelectedAccount = "TestAccount";[/B]
       } 
       function DeleteAccount() 
       { 
            document.Zoiper.AccountDelete("activex");       
       }   
       window.onload = SetAccount(); 
       //--> 
       </script> 

</body>
</html>
Alter the bits in bold to suit your system. I've not done the research and testing for security however, I just see it as an interesting solution, waiting for a problem.

If placed in the /var/www/html/maint/ directory, then it will be covered by the PiaF apache directory security.

Joe
 
Last edited by a moderator:

Members online

No members online now.

Forum statistics

Threads
26,688
Messages
174,412
Members
20,259
Latest member
Fadeek86
Get 3CX - Absolutely Free!

Link up your team and customers Phone System Live Chat Video Conferencing

Hosted or Self-managed. Up to 10 users free forever. No credit card. Try risk free.

3CX
A 3CX Account with that email already exists. You will be redirected to the Customer Portal to sign in or reset your password if you've forgotten it.
Back
Top