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

I'm working on an application that uses EJB 3.0 and exposes its methods as web services.

SiteMinder is used to provide authentication. After successful login, the request header will contain the user's login id which can be read by

request.getHeader("sm_user");

This information is available at the WebService end point and can be read in a Servlet Filter also.

But how do I get this information in the EJB layer without explicitly passing it as a parameter? How can I get/set the credentials using a Principal object with the help of an Interceptor?

Please provide your valuable inputs.

share|improve this question

2 Answers

In EJB3.0 your web application and EJB runs in a different containers and EJBs cannot access any web container data. you will have to pass this information.

share|improve this answer

I think you need to install the Application Server Agent for SiteMinder on your application server so that the identity is propagated properly through the ctx.getCallerPrincipal().getName() call in your EJB.

share|improve this answer

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.