Alex
Alex

Reputation: 34998

Equivalent of request.getRemoteUser() in GWT?

How ca I access request variables (the remote username) in a GWT RPC implementation?

Upvotes: 3

Views: 664

Answers (1)

Alex
Alex

Reputation: 34998

It is working with

this.getThreadLocalRequest().getRemoteUser()

in my RPC class that extends RemoteServiceServlet.

Upvotes: 6

Related Questions