PDA

View Full Version : Method POST using QTcpServer ?



fitzy
27th October 2009, 22:18
Hi there!

I have an html server (QTcpServer and QTcpSocket), and I would like to be able to send some data to it, using the post method from html forms.

However, I don't know how to catch this "packet".

Any idea ? :confused:

JohannesMunk
27th October 2009, 23:36
Same as GET. Just look for POST in your incoming data stream.

http://www.jmarshall.com/easy/http/#postmethod

HIH

Joh