classNotFoundException GWTBridge
问题 im working on a gwt webapp and while working on it im getting this exception while trying to get a XML file from a URL in a remove servlete. i dont know much about the underworkings of gwt, maybe someone can help me out this is the code to get the data from the url public static String readURL(String path) throws IOException{ String data = ""; URL url = new URL(path); URLConnection conn = url.openConnection(); BufferedReader br = new BufferedReader(new InputStreamReader( conn.getInputStream()