Hey,
I am ecommerce website that is designed to get IPN notification from payment system. While it works fine.. But due to some constraint i cant use in that way, instead i need to use web service in between so i send request to web service and then it post to my ipn handler page that is designed in asp.net.
So now the problem is, i am sending data but in aspx website its not able to read it. The value of Request.Params always return null. I am writing in this format,
item=value
MY Payment system values posting in this way only. i.e.
item1=val1
item2=val2.
My ipn handler is able to read the value that payment system sends but not my values, I am pretty sure that i am doing something wrong here..
any guess of how should i send values using httpwebrequest so my aspx ipn handler's Request.Params reads it and populates with posted value??
I am posting using stream and method that i use is POST. I am not sure y its not working. any help would be appreciated!!
I am ecommerce website that is designed to get IPN notification from payment system. While it works fine.. But due to some constraint i cant use in that way, instead i need to use web service in between so i send request to web service and then it post to my ipn handler page that is designed in asp.net.
So now the problem is, i am sending data but in aspx website its not able to read it. The value of Request.Params always return null. I am writing in this format,
item=value
MY Payment system values posting in this way only. i.e.
item1=val1
item2=val2.
My ipn handler is able to read the value that payment system sends but not my values, I am pretty sure that i am doing something wrong here..
any guess of how should i send values using httpwebrequest so my aspx ipn handler's Request.Params reads it and populates with posted value??
I am posting using stream and method that i use is POST. I am not sure y its not working. any help would be appreciated!!