From: Christian P. <cp...@se...> - 2005-01-13 10:50:40
|
Am Mittwoch 12 Januar 2005 11:34 schrieb stephan beal: > On Saturday 08 January 2005 11:31, Christian Prochnow wrote: > > Am Freitag 07 Januar 2005 18:02 schrieb stephan beal: > > > YES!!!!! That means i can get serialization of arbitrarily-sized > > > data working over http :). Is it possible now to send encoded data, > > > zB, like <textarea> field data? > > > > what does "<textarea> encoded field data" mean ? > > i mean, e.g., a <textarea> HTML field. The data is not sent as a GET > parameter, but is fed to the http server somehow (i don't know how). > > In the ps11n experimental code i have only been able to serialize over a > GET request, which limits us to very small objects. Deserialization can > read arbitrarily sized data, because we read the data from the result > body. > > Essentiall, i'd like to know how to write data over a POST request. I'll have a look at the HTTP RFC. I _think_ POST data must be sent to the server with HTTPRequest::write(). Christian |