Java: Read POST data from a socket on an HTTP server
Posted
by danpalmer
on Stack Overflow
See other posts from Stack Overflow
or by danpalmer
Published on 2010-04-30T16:25:27Z
Indexed on
2010/04/30
16:27 UTC
Read the original article
Hit count: 552
I have a website (python/django) that needs to use a load of Java resources that may or may not be on the same server. Therefore I am writing a mini webserver in Java that will receive a request and then when processing is finished, POST some data back to a url on the site.
I have got the java code receiving connections on sockets and responding with some simple HTML.
My problem is that I will POST data to the Java server and that code needs to act on the data. How do I go about reading the data that is posted in the HTML request, if it is even possible. If not, is there any other way you would do this.
If you think I am going about this in completely the wrong way then please tell me and I will consider another method, but after conversing with some Java developers, this seemed like the best way for what I was doing.
Thanks
© Stack Overflow or respective owner