On 19 août, 09:45, nicorama <[email protected]> wrote:
> Hi,
> Due to a bug in Safari, and limitations of Konqueror, it's not
> possible to create easily PUT & DELETE HTTP requests.
> The documentation talks about this bug
> :https://bugs.webkit.org/show_bug.cgi?id=3812
> The post was created in 2005, and it seems that Apple has corrected
> it. As I don't work on Apple, I can't prove it.
>
> For the moment, I use the _method parameter, and it works perfectly.
> Nevertheless, using directly PUT and DELETE methods would help :)
RequestBuilder putRequest = new RequestBuilder("PUT") { /* anonymous
subclass */ };
RequestBuilder deleteRequest = new RequestBuilder("DELETE") { /*
anonymous subclass */ };
;-)
> What is your opinion ?
I totally agree with you: let's just add RequestBuilder.PUT and
RequestBuilder.DELETE and/or make the RequestBuilder(String) ctor
public.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---