Robert Morton
unread,Aug 11, 2011, 11:18:21 PM8/11/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to JSON for ASP, rmo...@loftygolf.com
I am trying to figure out how I can handle a json post from a 3rd
party. They are sending me a json post with 3 variables to a url I
host. I will use the 3 variables sent to process an SQL Stored
Procedure call to my SQL Server. Once the SQL SP is completed the
Return Value is what the 3rd parties Json post will wait for (the
return value from the SQL server will tell the 3rd parties json post
that the process was a success or failure).
I currently have everything working fine using standard Querystring
Values that were posted to my classic ASP page that executes the SQL
SP. I need some help with getting this process to work with json
values that are posted to the url instead of standard Querystring
values. They are sending me the values in json and awaiting a reply.
I think I need a way to get the json values, dim them, and be able to
use them in my classic asp SQL stored procedure call. Then the Stored
Procedure Return Value can be the reply that their json reply is
pending.
Could someone please point me in the right direction. Any assistance
would be great on how I can accomplish this.