Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a live test server that accepts my requests for basic information via HTTP GET and also allows me to POST (even if its really not doing anything). This is entirely for test purposes.

A good example is http://www.thomas-bayer.com/sqlrest/

it easily accepts GET requests, but I need one that accepts POST requests.

Does anyone know of a server that I can send stupid test messages too?

share|improve this question
Are you wanting it to log POSTs? – Jared Farrish Apr 20 '11 at 4:23

4 Answers

http://httpbin.org/

It echoes the data used in your request for any of these types:

share|improve this answer

There is http://www.posttestserver.com/

share|improve this answer
1  
This one is really good if you're running requests that are triggered from a remote server whose internals you don't have access to, as it will save the request for later retrieval. – ozmo Aug 21 '12 at 12:20

Create choose a free web host and put the following code

 <h1>Request Headers</h1>
 <?php
 $headers = apache_request_headers();

 foreach ($headers as $header => $value) {
     echo "<b>$header:</b> $value <br />\n";
 }
 ?>

Or just visit those sites

  1. http://greensuisse.zzl.org/product/dump/dump.php
  2. http://www.newburghschools.org/testfolder/dump.php
share|improve this answer

Just set one up yourself. Copy this snippet to your webserver.


echo "<pre>";
print_r($_POST);
echo "</pre>";

Just post what you want to that page. Done.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.