Hello again,
The php file example code I copy pasted in my first post. Now as a step-1 I translate this php code in Java servlet like:
1- My code will authenticate our merchant id, secret hash code, merchant reference and amount to bank server as GET REQUEST. Is that right? e.g.
https://domainname.audicards.com/TPGWeb/payment/prepayment.action?accessCode=25023s1B3&amount=500&merchTxnRef=1214&merchant=TEST2332301&orderInfo=adds&vpc_SecureHash=5DB0F8628C4801B24110FD5SDF365437U&returnURL=http://www.domainName.com/servlet/PaymentManager?action=pay
2- Secure Hash will be encrypted by my Java.security.*; package
3. Bank server will verify and sent me GET RESPONSE i.e. codes like right now am getting back "Y" : invalid URL
4. Am I approaching in a right way? if yes, then why am getting invalid URL error?
5. My code:
>