Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using spring basic authentication with the following settings in my security xml:

<http use-expressions="true" create-session="never" >
        <intercept-url pattern="/**" method="GET" access="isAuthenticated()" />
        <intercept-url pattern="/**" method="POST" access="isAuthenticated()" />
        <intercept-url pattern="/**" method="PUT" access="isAuthenticated()" />
        <intercept-url pattern="/**" method="DELETE" access="isAuthenticated()" />
        <http-basic />
    </http>

If authentication fails, the browser pop ups a prompt window to renter the user name and password. Is there any way to make that prompt not pop up at all ?

share|improve this question

1 Answer

up vote 1 down vote accepted

Most probable the page that is used for authentication failure is also protected. You can try manually to set the failure page to one that is not protected like

 <access-denied-handler error-page="/login.jsp"/> 

together with

 <intercept-url pattern="/*login*" access="hasRole('ROLE_ANONYMOUS')"/>

or

<intercept-url pattern='/*login*' filters='none'/>  

or you can use the auto-config='true' attribute of the http element that will fix that for you.See more here

share|improve this answer
Thanks @enterlezi . I've tried adding filters='none' and tried to add the auto-config as well to the http element, but it didnt work. As far as I understand, the prompt is appearing as a result of the WWW-Authenticate: Basic realm="Spring Security Application" in the header of the response. Is there a way to modify the headers of the response? – BlackEagle Apr 27 '12 at 10:13
I have no clue about the header but i think the problem is that the authentication failure url is still protected. Try adding a form-login element in your http definition, for example <sec:form-login login-page="/login.jsp" login-processing-url="/login" authentication-failure-url="/login.jsp?error" default-target-url="/home.jsp"/> and replace with your pages (login.jsp). Also ensure that that page is excluded from filters using access="hasRole('ROLE_ANONYMOUS') since you have specified use-expressions="true" – dimcookies Apr 27 '12 at 10:51
The problem is that I am not developing the client pages. I'm creating rest APIs that use basic authentication. So i dont really have any failure urls to redirect to. Do you know if there is a way where I can catch the failure in a handler and there I can control the headers of the response? – BlackEagle Apr 27 '12 at 11:02
Ok now it makes sence. Check this answer stackoverflow.com/questions/4397062/… if it helps. – dimcookies Apr 27 '12 at 12:01
Thanks a lot. I've tuned it as the guy in that link did, and it worked. Thanks a lot for your help! very much appreciated. – BlackEagle Apr 27 '12 at 13:10

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.