[Pharo-users] Re: Reading http post data using Zinc

2021-06-17 Thread Davide Varvello via Pharo-users
Hi Sven, I'm sending a FormData, so the right code is in ZnDefaultServerDelegate>>#formTest3: that you pointed out. Thank you very much. To help other people of the list, I summarize that in case of multipart form-data you have to read the entity and its parts, for example: (aRequest entity

[Pharo-users] Re: Reading http post data using Zinc

2021-06-16 Thread Sven Van Caekenberghe
Hi Davide, > On 16 Jun 2021, at 23:17, Davide Varvello via Pharo-users > wrote: > > Hi Guys, > I'm posting from an http form and I'm wondering how to read data from the > post. It seems the request should give a ZnMultiPartFormDataEntity, but I > can't find how to use it. > > Can you help me