On 23 août, 22:24, "marius.andreiana" <[email protected]> wrote: > Does anybody know how to reuse a RequestBuilder instance for more than > one request, with different URLs ? > > See this post which mentions RequestBuilder should have > setUrl()http://stackoverflow.com/questions/2261603/gwt-requestbuilder-changin... > > Should I file an issue or it's a reasoning for leaving this out?
RequestBuilder is a builder, not a factory; i.e. you use it to incrementally build your request, not to make a "template request". You'll also note there's no removeRequestHeader and no clearUser/ clearPassword (setUser and setPassword throw when the value is null or the empty string) -- 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.
