diff options
Diffstat (limited to 'java/coldfusion/web')
| -rw-r--r-- | java/coldfusion/web/login.cfm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/java/coldfusion/web/login.cfm b/java/coldfusion/web/login.cfm new file mode 100644 index 00000000..7032c9d7 --- /dev/null +++ b/java/coldfusion/web/login.cfm @@ -0,0 +1,17 @@ +<html> + <head> + <title>Lasso</title> + </head> + <body> + <h1>Lasso</h1> +<!-- + <cfobject type="java" name="sys" class="java.lang.System" action="create"> + <cfset properties=sys.getProperties()> + <cfdump var="#properties#"> +--> + <cfobject action="create" type="Java" class="CFLasso" name="lasso"> + <cfset lasso.init()> + <cfset ssoUrl=lasso.login("important string")> + <cfoutput>Identity provider single sing-on URL to redirect to = #ssoUrl#</cfoutput> + </body> +</html> |
