Application NameCAS Authentication
PublisherJasig
Date Entered05/13/2011
Date Modified
webNetwork Version 6.0.5.0
Delivery MethodVirtual server
ConfigurationHost Object
-----------
Host Address : cas.example-cloud.com
Host Port : 443


Web Application Object
----------------------
Web App Type : https virtual
Virtual DNS Name : portalcas.example-cloud.com
Startup URL : /cas/login?service=https%3A%2F%2Fsomeserver.example-cloud.com%2Fsomepath
Logout URL : logout url for cas ystem
Rewrite Browser Cookies : True
Internal Servers Require SSL : yes

Single Sign On
--------------
Form Type : Client
Form Name : fm1
Form Trigger : /cas/login?service=https%3A%2F%2Fsomeserver.example-cloud.com%2Fsomepath
Form Action :
Script :
var f1=document.forms[0];
var f2=document.createElement('form');
f2.method=f1.method;
f2.action='//cas/login?service=https%3A%2F%2Fsomeserver.example-cloud.com%2Fsomepath&submit=LOG IN';
for(wni=0; wni < f1.elements.length; wni++ ) { var wne = f1.elements[wni];
if ( wne.name != 'submit' )
{ var wnnewe = document.createElement('input');
wnnewe.type='hidden';
wnnewe.name=wne.name;
wnnewe.value=wne.value;
f2.appendChild(wnnewe);
}}document.body.appendChild( f2 );
f2.submit();

Form Method : Post
Form Inputs :
password : password-attribute
username : username-attribute
 
Notes

These instructions are very generic as each CAS system can be configured slightly different.