C#

Features ›› Wealth ›› getFXForwardContract ›› Sample Code ››
Parent Previous Next

Get FX Forward Contract


1. getFXForwardContract.cs


We will first import these five packages as they are required to run the solution.




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




2. GetFXForwardContract.aspx.cs


We will first import these 13 packages as they are required to run the solution.




Code in Common


Step 1. We would first have to check if the user id and password are already stored inside the session. If the user id and password are stored, the solution will automatically populate into the user id and pin textbox. This is to provide convenience for the users as they do not need to manually type their user id and password repeatedly. Else, if the user id and password are not stored yet, we would then store them inside the session.




Step 2. The next step would be to store the details entered by the user. If the user id, password, and OTP already exist in session, users would not need to enter them again (refer to common stuff).



Step 3. Create the URL which would be posted to the server. User inputs need to be stored in the class created, and serialize into JSON format. In this function, both the header and content are needed.




Step 4. After creating the URL, we would post the URL to the server, and store response. The URL is being sent using a web request function, and a response will be send back from the server. The response need to be deserialized first into the ‘getFXForwardContract’ class.




Step 5. Next step would be to obtain the error code. If error code is ‘010000’ which means invocation successful, the solution would populate the attributes of the ‘getFXForwardContract’ class into the label(s). If error code is '010041', it means that the OTP has expired, and we will use the newOTP() function to prompt the user for their OTP again. Else, we will display the ErrorText and ErrorDetails.


The newOTP() function can be referred to under Common Stuff Section




Overview of getFXForwardContract.cs


using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using Newtonsoft.Json;


namespace Demo

{

   public class FXForwardContract2

   {

       public string open_date { get; set; }

       public string period { get; set; }

       public string amount { get; set; }

       public string maturity_date { get; set; }

       public string spot_rate { get; set; }

       public string quoteCurrencyAccountID { get; set; }

       public string baseCurrencyAccountID { get; set; }

       public string baseCurrency { get; set; }

       public string baseCurrencyInterestRate { get; set; }

       public string quoteCurrency { get; set; }

       public string referenceNumber { get; set; }

       public string customerID { get; set; }

       public string forward_rate { get; set; }

       public string quoteCurrencyInterestRate { get; set; }

       public string FX_ForwardID { get; set; }

       public string status { get; set; }

   }


   public class FXForwardContract

   {

       [JsonProperty("FXForwardContract")]

       public FXForwardContract2 FXForwardContract1 { get; set; }

   }


   public class getFXForwardContractServiceRespHeader

   {

       public string ErrorText { get; set; }

       public object ErrorDetails { get; set; }

       public string GlobalErrorID { get; set; }

   }


   public class getFXForwardContractServiceResponse

   {

       public FXForwardContract FXForwardContract { get; set; }

       public getFXForwardContractServiceRespHeader ServiceRespHeader { get; set; }

   }


   public class getFXForwardContractContent

   {

       public getFXForwardContractServiceResponse ServiceResponse { get; set; }

   }


   public class getFXForwardContractRootObject

   {

       public getFXForwardContractContent Content { get; set; }

   }

}


Download



Overview of GetFXForwardContract.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 GetFXForwardContract : System.Web.UI.Page

   {

       protected void Page_Load(object sender, EventArgs e)

       {

           if (Page.IsPostBack == false)

           {

               if (Session["userid"] != null)

               {

                   txtUserID.Text = (string)Session["userid"];

                   txtPassword.Text = (string)Session["pin"];

               }

           }

       }


       protected void btnSend_Click(object sender, EventArgs e)

       {

           if (Page.IsValid)

           {

               try

               {

                   string userID = txtUserID.Text;

                   Session["userid"] = userID;

                   string pin = txtPassword.Text;

                   Session["pin"] = pin;


                   string fxForwardID = txtfxForwardID.Text;


                   string otp;

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

                   {

                       otp = "";

                   }

                   else

                   {

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

                   }


                   var header = new HeaderJson();

                   header.userID = userID;

                   header.PIN = pin;

                   header.serviceName = "getFXForwardContract";

                   header.OTP = otp;

                   var headerJson = new HeaderJsonObject();

                   headerJson.Header = header;

                   string strHeader = JsonConvert.SerializeObject(headerJson);


                   var content = new ContentJson();

                   content.FX_ForwardID = fxForwardID;


                   var contentJson = new ContentJsonObject();

                   contentJson.Content = content;

                   string strContent = JsonConvert.SerializeObject(contentJson);


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


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

                   }


                   getFXForwardContractRootObject FX = new getFXForwardContractRootObject();

                   FX = JsonConvert.DeserializeObject<getFXForwardContractRootObject>(result);


                   string globalErrorID = FX.Content.ServiceResponse.ServiceRespHeader.GlobalErrorID.ToString();


                   if (globalErrorID == "010000")

                   {

                       lblopendate.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.open_date.ToString();

                       lblperiod.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.period.ToString();

                       lblamount.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.amount.ToString();

                       lblmaturitydate.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.maturity_date.ToString();

                       lblspotrate.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.spot_rate.ToString();

                       lblquoteCurrencyAccountID.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.quoteCurrencyAccountID.ToString();

                       lblbaseCurrencyAccountID.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.baseCurrencyAccountID.ToString();

                       lblbaseCurrency.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.baseCurrency.ToString();

                       lblbaseCurrencyInterestRate.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.baseCurrencyInterestRate.ToString();

                       lblquoteCurrency.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.quoteCurrency.ToString();

                       lblreferenceNumber.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.referenceNumber?.ToString() ?? " ";

                       lblcustomerID.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.customerID.ToString();

                       lblforwardrate.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.forward_rate.ToString();

                       lblquoteCurrencyInterestRate.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.quoteCurrencyInterestRate.ToString();

                       lblFXForwardID.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.FX_ForwardID.ToString();

                       lblstatus.Text = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.status.ToString();


                       string basecurrencyname = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.baseCurrency.ToString();

                       var z = utilities.getCurrencyList();

                       for (int i = 0; i < z.Count(); i++)

                       {

                           if (basecurrencyname == z[i].CurrencyCode)

                           {

                               lblbaseCurrencyCountryName.Text = z[i].CountryName;

                           }

                       }


                       string quotecurrencyname = FX.Content.ServiceResponse.FXForwardContract.FXForwardContract1.quoteCurrency.ToString();

                       for (int i = 0; i < z.Count(); i++)

                       {

                           if (quotecurrencyname == z[i].CurrencyCode)

                           {

                               lblquoteCurrencyCountryName.Text = z[i].CountryName;

                           }

                       }

                   }

                   else if (globalErrorID == "010041")

                   {

                       otp = utilities.newOTP();

                       Session["otp"] = otp;

                   }

                   else

                   {

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

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

                       lblErrorMessage.Text = errorMessage;

                   }

               }

               catch (Exception ex)

               {

                   lblExceptionMsg.Text = ex.ToString();

               }

           }

       }

   }

}


Download

Created with the Personal Edition of HelpNDoc: Produce electronic books easily