You have to think about what you're trying to do. GWT compiles java code into client side Javascript. You do not want to be opening HTTP connections and parsing DOM in client side Javascript. Most likely what you do want to do is have a servlet that does this on the server side and call it via the GWT AJAX calls to get the results down to your client UI.
On Mar 20, 5:36 am, ytbryan <[email protected]> wrote: > hi all, > > i wanted to be able to use the following class > > import java.net.HttpURLConnection; > import java.net.MalformedURLException; > import java.net.URL; > import java.net.URLConnection; > import org.cyberneko.html.parsers.DOMFragmentParser; > import org.cyberneko.html.parsers.DOMParser; > import org.apache.html.dom.HTMLDocumentImpl; > import org.w3c.dom.Document; > import org.w3c.dom.DocumentFragment; > import org.w3c.dom.Node; > import org.w3c.dom.html.HTMLDocument; > > i tried to find a substitute within the gwt permit class but to no > avail. > > I was told that i can deploy it seperately from my gwt application and > call it. But I am not sure how to. > > can someone advise me what to do ? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
