HTTP Multipart

Hello,
we need for our needs http requests. Until now we used simple get or post requests. As for that, we needed to encode request parameters only using ascii codes. To overcome this problems, we tried the multipart possibility.
Below the changed code sample
EHTTPRequest request("http://localhost/mod/o1.pl");
request.AddData("dt",(unsigned char *) aURL,data_out,NULL,"application/x-gzip");
ecd->net[0]->SendHTTPPostMultipart(&request);
stack.Alloc(aPagesize);
data_out holding the parameters length
aURL holding the parameters in a char*.
Running the Apps on WinXP, is ok. Perl scripts confirm the data is sended correct.
But on UIQ the Apps crashes or generates no netEvents and on a WM5 it returns HSTATE_ERROR netEvent.
We didn't try the apps on gprs only on wlan.
Is this feature also needing the apps to be signed?
we need for our needs http requests. Until now we used simple get or post requests. As for that, we needed to encode request parameters only using ascii codes. To overcome this problems, we tried the multipart possibility.
Below the changed code sample
EHTTPRequest request("http://localhost/mod/o1.pl");
request.AddData("dt",(unsigned char *) aURL,data_out,NULL,"application/x-gzip");
ecd->net[0]->SendHTTPPostMultipart(&request);
stack.Alloc(aPagesize);
data_out holding the parameters length
aURL holding the parameters in a char*.
Running the Apps on WinXP, is ok. Perl scripts confirm the data is sended correct.
But on UIQ the Apps crashes or generates no netEvents and on a WM5 it returns HSTATE_ERROR netEvent.
We didn't try the apps on gprs only on wlan.
Is this feature also needing the apps to be signed?