I'm trying to use HtmlUnit to get DOM of webpages. However, when I try to run this code on app engine development server (using the eclipse plugin):
WebClient wc=new WebClient();
HtmlPage page1= wc.getPage("http://ww.google.com/");
I get this exception:
java.net.URLStreamHandler is a restricted class.
Is it not possible to use HtmlUnit on app engine?