I'm looking for a function similar to Microsoft's URL Control which allows you to post a URL via HTTPS. Its for credit card processing.
***** THIS IS THE DATA I WANT TO SEND ****
POST /realtime.test.firepay.com HTTP/1.0<CR><LF>
Content-type: application/x-www-form-urlencoded<CR><LF>
Content-length: 91<CR><LF>
<CR><LF>
account=blah&amount=1000
*********** END OF DATA ***************
INSTRUCTIONS THEY GAVE *
To submit this request, the merchant application then opens an SSL pro-tected socket connection to FirePay and sends the request data. Any tool that creates and submits a standard HTTP Post using SSL could be employed. One example is the Microsoft URL Control, which allows Decoding responses you to set the data to be posted and then to do a secure POST of that
data.
Any help would be much appreciated!