Reputation: 6278
I've integrated sagepay to an umbraco base website(V 7.4.2 MVC)
Getting code reference code from : https://github.com/JeremySkinner/SagePayMvc
request to sagepay and everything seems to work fine, but after redirecting user to sage pay web site. and entering card detail's , and conformation page
Getting following error
Notification URL looks something like: http://siteName:9003/PaymentResponse/Notify
So kindly guide me on the same , do I need to take any special care from umbraco part or so. (As I do not found any reference / sample code / blog on integrating sage pay with core umbraco ).
Thanks
Upvotes: 1
Views: 445
Reputation: 703
Sagepay does not like URLs that contain the port (eg :9030), neither can you redirect to localhost, if this is what you tried. Unfortunately, the only way to test this is to deploy your solution and run it on a web server. If you search enough on the web, you can find some solutions involving a proxy which you could consider.
Upvotes: 2