
Technical Notes |
|
This technical note describes how to embed multiple Reflection for the Web sessions in one browser session.
Follow these steps to embed multiple Reflection sessions in one browser session.
https://<your server>:<HTTPS port number>/<management server context>/AdminStart.htmlFor example, if the server is www.ourcompany.com and the management server context is rweb (the default), the URL is:
https://www.ourcompany.com:843/rweb/AdminStart.htmlAlternately, you may be able to access the links list page by clicking Start > Programs > Reflection for the Web > Administrative WebStation.
Note: You can create a new terminal session to embed with an existing session. First, create the new session so it appears on the Links List.
If the name of the terminal session contains any spaces or special characters, right-click the session's link and select "Copy URL to clipboard." This action embeds the link name in the URL listed in the Address field with the HTML indicators that denote spaces or special characters. Paste the URL into a text editor and make a note of the link name, including the special characters.
For example, a session link titled "Sales Data" is represented by red text in the following URL:
https://www.mycompany.com:843/rweb/RWebSession.do?link=Sales*u0020Data&rwebgroup=adminIn the following sample, [session name] is the link name you noted in step 4.
Note: This sample uses the default application context of "rweb." If you are not using the default context, edit the code to match your environment.
<!-- -------------------------------------------------------- --><HTML> <HEAD> <TITLE>Example: How to position two Reflection for the Web sessions on one Web page. </TITLE> </HEAD> <BODY> <H3>Example: How to position two Reflection for the Web sessions on one Web page. </H3> <IFRAME NAME ="rwebiframe1" src="RWebSession.do?link=[session name1]&portal=true&appletOnly=true" frameborder=0 scrolling=no height=340 width=530> </IFRAME> <IFRAME NAME ="rwebiframe2" src="RWebSession.do?link=[session name2]&portal=true&appletOnly=true" frameborder=0 scrolling=no height=340 width=530> </IFRAME> <BR> <BR> <HR> </BODY></HTML><!-- -------------------------------------------------------- --> |
C:\ProgramData\Attachmate\ReflectionServer\ReflectionData\deployC:\Documents and Settings\All Users\Application Data\Attachmate\ReflectionServer\ReflectionData\deployC:\Program Files\ReflectionServer\ReflectionData\deploy/opt/attachmate/reflectionserver/reflectiondata/deployReview the following code to see a finished example.
<!-- -------------------------------------------------------- --><HTML> <HEAD> <TITLE>Example: How to position two Reflection for the Web sessions on one Web page. </TITLE> </HEAD> <BODY> <H3>Example: How to position two Reflection for the Web sessions on one Web page. </H3> <IFRAME NAME ="rwebiframe1" src="RWebSession.do?link=Sales*u0020Data&portal=true&appletOnly=true" frameborder=0 scrolling=no height=340 width=530> </IFRAME> <IFRAME NAME ="rwebiframe2" src="RWebSession.do?link=Sales*u0020Data&portal=true&appletOnly=true" frameborder=0 scrolling=no height=340 width=530> </IFRAME> <BR> <BR> <HR> </BODY></HTML><!-- -------------------------------------------------------- --> |