On Feb 17, 6:58 pm, chillyspoon <[email protected]> wrote: > Hi everyone, > > Does anyone know how to add HTTP headers to the HTTP POST that gets > kicked off when a FormPanel submit method is called?
No, that's not possible. FormPanel is just an HTML <form>, so it obeys the same rules and constraints. If you're not trying to upload a file and are also not forced to use multipart/form-data, I'd suggest issuing the request yourself using a RequestBuilder rather than relying on FormPanel, it's much more flexible (request headers, response headers and status code, error handling, etc.) -- 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.
