Get jetty realm credentials in application

1k Views Asked by At

It might be a stupid question but we are using jetty basic authentication on our server. Now we want to use the usercredentials in our application. Is it possible to get the current login in the RAP webapplication?

Thanks

1

There are 1 best solutions below

0
On BEST ANSWER

I'm not a RAP expert, but it looks like you want to do this:

 HttpServletRequest request = RWT.getRequest();
 Principal user = request.getUserPrincipal();