This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb65385
commit b659494
Showing
1 changed file
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
# cas-openid-client | ||
OpenID client to test Jasig CAS openid implementation | ||
|
||
This application was built to test Jasig CAS OpenId implementatio, specifically the Stateless mode. | ||
To test it: | ||
This application was built to test CAS OpenId implementation, specifically the Stateless mode. | ||
|
||
#build it | ||
maven clean package | ||
#start the client | ||
# Build | ||
|
||
``` | ||
mvn clean package | ||
``` | ||
|
||
# Run | ||
|
||
``` | ||
java -jar openid-client-1.0-SNAPSHOT.jar | ||
#open browser and access the service | ||
https://localhost:9000/openid/auth | ||
``` | ||
|
||
If you want to test stateless.mode (no association betwen RP and OP) change the value "openid-associate" | ||
in config.properties and rerun the test | ||
Access the app at: `https://localhost:9000/openid/auth` | ||
|
||
NOTE: As per the last version available of CAS, stateless mode needs a change in configuration of the server. | ||
In your "cas.properties" change the values of the property "st.numberOfUses" to "2". | ||
If you want to test stateless.mode (no association betwen RP and OP) change the value `openid-associate` in `config.properties` and rerun the test |