I was wondering if it is possible to detect the browser (especially IE) in a Eclipse RAP application. I'd like to inform the server about what browser the client is using, so that it can show adapted views.

Thanks in advance!

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Seems like I asked the question too early. The solution is:

    String answer = RWT.getRequest().getHeader("User-Agent");
    boolean forInternetExplorer = (answer != null && answer.indexOf("MSIE") != -1);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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