Before host this url (requestToGateway.callbackUrl = (localhost:10862/frm/Response.aspx)
is work for getting subpaisa payment gateway response
after hosting set requestToGateway.callbackUrl =( /frm/Response.aspx )but this is not working so how to pass url after hosting
Abhishek YadavPosted Aug 4, 2024, 5:52 AM
When you host your application and need to update the callback URL for a payment gateway (or any other external service), you generally need to provide the fully qualified URL that points to your hosted environment. Here’s a step-by-step approach to resolve the issue:
Determine the Full URL:
https://example.com, your callback URL would behttps://example.com/frm/Response.aspx.Update the Callback URL:
Make sure to replace the localhost URL with the full URL of your hosted application. For example:
Check the Payment Gateway Configuration:
Verify SSL/TLS Certificates:
Test the Callback URL:
Update Any Relative Paths:
Additional Considerations:
By providing the fully qualified URL, you ensure that the payment gateway can successfully communicate with your hosted application.