SIP Server automatic refresh

Discuss any topic about Brekeke SIP Server.

Moderator: Brekeke Support Team

Post Reply
noiptel
Posts: 68
Joined: Mon Feb 22, 2010 9:24 pm
Location: USA

SIP Server automatic refresh

Post by noiptel »

1. Brekeke Product Name and version: Version 2.4.3.9 Advanced

2. Java version:

3. OS type and the version:

4. UA (phone), gateway or other hardware/software involved:

5. Select your network pattern from http://www.brekeke-sip.com/bbs/network/ ... terns.html :

6. Your problem:
Is there a way to have the "Active Sessions" page "Refresh" every 10 seconds?

Is there a way to extend the "Login Session Timeout" or remove it?

Thanks.
taitan
Posts: 237
Joined: Sat Mar 15, 2008 10:39 pm

Post by taitan »

Are you using Windows? Execute the following in the command line.

java -cp "C:\Program Files\Brekeke\proxy\webapps\proxy\WEB-INF\lib\ondosip.jar" svctl localhost sessionlist




> Is there a way to extend the "Login Session Timeout" or remove it?

open "WEB-INF/web.xml " file and update the <session-timeout> value.
noiptel
Posts: 68
Joined: Mon Feb 22, 2010 9:24 pm
Location: USA

Post by noiptel »

Thank you, we were able to change the session timeout.


How can we configure automatic refresh for the "Active Session" page? We would like for for page to automatically refresh every 10 seconds.
taitan
Posts: 237
Joined: Sat Mar 15, 2008 10:39 pm

Post by taitan »

search "auto mouse clicker" on Google.
there are several tools.
voipwell.com
Posts: 528
Joined: Tue Sep 20, 2005 9:10 am
Location: Tannersville, Pennsylvania

Post by voipwell.com »

You can use internet explorer with the following script in windows to refresh your screen every 10 seconds.

Just create a text file called MonitorSessions.vbs and paste the code below into it after putting your servers ip address in to the http path.

Save the file and execute it and it will refresh every 10 seconds.

On Error Resume Next

Set objExplorer = CreateObject("InternetExplorer.Application")

objExplorer.Navigate "http://YourPBXIPAddressGoesHere:28080/p ... &act=false"
objExplorer.Visible = 1

Wscript.Sleep 5000

Set objDoc = objExplorer.Document

Do While True
Wscript.Sleep 10000
objDoc.Location.Reload(True)
If Err <> 0 Then
Wscript.Quit
End If
Loop
taitan
Posts: 237
Joined: Sat Mar 15, 2008 10:39 pm

Post by taitan »

it is coool!
Post Reply