Subversion Repositories SmartDukaan

Rev

Rev 23568 | Rev 26863 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23568 Rev 26522
Line 47... Line 47...
47
			ConfigClient client = ConfigClient.getClient();
47
			ConfigClient client = ConfigClient.getClient();
48
			accountId = client.get("payu_account_id");
48
			accountId = client.get("payu_account_id");
49
			salt = client.get("payu_secret_key");
49
			salt = client.get("payu_secret_key");
50
			postActionUrl = client.get("payu_post_url");
50
			postActionUrl = client.get("payu_post_url");
51
			//"https://test.payu.in/_payment";
51
			//"https://test.payu.in/_payment";
52
		} catch (ConfigException e) {
52
		} catch (Exception e) {
53
			log.error("Unable to get PayU payment configuration.");
53
			log.error("Unable to get PayU payment configuration.");
54
		}
54
		}
55
	}
55
	}
56
		
56
		
57
 
57