String endPoint = "https://api.mastercard.com/payments/v1/purchase?Format=XML";
EditText cardNumberInput = (EditText) findViewById(R.id.cardNumberInput);
EditText expirationMonthInput = (EditText) findViewById(R.id.expirationMonthInput);
EditText expirationYearInput = (EditText) findViewById(R.id.expirationYearInput);
EditText cvvInput = (EditText) findViewById(R.id.cvvInput);
EditText cardHolderNameInput = (EditText) findViewById(R.id.cardHolderNameInput);
EditText amountInput = (EditText) findViewById(R.id.amountInput);
final double amount = Float.valueOf(amountInput.getText().toString());
final String currency = "USD";
final String companyId = "ComID";
final String companyPassword = "ComPass";
final String messageId = "001";
final String settlementId = "011";
final String cardHolderName = cardHolderNameInput.getText().toString();
final String accountNumber = cardNumberInput.getText().toString();
final String expiryMonth = expirationMonthInput.getText().toString();
final String expiryYear = expirationYearInput.getText().toString();
final String securityCode = cvvInput.getText().toString();
try {
// Send data
URL url = new URL(endPoint);
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
conn.setDoInput(true);
OutputStreamWriter request = new OutputStreamWriter(conn.getOutputStream());
// Create the XML to post
request.append("<?xml version=\"1.0\" encoding=\"utf-8\"?>");
request.append("<PurchaseRequest>");
request.append("<MerchantIdentity>");
request.append("<CompanyId>");
request.append(companyId);
request.append("</CompanyId>");
request.append("<CompanyPassword>");
request.append(companyPassword);
request.append("</CompanyPassword>");
request.append("</MerchantIdentity>");
request.append("<Reference>");
request.append("<MessageId>");
request.append(messageId);
request.append("</MessageId>");
request.append("<SettlementId>");
request.append(settlementId);
request.append("</SettlementId>");
request.append("</Reference>");
request.append("<Amount>");
request.append("<Currency>");
request.append(currency);
request.append("</Currency>");
request.append("<Value>");
request.append(Double.toString(amount));
request.append("</Value>");
request.append("</Amount>");
request.append("<FundingCard>");
request.append("<CardholderName>");
request.append(cardHolderName);
request.append("</CardholderName>");
request.append("<AccountNumber>");
request.append(accountNumber);
request.append("</AccountNumber>");
request.append("<ExpiryMonth>");
request.append(expiryMonth);
request.append("</ExpiryMonth>");
request.append("<ExpiryYear>");
request.append(expiryYear);
request.append("</ExpiryYear>");
request.append("<SecurityCode>");
request.append(securityCode);
request.append("</SecurityCode>");
request.append("</FundingCard>");
request.append("</PurchaseRequest>");
request.flush();
DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
Document doc = docBuilder.parse(conn.getInputStream());
Node transactionResponseNode = doc.getElementsByTagName("TransactionResponse").item(0);
// Test for approval.
String response = transactionResponseNode.getNodeValue().trim().toUpperCase();
Log.d("**********Response", ""+response);
if (response.equals("APPROVED") == true) {
request.close();
String text = "The payment processed successfully. PHP" + amountInput.getText().toString()
+ " was charged to the account.";
Toast toast = Toast.makeText(context, text, Toast.LENGTH_LONG);
toast.show();
} else if (response.equals("DECLINED")) {
String text = "The payment was declined.";
Toast toast = Toast.makeText(context, text, Toast.LENGTH_LONG);
toast.show();
} else if (response.equals("ERROR")) {
String text = "Error Processing Payment.";
Toast toast = Toast.makeText(context, text, Toast.LENGTH_LONG);
toast.show();
}
} catch (MalformedURLException e) {
String text = "Error";
Toast toast = Toast.makeText(context, ""+e, Toast.LENGTH_LONG);
toast.show();
} catch (IOException e) {
String text = "Error";
Toast toast = Toast.makeText(context, ""+e, Toast.LENGTH_LONG);
toast.show();
} catch (ParserConfigurationException e) {
String text = "Error";
Toast toast = Toast.makeText(context, ""+e, Toast.LENGTH_LONG);
toast.show();
} catch (SAXException e) {
String text = "Error";
Toast toast = Toast.makeText(context, ""+e, Toast.LENGTH_LONG);
toast.show();
}
}
Asked
Active
Viewed 128 times
0

sandrstar
- 12,503
- 8
- 58
- 65
-
What is your question? And while you are at it, assuming that it has something to do with the title, at which line do you get the exception? – Stefan Oct 19 '13 at 11:49
-
run the app then i got error file not found and error at line Document doc = docBuilder.parse(conn.getInputStream()); – Nehalkumar Maheshwari Oct 19 '13 at 12:09
-
I am no java expert but it seems like the ` docBuilder.parse ` function can't handle "input stream directly". Maybe you should read from the URL in a temp buffer, and pass the buffer into the `docBuilder.parse` function. – Stefan Oct 19 '13 at 12:19
-
please suggest any reference or demo then i get exactly idea – Nehalkumar Maheshwari Oct 19 '13 at 12:24
-
Basically I think this is the answer you are looking for: http://stackoverflow.com/questions/3058434/xml-parse-file-from-http – Stefan Oct 19 '13 at 12:27
-
Oh wait, that can lead to the same error... – Stefan Oct 19 '13 at 12:30
-
This one should work: http://stackoverflow.com/a/9302606/2416958 if not, I am afraid I can't help you... :| – Stefan Oct 19 '13 at 12:33
-
thank you Stefan i get idea – Nehalkumar Maheshwari Oct 19 '13 at 12:37