Skip to main content
Participant
March 20, 2008
Question

Adobe Connect Redirect

  • March 20, 2008
  • 1 reply
  • 1265 views
I am looking for help on redirecting the login page to another page that does SSO for us. I have the documentation from Breeze on how to do this but it is not very clear and when attempted my Adobe Connect Server doesn't work. If anybody can help me that would be great.

Here is the documentation for reference http://kb.adobe.com/selfservice/viewContent.do?externalId=9eb26121
    This topic has been closed for replies.

    1 reply

    Participant
    April 24, 2014

    The instructions on that page are not quite complete:

    1) The init function is run when the page is loaded.  Find the "function init()" in the root:\Breeze\appserv\apps\system\login.xsl file.  Comment out the contents of the init() function (comment out the area between the curly brackets).  Hopefully, you are familiar with javascript and know that // comments out everything that follows for a given line of code, and  /* and */ comments out everything in between the /* and */.  Also, <!-- and --> is used to comment lines out from the HTML parser.

    function init() { 

    /*  if(top != self) top.location.href=self.location.href;

            ...

    */

    }

    2) Next, add the code to redirect to your custom page:

    function init() {

    window.location.href="Url_To_YOUR_RedirectPage";

    /*  if(top != self) top.location.href=self.location.href;

      ...

    */

    }

    3) Once you've changed the code, you will have to restart the Adobe Acrobat Connect Pro Service for the changes to take effect.