Hi, I'm working on a project for univeristy which involves sending a post request to the yahoo term extractor service to recieve an XML file of terms.
I'm using this code for the request as an example: RequestBuilder yahooRequest = new RequestBuilder(RequestBuilder.POST, "http://api.search.yahoo.com/ContentAnalysisService/V1/termExtraction? appid=YahooDemo&query=madonna&context=Italian+sculptors+and+painters+of +the+renaissance+favored+the+Virgin+Mary+for+inspiration"); try { yahooRequest.sendRequest(null, new RequestCallback() { public void onError(Request request, Throwable exception1) { requestFailed(exception1); } public void onResponseReceived(Request request1, Response response1) { renderXML(response1.getText()); } }); } catch (RequestException ex1) { requestFailed(ex1); } } However I am recieving and error message stating: "http:// api.search.yahoo.com/ContentAnalysisService/V1/termExtraction? appid=YahooDemo&query=madonna&context=Italian+sculptors+and+painters+of +the+renaissance+favored+the+Virgin+Mary+for+inspiration" is invalid or violates the same origin policy. How can I request this URL using google web toolkit, it's important I intergrate it into my toolkti program, rather than use pHp or HTML to do the same thing. Any help would me much appreciated guys! Thanks, Scott. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
