[Contents] [Prev] [Next] [Index] [Report an Error]

Launching JUNOScope Operations in a Frame

You can launch JUNOScope operations in a frame in the current window by using the following sample code:

<a href="#"  onclick="openInFrame('ui/index/looking-glass')">Looking-glass</a>
               <script language="JavaScript" type="text/javascript">
                   var JUNOScopeLink = 
"https://<JUNOScope Server>:<Port>/jtk/noauth-auth?username=<username>&password=<password>&redirectLoc="
                   function openInFrame( link ) {
                      parent.right.location = JUNOScopeLink + link;                 
                      // replace "right" with the frame name         
                       return false;
                     }                  
        </script>

Note: You cannot launch the Configuration> Current >Edit operation in a frame.

Note: When JUNOScope is launched for the first time, a session is created. Subsequent launches of JUNOScope operations using the URL interface do not require the username and password in the URL until the session expires. However, if you wish to log in using a different user profile, then you will have to log out first. Otherwise, the current login ID and user session are used. Use the following link to logout: https://hostname:port-number/jtk/logout


[Contents] [Prev] [Next] [Index] [Report an Error]