As per our requirement , we have to redirect to aspx page (asp.net application page) from jsp.
We done all the confguration as mentioned in JOSSO help site. But I couldn't work out.
Configuration Steps we did,
1. Installed ISAPI Agent and registery
2. Created virutual directory as "josso" which folder contains jossoisapiagent.dll under "Default web site". This folder contains bin, config and log folders.
3. Created virutual directory as "partnerapp" for partner application which contains asp.net application under "Default web site"
4. In josso-agent-config.ini,
------------------------------------------------------------------------------------
[agent]
gatewayEndpoint=IPAddress:port
gatewayLoginUrl=
http://IPAddress:port/josso/signon/login.do
HTTP Basic Authentication setup
basicUserId=xxx
basicPassword=xxx
;; ---------------------------------------------------------
;; SSO Partner Applications
;;
;; All sections starting with 'partnerapp' will be treated
;; as partner app declarations.
;; ---------------------------------------------------------
[partnerapp.1]
base-uri=/partnerapp
splash-resource=
http://IPAddress/partnerapp/default.aspx
;; ---------------------------------------------------------
;; SSO Security Constraints for 'Applications'
;;
;; All sections starting with 'security-constraint' will be treated
;; as security constraint declarations
;; ---------------------------------------------------------
[security-constraint.admin]
;; Comma separated list of required roles (optional)
;; Do not leave empty spaces between elements!
roles=role1,admin
;; Comma separated list of base uris for this constraint (required)
;; Do not leave empty spaces between elements!
base-uris=/public/.*\.pdf,/admin/[sS]ec_.*\.*,/partnerapp
[security-constraint.public]
base-uris=/public
-----------------------------------------------------------------------------------------------------------------
Shall we use JOSSO in ASP.NET application? If Yes, Please guide me on this.
Thanking you..