vote up 0 vote down star

I am desiging a RESTful Web Service (JBoss + RESTeasy). The UI programmer is writing an Ajax web app that will use it. The web app will be one HTML page with everything done in JavaScript. For security, all traffic goes through SSL.

Currently I'm using Basic authentication. The UI programmer can show a dialog to get a username and password and put "Authorization: Basic xxxxx" in the header. Unfortunately if the password is wrong, the ugly browser login dialog box comes up. Also there is no way for the user to log off. This is unacceptable.

There appears to be no way to intercept a 401 response to an XMLHttpRequest in any of the browsers we will use.

Form-based authentication won't work for us. We need an automatic logoff after some period of inactivity (the equivalent of a session timeout). We can't have the server suddenly return a login page when the client expects a JSON object.

JBoss offers four authentication strategies: BASIC, FORM, CLIENT-CERT and DIGEST. I think DIGEST has the same problem as BASIC. None of the four is what we want.

This web application will be the only client (for now) so there is no requirement to use BASIC. Is there any other authentication strategy I can install? For instance is there an implementation of WSSE UsernameToken I can use? (As described in Chapter 8 of the O'Reilly RESTful Web Services book.) The server would send "WSSE" instead of "Basic" in the WWW-Authenticate header and presumably the browser would ignore it and pass it right through.

I want to configure security where it belongs -- in the JBoss configuration files, not in my RESTful Web Service -- so I'm looking for an implementation I can just plug into JBoss.

flag

69% accept rate

1 Answer

vote up 1 vote down check

The browser won't present the password dialog if it doesn't recognize the authentication scheme in the WWW-Authenticate header. Your best bet may be to continue using basic auth on the server while setting the header manually to something like "Basic/MyApp" for 401 responses.

link|flag
Authentication is done before the request reaches the web service. Can I handle this by writing a filter that sits in front of the security framework? Then I could tell the web programmer to add an "Authorization: Basic/MyApp" header to the first request. The filter could then rewrite it as "Authorization: Basic" and rewrite the "WWW-Authenticate: Basic" header in the response as "WWW-Authenticate: Basic/MyApp". Any other clients could use normal Basic authentication. Will this work? I think it might. – Mark Lutton Oct 26 at 2:00
Hmm... I was assuming you had control over authentication at the script level on the server, and the header would be set after the authentication was handled but before you returned a response. I'm not too familiar with JBoss, but if you can filter and rewrite requests before the auth happens it sounds like it would be your best bet. And by setting the Authorization header in the web app, normal clients won't be affected. Nice. – Brendan Berg Oct 26 at 5:41
As it turns out, you cannot have a pre-login filter. The WebLogic server allows it, but the standard does not allow it and JBoss and Tomcat do not allow it. It looks like I'll have to fiddle with JAAS to do this. – Mark Lutton Oct 26 at 19:27

Your Answer

Get an OpenID
or

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