I need to receive a POST, and in return POST the same fields in the same
order with the same encoding as the original (paypal API).

HTTPServerRequest of course provides access to .contentType and .form,
but how do I best use these to craft the response? (is foreach-ing over
the .form guaranteed to be in the same order as the POSTed fields?)

What is the best way to accomplish this?