Thanks, Jake, I'll give that a try. The problem I was addressing is that I had not figured out a way to attach the "?foo=bar&woof=arf" post data. I'd tried setRequestData but it did not work. I interpreted builder.sendRequest(postData, RequestCall) as semantically equivalent to httpRequest.setRequestData(), httpRequest.setCallback(), httpReqeuest.send() which I already tried.
On Jan 20, 4:15 am, jake H <[email protected]> wrote: > I dont know , if i understood u well but here is the implementation > for RequestBuilder POST > url - url to send > postData - data to send. > > RequestBuilder builder = new RequestBuilder(RequestBuilder.POST,url); > > try { > builder.setHeader("Content-Type", > "application/x-www-form- > urlencoded"); > Request response = builder.sendRequest(postData, new > RequestCallback > () { --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
