I get error "Body is empty".

Is this a ICS error message?! I can't find such message in the ICS code.

AnsiString asPost;
asPost = PostMemo->Text;
SslHttpCli1->SendStream->WriteBuffer(&asPost, asPost.Length());

What kind of stream have you assigned to the SendStream property?
Don't forget to reset the SendStream position before the request. The component sends from the stream position.
SslHttpCli1.SendStream.seek(0,soFromBeginning);
--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be

Reply via email to