Get Customer Accounts
1. getCustomerAccountsClass.cs
These five packages are required to be used.
Step 1. Create class file to store content of the web response.
2. getCustomerAccounts.aspx.cs
These 13 packages are required to be used.
Code in Common
(1). Check if user id and password is inside session. When the user id and password is inside user session, it will automatically populate into the user id and pin textbox, so that the user need not manually type his user id and password repeatedly.
Step 2. Store Details which entered by the user. If user id, password, and OTP exist in session, user need not enter again (refer to common staff).
Step 3. Create URL which will be post to the server. User inputs need to be stored in the class created, and serialize into JSON format. In this function, only header is needed.
Step 4. Post to the server, and store response. URL is sent using web request function, and a response will be send back from the server. The response need to be deserialized into the ‘getCustomerAccounts’ class.
Step 5. Obtain error code. If error code is ‘010000’ which means invocation successful, populate attributes of the ‘creditTransfer’ class into the label. If error code is '010041', it means OTP has expired, and we will use the newOTP() function to prompt the user for the OTP again. Else, we will display the ErrorText and ErrorDetails.
The newOTP() function can be referred to under Common Stuff Section
Overview of getCustomerAccountsClass.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Newtonsoft.Json;
namespace Demo
{
public class AccountRootobject
{
public ContentAcc Content { get; set; }
}
public class ContentAcc
{
public ServiceresponseAcc ServiceResponse { get; set; }
}
public class ServiceresponseAcc
{
public Accountlist AccountList { get; set; }
public Servicerespheader ServiceRespHeader { get; set; }
}
public class Accountlist
{
[JsonConverter(typeof(ArrayConverter<Account>))]
public List<Account> account { get; set; }
}
public class Account
{
public string balance { get; set; }
public string accountID { get; set; }
public string accountOpenDate { get; set; }
public string homeBranch { get; set; }
public Maintenancehistory maintenancehistory { get; set; }
public string parentAccountFlag { get; set; }
public string interestRate { get; set; }
public string productID { get; set; }
public string currentStatus { get; set; }
public string officerID { get; set; }
public string currency { get; set; }
}
public class Maintenancehistory
{
public string lastMaintenanceOfficer { get; set; }
public string lastTransactionBranch { get; set; }
}
public class Servicerespheader_account
{
public string ErrorText { get; set; }
public string GlobalErrorID { get; set; }
public object ErrorDetails { get; set; }
}
}
Overview of getCustomerAccounts.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using DotNetOpenAuth.OAuth2;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Collections.Specialized;
using System.Configuration;
using System.Net;
using System.IO;
using System.Windows.Forms;
using System.Data;
namespace Demo
{
public partial class getCustomerAccounts : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Session["userid"] != null)
{
txtUserID.Text = (string)Session["userid"];
txtPassword.Text = (string)Session["pin"];
}
}
protected void btnSend_Click(object sender, EventArgs e)
{
if (Page.IsPostBack == true)
{
gvAccounts.DataSource = null;
gvAccounts.DataBind();
try
{
string userID = txtUserID.Text;
Session["userid"] = userID;
string pin = txtPassword.Text;
Session["pin"] = pin;
string otp;
if (Session["otp"] == null)
{
otp = "1";
}
else
{
otp = Session["otp"].ToString();
}
var header = new HeaderJson();
header.userID = userID;
header.PIN = pin;
header.serviceName = "getCustomerAccounts";
header.OTP = otp;
var headerJson = new HeaderJsonObject();
headerJson.Header = header;
string strHeader = JsonConvert.SerializeObject(headerJson);
string url = "http://tbankonline.com/SMUtBank_API/Gateway?Header=" + strHeader;
//lblTest.Text = url;
//send web request and store response
var webRequest = (HttpWebRequest)WebRequest.Create(url);
webRequest.ContentType = "application/json";
webRequest.Method = "POST";
var result = "";
var httpResponse = (HttpWebResponse)webRequest.GetResponse();
using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
{
result = streamReader.ReadToEnd();
}
AccountRootobject accounts = new AccountRootobject();
accounts = JsonConvert.DeserializeObject<AccountRootobject>(result);
int counter = accounts.Content.ServiceResponse.AccountList.account.Count();
//lblTest.Text = counter.ToString();
string globalErrorID = accounts.Content.ServiceResponse.ServiceRespHeader.GlobalErrorID.ToString();
if (globalErrorID == "010000")
{
int NumberOfAccounts = accounts.Content.ServiceResponse.AccountList.account.Count();
DataTable dt = new DataTable();
DataColumn col1 = new DataColumn("Account Number", typeof(string));
DataColumn col2 = new DataColumn("Product", typeof(string));
DataColumn col3 = new DataColumn("Currency", typeof(string));
DataColumn col4 = new DataColumn("Balance", typeof(string));
DataColumn col5 = new DataColumn("Interest Rate", typeof(string));
DataColumn col6 = new DataColumn("Date Open", typeof(string));
DataColumn col7 = new DataColumn("Status", typeof(string));
dt.Columns.Add(col1);
dt.Columns.Add(col2);
dt.Columns.Add(col3);
dt.Columns.Add(col4);
dt.Columns.Add(col5);
dt.Columns.Add(col6);
dt.Columns.Add(col7);
for (int i = 0; i <= NumberOfAccounts - 1; i++)
{
DataRow row = dt.NewRow();
dt.Rows.Add(row);
dt.Rows[i][col1] = accounts.Content.ServiceResponse.AccountList.account[i].accountID.ToString();
dt.Rows[i][col2] = accounts.Content.ServiceResponse.AccountList.account[i].productID.ToString(); //Cant show product type name
dt.Rows[i][col3] = accounts.Content.ServiceResponse.AccountList.account[i].currency.ToString();
dt.Rows[i][col4] = accounts.Content.ServiceResponse.AccountList.account[i].balance.ToString();
dt.Rows[i][col5] = accounts.Content.ServiceResponse.AccountList.account[i].interestRate.ToString();
dt.Rows[i][col6] = accounts.Content.ServiceResponse.AccountList.account[i].accountOpenDate.ToString();
dt.Rows[i][col7] = accounts.Content.ServiceResponse.AccountList.account[i].currentStatus.ToString();
}
gvAccounts.DataSource = dt;
gvAccounts.DataBind();
}
else if (globalErrorID == "010041")
{
otp = utilities.newOTP();
Session["otp"] = otp;
}
else
{
lblTest.Text = accounts.Content.ServiceResponse.ServiceRespHeader.ErrorText.ToString();
string errorMessage = accounts.Content.ServiceResponse.ServiceRespHeader.ErrorDetails.ToString();
MessageBox.Show(errorMessage);
}
}
catch(NullReferenceException ex)
{
string otp;
otp = utilities.newOTP();
Session["otp"] = otp;
}
catch(Exception ex)
{
lblErrorMessage.Text = ex.ToString();
}
}
}
}
}
Created with the Personal Edition of HelpNDoc: Easily create CHM Help documents