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.
SIP Server automatic refresh
Moderator: Brekeke Support Team
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.
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.
-
- Posts: 528
- Joined: Tue Sep 20, 2005 9:10 am
- Location: Tannersville, Pennsylvania
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
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