Pandion will not re-connect when Network or VPN comes up
When my VPN connection goes down, Pandion gets disconnected. When it comes back, Pandion did not re-connect. I always need to remember and manualy re-connect it.
Also on log in, VPN is not active and Pandion will be disconnted. On enabling VPN, I need to re-connect it else it will remain disconnected. Any pointers to fix this?
Also on log in, VPN is not active and Pandion will be disconnted. On enabling VPN, I need to re-connect it else it will remain disconnected. Any pointers to fix this?
1
person has this question
I have this question, too!
Tell me when someone answers.
The more people who ask this question, the more it gets noticed.
The more people who ask this question, the more it gets noticed.
Create a customer community for your own organization
Plans starting at $19/month
-
Inappropriate?Once Pandion successfully connects and later gets disconnected it should keep re-trying automatically. Are you seeing any kind of "authentication failed" message? That could cause Pandion to fall back to the Sign In window and stop retrying.
-
Inappropriate?What Jabber server are you running? If it's OpenFire (formerly Wildfire) Pandion will not reconnect if there was an error. You can fix this by altering the code
FROM: http://forums.pandion.be/viewtopic.ph...
in file XMPPOnStream.js find near line 300
Code:
else if ( ReceivedXML.documentElement.selectSingleNode( '/stream:error' ) )
{
if ( external.windows.Exists( 'signup' ) )
OnLoginAbort();
else
{
external.globals( 'XMPPReconnect' ) = false;
replace with
Code:
else if ( ReceivedXML.documentElement.selectSingleNode( '/stream:error' ) )
{
if ( external.windows.Exists( 'signup' ) )
OnLoginAbort();
else
{
if ( ReceivedXML.documentElement.selectSingleNode( '/stream:error/system-shutdown' ) )
external.globals( 'XMPPReconnect' ) = true;
else
external.globals( 'XMPPReconnect' ) = false;
Loading Profile...




EMPLOYEE
