Application NameVSchoolz
PublisherVSchoolz
Date Entered07/31/2013
Date Modified
webNetwork Version 6.1.1.126
Delivery MethodVirtual server
ConfigurationHost Object
-----------
Host Address : YourVSchoolzDNS
Host Port : 80


Web Application Object
----------------------
Web App Type : HTTP(S) Virtual Server
Virtual DNS Name : vschoolz.example-cloud.com
Startup URL : /?portal=y
Rewrite Browser Cookies : Enable
Host Authority : Disabled

Single Sign On
--------------
Form Type : Client
Form Trigger : /\?portal=y

Script :

var div = document.getElementById( "mainContainer" );
var inputs = div.getElementsByTagName( "input" );
inputs[0].value = "YOURUSERNAME";
inputs[1].value = "YOURPASSWORD";

var spans = div.getElementsByTagName( "span" );
for( wni = 0; wni < spans.length; wni++ ) {
if ( spans[wni].innerHTML ) {
if ( spans[wni].innerHTML == "Login" ) {
spans[wni].click();
}
}
}

Error Trigger : /Account/LogOff
Error Page : /util/closeDojoWindow.html

Form Method : Post
 
Notes

The publisher seems to have done all they can to prevent form fillers from automatically filling in the credentials, therefore we have to do everything with Javascript.