C#

Features ›› Product ›› applyForLoan ›› Sample Code ››
Parent Previous Next

Apply For Loan



1. applyForLoan.cs


These four packages are required to be used.









Step 1. Create class file to store content of the web response.








2. applyForLoan.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 ‘applyForLoan’ 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  applyForLoan.cs



using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;


namespace Demo

{

   public class DepositAccountBalance

   {

       public Get_Deposit_Account_Balance_Content Content { get; set; }

   }


   public class Get_Deposit_Account_Balance_Content

   {

       public Get_Deposit_Account_Balance_ServiceResponse ServiceResponse { get; set; }

   }


   public class Get_Deposit_Account_Balance_ServiceResponse

   {

       public Get_Deposit_Account_Balance_DepositAccount DepositAccount { get; set; }

       public Get_Deposit_Account_Balance_ServiceRespHeader ServiceRespHeader { get; set; }

   }


   public class Get_Deposit_Account_Balance_DepositAccount

   {

       public string HomeBranch { get; set; }

       public Get_Deposit_Account_Balance_Casaaccount Casaaccount { get; set; }

       public string AssignedAccountForAccountManagementFeeDeduction { get; set; }

       public string AccountOpenDate { get; set; }

       public string Balance { get; set; }

       public string CurrentStatus { get; set; }

       public string Currency { get; set; }

       public string CustomerID { get; set; }

       public string MaturityDate { get; set; }

       public string IsServiceChargeWaived { get; set; }

       public string InterestRate { get; set; }

       public Get_Deposit_Account_Balance_Maintenancehistory Maintenancehistory { get; set; }

       public string OfficerID { get; set; }

       public string Narrative { get; set; }

       public string PenaltyRate { get; set; }

       public Get_Deposit_Account_Balance_Product Product { get; set; }

   }


   public class Get_Deposit_Account_Balance_Casaaccount

   {

       public object DueInterestAmount { get; set; }

       public object AccrueInterestAmount { get; set; }

       public object AccountCloseDate { get; set; }

       public string DepositTerm { get; set; }

       public string IsRestricted { get; set; }

       public string MinorStatus { get; set; }

       public string InterestPayoutAccount { get; set; }

       public string MinimumAmount { get; set; }

       public string ParentAccountFlag { get; set; }

   }


   public class Get_Deposit_Account_Balance_Maintenancehistory

   {

       public string LastMaintenanceOfficer { get; set; }

       public string LastTransactionBranch { get; set; }

   }


   public class Get_Deposit_Account_Balance_Product

   {

       public string DateBasisForRate { get; set; }

       public string ProductName { get; set; }

       public string CompoundInterestRateBasis { get; set; }

       public string ProductID { get; set; }

       public string RateChartCode { get; set; }

   }


   public class Get_Deposit_Account_Balance_ServiceRespHeader

   {

       public string ErrorText { get; set; }

       public object ErrorDetails { get; set; }

       public string GlobalErrorID { get; set; }

   }

}



Download







Overview of  applyForLoan.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 System.Collections.Specialized;

using System.Configuration;

using System.Net;

using System.IO;

using System.Windows.Forms;


namespace Demo

{

   public partial class applyForLoan : 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)

       {

           try

           {

               string userID = txtUserID.Text;

               Session["userid"] = userID;

               string pin = txtPassword.Text;

               Session["pin"] = pin;

               string accountNo = txtAccountID.Text;

               string otp;

               if (Session["otp"] == null)

               {

                   otp = "";

               }

               else

               {

                   otp = Session["otp"].ToString();

               }


               var header = new HeaderJson();

               header.userID = userID;

               header.PIN = pin;

               header.OTP = otp;

               header.serviceName = "getDepositAccountDetails";

               var headerObj = new HeaderJsonObject();

               headerObj.Header = header;


               var content = new ContentJson();

               content.accountID = accountNo;

               var contentObj = new ContentJsonObject();

               contentObj.Content = content;


               string headerJson = JsonConvert.SerializeObject(headerObj);

               string contentJson = JsonConvert.SerializeObject(contentObj);


               string url = "http://tbankonline.com/SMUtBank_API/Gateway?Header=" + headerJson + "&Content=" + contentJson;


               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();

               }


               DepositAccountBalance depositObj = new DepositAccountBalance();

               depositObj = JsonConvert.DeserializeObject<DepositAccountBalance>(result);


               string ErrorID = depositObj.Content.ServiceResponse.ServiceRespHeader.GlobalErrorID?.ToString() ?? "-";


               if (ErrorID == "010000")

               {

                   lblBalance.Text = depositObj.Content.ServiceResponse.DepositAccount.Balance?.ToString() ?? "-";

               }

               else if (ErrorID == "010041")

               {

                   otp = utilities.newOTP();

                   Session["otp"] = otp;

               }

               else

               {

                   lblTest.Text = depositObj.Content.ServiceResponse.ServiceRespHeader.ErrorText.ToString();

                   string errorMessage = depositObj.Content.ServiceResponse.ServiceRespHeader.ErrorDetails.ToString();

                   MessageBox.Show(errorMessage);

               }

           }


           catch(Exception ex)

           {

               lblExceptionMsg.Text = ex.ToString();

           }

           

       }

   }

}



Download





Created with the Personal Edition of HelpNDoc: Full-featured Help generator