Colin Alworth
unread,Jun 26, 2011, 2:03:07 PM6/26/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
"com.google.gwt.http.client.URL"
The client package in that indicates that this class is only to be used in client code, code that is compiled to JS. This is causing problems for you, as part of that class is implemented using native JS, which of course JBoss can't run.
You'll need to find another class like URL that can be used on the server. Classes that appear in GWT that can be used on the server are in the .shared or .server packages.