connecting to web service with classic asp

i was given a project to write JSON from Classic ASP and upload the info to a web service given by a third party.Third Party:Connecting to the web service:The web service works over the HTTP protocol. It is recommended that this web service, once in production, use a Secure Socket Layer (HTTPS). The web service is designed to work with the URL: http://domainname.com/api/push The site uses an authentication token in the header to prevent crawlers from interfering with the web service. When sending data add a header called HTTP_TOKENKEY with the value of ABCDEFGHIJK. This is one reason why HTTPS is recommended.The web service will look for JSON data in the request
 
Top