Manish Kumar schrieb: > Right now, I am completely stuck off at on point. I have a web server which > uploads the file using PUT method only. We have to put the file from GWT > (using RequestBuilder) client to webserver. > > At this point of time, this is quite problematic to change the server > functionalities. > > As the GWT doesn't suppport PUT method,We are completely stuck off
The reason why GWT don't support PUT is simply because the browser (the GWT-application is relying on) don't support that in general. > Can anybody please help me out to get the idea for providing the > implementation of PUT method in GWT by any means. You can write a RemoteServiceServlet that is doing the PUT-request using a HttpClient or the plain HttpUrlConnection of Java. You can load a Java-Applet that is doing the PUT-request (using the already mentioned HttpUrlConnection). I'm not sure but this might even work without signing the applet as long as the PUT-request goes to the same server, the applet has been loaded from. Regards, Lothar --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
