Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My requirement is " Our users are Authenticated by External System using SSO". On successful authentication the external system returns header variables viz. userId, firstName, lastName etc to our System. Currently I am able to retrieve these header variables using request.getHeader("userId") in my JSP page.

But I am using JSF 2.0 and not able to figure out as to how this can be done in JSF. I saw one example here on Stack overflow ...

Map<String, String> requestHeaders = context.getExternalContext().getRequestHeaderMap(); 
String userName = requestHeaders.get(requestHeaderName); 

but there was no further response as how this will be invoked on the backing bean.

Any pointer or sample code would be helpful.

share|improve this question

2 Answers

up vote 0 down vote accepted

The context is here just the current instance of the FacesContext. This is a request based threadlocal variable which is always available throughout all the JSF code which is controlled by the FacesServlet.

FacesContext context = FacesContext.getCurrentInstance();
Map<String, String> requestHeaders = context.getExternalContext().getRequestHeaderMap(); 
String userName = requestHeaders.get(requestHeaderName); 
// ...

You can invoke this in for example the bean's constructor, the bean's @PostConstruct method, the bean's action(listener) method, etcetera. The right place depends on the moment you want to collect this information and what you want to do with this information.

share|improve this answer
Thanks Balus for the response. For example I have a LoginBean.java and i want to invoke this code in the constructor. But what should my url look like so that the constructor of my LoginBean would be called. lets say my application is deployed as /web on weblogic. So will the url like localhost:7001/web/faces/LoginBean will directly invoke the contructor of LoginBean or do I need to do some configuration mapping somewhere in web.xml or faces-config.xml. – gcool01 Oct 19 '11 at 8:45
Just the URL of the view you want to see. login.xhtml maybe? You just bind the properties and actions of LoginBean to components of that view. – BalusC Oct 19 '11 at 11:33

I just use #{header['SSO_NAME']} ?

share|improve this answer
Is this an answer or a question? – Till Feb 21 '12 at 20:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.