C#

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

Open FX Forward Contract


1. openFXForwardContract.cs


These four packages are required to be used.



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




2. OpenFXForwardContract.aspx.cs


These 13 packages are required to be used.




Code in Common


(1). Create an FXForwardContract1 ListObject Variable. 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. "Add" Button. This would allow user to update more than one open date, maturity date, period and amount before clicking the send button together with other inputs.

When the add button is clicked, an array which consist of open date, maturity date, period and amount would be added to the respmsg1 List.




Step3. Clear Button. When the clear button is clicked, the label, openDate, maturityDate, period and amount text box would be cleared.




Step 4. Send Button. Store details entered by the user. If user id, password, and OTP exist in session, user need not enter again (refer to common stuff).




Step 5. 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, both header and content are needed.




Step 6. 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 ‘openFXForwardContract' class.


                                             



Step 7. Obtain error code. If error code is ‘010000’ which means invocation successful, populate attributes of the ‘openFXForwardContract’ 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 openFXForwardContract.cs


using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;


namespace Demo

{

   public class openFXForwardContractFXForwardContract

   {

       public string FX_ForwardID { get; set; }

   }


   public class openFXForwardContractServiceRespHeader

   {

       public string ErrorText { get; set; }

       public object ErrorDetails { get; set; }

       public string GlobalErrorID { get; set; }

   }


   public class openFXForwardContractServiceResponse

   {

       public openFXForwardContractFXForwardContract FXForwardContract { get; set; }

       public openFXForwardContractServiceRespHeader ServiceRespHeader { get; set; }

   }


   public class openFXForwardContractContent

   {

       public openFXForwardContractServiceResponse ServiceResponse { get; set; }

   }


   public class openFXForwardContractRootObject

   {

       public openFXForwardContractContent Content { get; set; }

   }

}



Download



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

   {

       List<FXForwardContract1> respmsg1;

       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"];

               }

           }


               if (!Page.IsPostBack)

               {

                   List<FXForwardContract1> respmsg1 = new List<FXForwardContract1>();

                   Session["FXFC"] = respmsg1;

               }

               else

               {

                   respmsg1 = (List<FXForwardContract1>)Session["FXFC"];

               }

       }


       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 referenceNumber = txtreferenceNumber.Text;

                   string baseCurrencyAccountID = txtbaseCurrencyAccountID.Text;

                   string quoteCurrencyAccountID = txtquoteCurrencyAccountID.Text;

                   string baseCurrency = txtbaseCurrency.Text;

                   string quoteCurrency = txtquoteCurrency.Text;


                   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 = "openFXForwardContract";

                   header.OTP = otp;

                   var headerJson = new HeaderJsonObject();

                   headerJson.Header = header;

                   string strHeader = JsonConvert.SerializeObject(headerJson);


                   var content = new ContentJson();

                   content.referenceNumber = referenceNumber;

                   content.baseCurrencyAccountID = baseCurrencyAccountID;

                   content.quoteCurrencyAccountID = quoteCurrencyAccountID;

                   content.baseCurrency = baseCurrency;

                   content.quoteCurrency = quoteCurrency;

                   content.FXForwardSegment = respmsg1;

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

                   }


                   openFXForwardContractRootObject fxfc = new openFXForwardContractRootObject();

                   fxfc = JsonConvert.DeserializeObject<openFXForwardContractRootObject>(result);


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


                   if (globalErrorID == "010000")

                   {

                       lblfxForwardID.Text = fxfc.Content.ServiceResponse.FXForwardContract.FX_ForwardID.ToString();

                   }

                   else if (globalErrorID == "010041")

                   {

                       otp = utilities.newOTP();

                       Session["otp"] = otp;

                   }

                   else

                   {

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

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

                       lblErrorMessage.Text = errorMessage;

                   }

               }

               catch (Exception ex)

               {

                   lblExceptionMsg.Text = ex.ToString();

               }

           }

       }


       protected void btnAdd_Click1(object sender, EventArgs e)

       {

           string openDate1 = txtopenDate.Text;

           string maturityDate1 = txtmaturityDate.Text;

           string period1 = txtperiod.Text;

           string amount1 = txtamount.Text;


           respmsg1.Add(new FXForwardContract1 { openDate = openDate1, maturityDate = maturityDate1, period = period1, amount = amount1});


           lblAdd.Text = "Added";

       }


       protected void btnClear_Click(object sender, EventArgs e)

       {

           lblAdd.Text = "";

           txtopenDate.Text = "";

           txtmaturityDate.Text = "";

           txtperiod.Text = "";

           txtamount.Text = "";

       }

   }

}


Download

Created with the Personal Edition of HelpNDoc: Benefits of a Help Authoring Tool