Created
May 3, 2012 20:59
-
-
Save t2-support-gists/2589445 to your computer and use it in GitHub Desktop.
WAP Csharp app1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AT&T API Samples - WAP app 1 | |
| ------------------------------ | |
| This file describes how to set up, configure and run the C# Applications of the AT&T RESTFul sample applications. | |
| It covers all steps required to register the application on DevConnect and, based on the generated API keys and secrets, | |
| create and run one's own full-fledged sample applications. | |
| 1. Configuration | |
| 2. Installation | |
| 3. Parameters | |
| 4. Running the application | |
| 1. Configuration | |
| Configuration consists of a few steps necessary to get an application registered on DevConnect with the proper services and | |
| endpoints, depending on the type of client-side application (autonomous/non-autonomous). | |
| To register an application, go to https://devconnect-api.att.com/ and login with your valid username and password. | |
| Next, choose "My Apps" from the bar at the top of the page and click the "Setup a New Application" button. | |
| Fill in the form, in particular all fields marked as "required". | |
| Be careful while filling in the "OAuth Redirect URL" field. It should contain the URL that the oAuth provider will redirect | |
| users to when he/she successfully authenticates and authorizes your application. | |
| NOTE: You MUST select WAP in the list of services under field 'Services' in order to use this sample application code. | |
| Having your application registered, you will get back an important pair of data: an API key and Secret key. They are | |
| necessary to get your applications working with the AT&T HTML5 APIs. See 'Adjusting parameters' below to learn how to use | |
| these keys. | |
| Initially your newly registered application is restricted to the "Sandbox" environment only. To move it to production, | |
| you may promote it by clicking the "Promote to production" button. Notice that you will get a different API key and secret, | |
| so these values in your application should be adjusted accordingly. | |
| Depending on the kind of authentication used, an application may be based on either the Autonomous Client or the Web-Server | |
| Client OAuth flow (see https://devconnect-api.att.com/docs/oauth-v1/client-credentials-grant-type or | |
| https://devconnect-api.att.com/docs/oauth-v1/authorization-code-grant-type respectively). | |
| 2. Installation | |
| ** Requirements | |
| 1. To run the this sample application you need an IIS Server. | |
| 2. Change the value of "href" at the following line in Default.aspx to point to the location of the "common.css" of "style" folder: | |
| <link rel="stylesheet" type="text/css" href="../../style/common.css"/> | |
| 3. Change the value of the "url" at the following line in common.css to point to the location of the "att.gif" of "images" folder. | |
| div#header { background:url(../images/att.gif) left center no-repeat; margin: 10px 5px} | |
| 3. Parameters | |
| Each sample application contains a config.web file. It holds configurable parameters described in an easy to read format. Please populate the following parameters in config.web as specified below: | |
| 1) api_key : {set the value as per your registered application 'API key' field value} | |
| 2) secret_key : {set the value as per your registered application 'Secret key' field value} | |
| 3) authorize_redirect_uri : {set the value as per your registered application 'OAuth Redirect URL' field value} | |
| 4) FQDN : https://api.att.com | |
| 5) scope : WAP | |
| 6) short_code : {set the value as per your registered application 'short code' field value} | |
| 7) AccessTokenFilePath : {set the value to the path of the file, which application creates and stores access token } | |
| 8) WAPFilePath : {set the value to the path of the file, which application creates and stores the content of wap to be sent as attachment } | |
| Note: If your application is promoted from Sandbox environment to Production environment and you decide to use production application settings, you must update parameters 1-2 as per production application details. | |
| 4. Running the application | |
| Suppose you copied the sample app files in your IIS server webroot/wap/app1/ folder, In order to run the sample application, type in'http://IIS_HOSTNAME/wap/app1/Default.aspx' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| Licensed by AT&T under 'Software Development Kit Tools Agreement.' September 2011 | |
| TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION: http://developer.att.com/sdk_agreement/ | |
| Copyright 2011 AT&T Intellectual Property. All rights reserved. http://developer.att.com | |
| For more information contact developer.support@att.com | |
| --> | |
| <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %> | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en"><head> | |
| <title>AT&T Sample Application - WAPPush</title> | |
| <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"> | |
| <link rel="stylesheet" type="text/css" href="../../style/common.css"/ > | |
| <script type="text/javascript" src="js/helper.js"> | |
| </script> | |
| <body> | |
| <form id="form1" runat="server"> | |
| <div id="container"> | |
| <!-- open HEADER --><div id="header"> | |
| <div> | |
| <div id="hcLeft">Server Time:</div> | |
| <div id="hcRight"> | |
| <asp:Label ID="serverTimeLabel" runat="server"></asp:Label> | |
| </div> | |
| </div> | |
| <div> | |
| <div id="hcLeft">Client Time:</div> | |
| <div id="hcRight"> | |
| <script language="JavaScript" type="text/javascript"> | |
| var myDate = new Date(); | |
| document.write(myDate); | |
| </script> | |
| </div> | |
| </div> | |
| <div> | |
| <div id="hcLeft">User Agent:</div> | |
| <div id="hcRight"> | |
| <script language="JavaScript" type="text/javascript"> | |
| document.write("" + navigator.userAgent); | |
| </script> | |
| </div> | |
| </div> | |
| <br clear="all" /> | |
| </div><!-- close HEADER --> | |
| <div id="wrapper"> | |
| <div id="content"> | |
| <h1>AT&T Sample Application - WAPPush</h1> | |
| <h2>Feature 1: Send basic WAP message</h2> | |
| </div> | |
| </div> | |
| <div id="navigation"> | |
| <table border="0" width="100%"> | |
| <tbody> | |
| <tr> | |
| <td width="20%" valign="top" class="label">Phone:</td> | |
| <td class="cell"> | |
| <asp:TextBox ID="txtAddressWAPPush" runat="server" | |
| TabIndex="1" Width="90%" MaxLength="16"></asp:TextBox> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td width="20%" valign="top" class="label">URL:</td> | |
| <td class="cell"> | |
| <asp:TextBox ID="txtUrl" runat="server" TabIndex="1" | |
| Width="90%">http://developer.att.com</asp:TextBox> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td valign="top" class="label">Service Type:</td> | |
| <td valign="top" class="cell"> | |
| <asp:RadioButtonList ID="RadioButtonList_ServiceType" runat="server" | |
| RepeatDirection="Horizontal" TextAlign="Left"> | |
| <asp:ListItem Selected="True">Service Indication</asp:ListItem> | |
| <asp:ListItem Enabled="False">ServiceLoading</asp:ListItem> | |
| </asp:RadioButtonList> | |
| </td> | |
| </tr> | |
| </tbody></table> | |
| <div class="warning"> | |
| <strong>WARNING:</strong><br /> | |
| At this time, AT&T only supports Service Type: Service Indication due to security concerns. | |
| </div> | |
| </div> | |
| <div id="extra"> | |
| <table border="0" width="100%"> | |
| <tbody> | |
| <tr> | |
| <td width="20%" valign="top" class="label">Alert Text:</td> | |
| <td align="left" class="cell" width="90%"> | |
| <asp:TextBox ID="txtAlert" runat="server" TextMode="MultiLine" Width="89%" | |
| Rows="5" EnableTheming="True" Height="78px">This is a sample WAP Push message.</asp:TextBox> | |
| </tr> | |
| </tbody></table> | |
| <table> | |
| <tbody> | |
| <tr> | |
| <td> | |
| <asp:Button runat="server" | |
| ID="btnSendWAP" Text="Send WAP message" TabIndex="6" | |
| BorderStyle="NotSet" OnClick="btnSendWAP_Click" style="margin-left: 0px" /> | |
| </td> | |
| </tr> | |
| </tbody></table> | |
| </div> | |
| <br clear="all" /> | |
| <div align="center"> | |
| <asp:Panel ID="wapPanel" runat="server" Font-Names="Calibri"> | |
| </asp:Panel> | |
| </div> | |
| <div id="footer" align="center"> | |
| <div style="float: right; width: 20%; font-size: 9px; text-align: right">Powered by AT&T Virtual Mobile</div> | |
| <p>� 2011 AT&T Intellectual Property. All rights reserved. <a href="http://developer.att.com/" target="_blank"> | |
| http://developer.att.com</a> | |
| <br> | |
| The Application hosted on this site are working examples intended to be used for | |
| reference in creating products to consume AT&T Services and not meant to be used | |
| as part of your product. The data in these pages is for test purposes only and | |
| intended only for use as a reference in how the services perform. | |
| <br> | |
| For download of tools and documentation, please go to <a href="https://devconnect-api.att.com/" target="_blank"> | |
| https://devconnect-api.att.com</a> | |
| <br> | |
| For more information contact <a href="mailto:developer.support@att.com"> | |
| developer.support@att.com</a> | |
| </div> | |
| <p> | |
| </p> | |
| </form> | |
| </body></html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Licensed by AT&T under 'Software Development Kit Tools Agreement.' September 2011 | |
| //TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION: http://developer.att.com/sdk_agreement/ | |
| //Copyright 2011 AT&T Intellectual Property. All rights reserved. http://developer.att.com | |
| //For more information contact developer.support@att.com | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.UI; | |
| using System.Web.UI.WebControls; | |
| using System.Net; | |
| using System.IO; | |
| using System.Web.Services; | |
| using System.Text; | |
| using System.Configuration; | |
| using System.Web.Script.Serialization; | |
| using System.Net.Sockets; | |
| using System.Security.Cryptography.X509Certificates; | |
| using System.Net.Security; | |
| using System.Collections.Specialized; | |
| using System.Drawing; | |
| using System.Net; | |
| using System.Net.Security; | |
| using System.Security.Cryptography.X509Certificates; | |
| using System.Net.Mail; | |
| using System.IO; | |
| public partial class Default : System.Web.UI.Page | |
| { | |
| string shortCode, FQDN, accessTokenFilePath, oauthFlow; | |
| string api_key, secret_key, auth_code, access_token, authorize_redirect_uri, scope, expiryMilliSeconds, refresh_token, lastTokenTakenTime, refreshTokenExpiryTime; | |
| string[] shortCodes; | |
| string wapFilePath; | |
| public bool readAccessTokenFile() | |
| { | |
| try | |
| { | |
| FileStream file = new FileStream(Request.MapPath(accessTokenFilePath), FileMode.OpenOrCreate, FileAccess.Read); | |
| StreamReader sr = new StreamReader(file); | |
| access_token = sr.ReadLine(); | |
| expiryMilliSeconds = sr.ReadLine(); | |
| refresh_token = sr.ReadLine(); | |
| lastTokenTakenTime = sr.ReadLine(); | |
| refreshTokenExpiryTime = sr.ReadLine(); | |
| sr.Close(); | |
| file.Close(); | |
| } | |
| catch (Exception ex) | |
| { | |
| return false; | |
| } | |
| if ((access_token == null) || (expiryMilliSeconds == null) || (refresh_token == null) || (lastTokenTakenTime == null) || (refreshTokenExpiryTime == null)) | |
| { | |
| return false; | |
| } | |
| return true; | |
| } | |
| /* This function validates the expiry of the access token and refresh token, | |
| * function compares the current time with the refresh token taken time, if current time is greater then | |
| * returns INVALID_REFRESH_TOKEN | |
| * function compares the difference of last access token taken time and the current time with the expiry seconds, if its more, | |
| * funciton returns INVALID_ACCESS_TOKEN | |
| * otherwise returns VALID_ACCESS_TOKEN | |
| */ | |
| public string isTokenValid() | |
| { | |
| try | |
| { | |
| DateTime currentServerTime = DateTime.UtcNow.ToLocalTime(); | |
| DateTime lastRefreshTokenTime = DateTime.Parse(refreshTokenExpiryTime); | |
| TimeSpan refreshSpan = currentServerTime.Subtract(lastRefreshTokenTime); | |
| if (currentServerTime >= lastRefreshTokenTime) | |
| { | |
| return "INVALID_ACCESS_TOKEN"; | |
| } | |
| DateTime lastTokenTime = DateTime.Parse(lastTokenTakenTime); | |
| TimeSpan tokenSpan = currentServerTime.Subtract(lastTokenTime); | |
| if (((tokenSpan.TotalSeconds)) > Convert.ToInt32(expiryMilliSeconds)) | |
| { | |
| return "REFRESH_ACCESS_TOKEN"; | |
| } | |
| else | |
| { | |
| return "VALID_ACCESS_TOKEN"; | |
| } | |
| } | |
| catch (Exception ex) | |
| { | |
| return "INVALID_ACCESS_TOKEN"; | |
| } | |
| } | |
| /* This function get the access token based on the type parameter type values. | |
| * If type value is 1, access token is fetch for client credential flow | |
| * If type value is 2, access token is fetch for client credential flow based on the exisiting refresh token | |
| */ | |
| public bool getAccessToken(int type, Panel panelParam) | |
| { | |
| /* This is client credential flow: */ | |
| if (type == 1) | |
| { | |
| try | |
| { | |
| DateTime currentServerTime = DateTime.UtcNow.ToLocalTime(); | |
| WebRequest accessTokenRequest = System.Net.HttpWebRequest.Create("" + FQDN + "/oauth/token"); | |
| accessTokenRequest.Method = "POST"; | |
| string oauthParameters = "client_id=" + api_key.ToString() + "&client_secret=" + secret_key.ToString() + "&grant_type=client_credentials&scope=WAP"; | |
| accessTokenRequest.ContentType = "application/x-www-form-urlencoded"; | |
| //sendSmsRequestObject.Accept = "application/json"; | |
| UTF8Encoding encoding = new UTF8Encoding(); | |
| byte[] postBytes = encoding.GetBytes(oauthParameters); | |
| accessTokenRequest.ContentLength = postBytes.Length; | |
| Stream postStream = accessTokenRequest.GetRequestStream(); | |
| postStream.Write(postBytes, 0, postBytes.Length); | |
| postStream.Close(); | |
| WebResponse accessTokenResponse = accessTokenRequest.GetResponse(); | |
| using (StreamReader accessTokenResponseStream = new StreamReader(accessTokenResponse.GetResponseStream())) | |
| { | |
| string jsonAccessToken = accessTokenResponseStream.ReadToEnd().ToString(); | |
| JavaScriptSerializer deserializeJsonObject = new JavaScriptSerializer(); | |
| AccessTokenResponse deserializedJsonObj = (AccessTokenResponse)deserializeJsonObject.Deserialize(jsonAccessToken, typeof(AccessTokenResponse)); | |
| access_token = deserializedJsonObj.access_token.ToString(); | |
| expiryMilliSeconds = deserializedJsonObj.expires_in.ToString(); | |
| refresh_token = deserializedJsonObj.refresh_token.ToString(); | |
| FileStream file = new FileStream(Request.MapPath(accessTokenFilePath), FileMode.OpenOrCreate, FileAccess.Write); | |
| StreamWriter sw = new StreamWriter(file); | |
| sw.WriteLine(access_token); | |
| sw.WriteLine(expiryMilliSeconds); | |
| sw.WriteLine(refresh_token); | |
| sw.WriteLine(currentServerTime.ToLongDateString() + " " + currentServerTime.ToLongTimeString()); | |
| lastTokenTakenTime = currentServerTime.ToLongDateString() + " " + currentServerTime.ToLongTimeString(); | |
| //Refresh token valids for 24 hours | |
| DateTime refreshExpiry = currentServerTime.AddHours(24); | |
| refreshTokenExpiryTime = refreshExpiry.ToLongDateString() + " " + refreshExpiry.ToLongTimeString(); | |
| sw.WriteLine(refreshExpiry.ToLongDateString() + " " + refreshExpiry.ToLongTimeString()); | |
| sw.Close(); | |
| file.Close(); | |
| // Close and clean up the StreamReader | |
| accessTokenResponseStream.Close(); | |
| return true; | |
| } | |
| } | |
| catch (Exception ex) | |
| { | |
| drawPanelForFailure(panelParam, ex.ToString()); | |
| return false; | |
| } | |
| } | |
| else if (type == 2) | |
| { | |
| try | |
| { | |
| DateTime currentServerTime = DateTime.UtcNow.ToLocalTime(); | |
| WebRequest accessTokenRequest = System.Net.HttpWebRequest.Create("" + FQDN + "/oauth/token"); | |
| accessTokenRequest.Method = "POST"; | |
| string oauthParameters = "grant_type=refresh_token&client_id=" + api_key.ToString() + "&client_secret=" + secret_key.ToString() + "&refresh_token=" + refresh_token.ToString(); | |
| accessTokenRequest.ContentType = "application/x-www-form-urlencoded"; | |
| //sendSmsRequestObject.Accept = "application/json"; | |
| UTF8Encoding encoding = new UTF8Encoding(); | |
| byte[] postBytes = encoding.GetBytes(oauthParameters); | |
| accessTokenRequest.ContentLength = postBytes.Length; | |
| Stream postStream = accessTokenRequest.GetRequestStream(); | |
| postStream.Write(postBytes, 0, postBytes.Length); | |
| postStream.Close(); | |
| WebResponse accessTokenResponse = accessTokenRequest.GetResponse(); | |
| using (StreamReader accessTokenResponseStream = new StreamReader(accessTokenResponse.GetResponseStream())) | |
| { | |
| string access_token_json = accessTokenResponseStream.ReadToEnd().ToString(); | |
| JavaScriptSerializer deserializeJsonObject = new JavaScriptSerializer(); | |
| AccessTokenResponse deserializedJsonObj = (AccessTokenResponse)deserializeJsonObject.Deserialize(access_token_json, typeof(AccessTokenResponse)); | |
| access_token = deserializedJsonObj.access_token.ToString(); | |
| expiryMilliSeconds = deserializedJsonObj.expires_in.ToString(); | |
| refresh_token = deserializedJsonObj.refresh_token.ToString(); | |
| FileStream file = new FileStream(Request.MapPath(accessTokenFilePath), FileMode.OpenOrCreate, FileAccess.Write); | |
| StreamWriter sw = new StreamWriter(file); | |
| sw.WriteLine(access_token); | |
| sw.WriteLine(expiryMilliSeconds); | |
| sw.WriteLine(refresh_token); | |
| sw.WriteLine(currentServerTime.ToLongDateString() + " " + currentServerTime.ToLongTimeString()); | |
| lastTokenTakenTime = currentServerTime.ToLongDateString() + " " + currentServerTime.ToLongTimeString(); | |
| //Refresh token valids for 24 hours | |
| DateTime refreshExpiry = currentServerTime.AddHours(24); | |
| refreshTokenExpiryTime = refreshExpiry.ToLongDateString() + " " + refreshExpiry.ToLongTimeString(); | |
| sw.WriteLine(refreshExpiry.ToLongDateString() + " " + refreshExpiry.ToLongTimeString()); | |
| sw.Close(); | |
| file.Close(); | |
| accessTokenResponseStream.Close(); | |
| return true; | |
| } | |
| } | |
| catch (Exception ex) | |
| { | |
| drawPanelForFailure(panelParam, ex.ToString()); | |
| return false; | |
| } | |
| } | |
| return false; | |
| } | |
| /* This function is used to neglect the ssl handshake error with authentication server */ | |
| public static void BypassCertificateError() | |
| { | |
| ServicePointManager.ServerCertificateValidationCallback += | |
| delegate(Object sender1, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) | |
| { | |
| return true; | |
| }; | |
| } | |
| /* This function is used to read access token file and validate the access token | |
| * this function returns true if access token is valid, or else false is returned | |
| */ | |
| public bool readAndGetAccessToken(Panel panelParam) | |
| { | |
| bool result = true; | |
| if (readAccessTokenFile() == false) | |
| { | |
| result = getAccessToken(1, panelParam); | |
| } | |
| else | |
| { | |
| string tokenValidity = isTokenValid(); | |
| if (tokenValidity.CompareTo("REFRESH_ACCESS_TOKEN") == 0) | |
| { | |
| result = getAccessToken(2, panelParam); | |
| } | |
| else if (string.Compare(isTokenValid(), "INVALID_ACCESS_TOKEN") == 0) | |
| { | |
| result = getAccessToken(1, panelParam); | |
| } | |
| } | |
| return result; | |
| } | |
| /* | |
| * On page load if query string 'code' is present, invoke get_access_token | |
| */ | |
| public void Page_Load(object sender, EventArgs e) | |
| { | |
| try | |
| { | |
| BypassCertificateError(); | |
| DateTime currentServerTime = DateTime.UtcNow; | |
| serverTimeLabel.Text = String.Format("{0:ddd, MMM dd, yyyy HH:mm:ss}", currentServerTime) + " UTC"; | |
| if (ConfigurationManager.AppSettings["WAPFilePath"] != null) | |
| { | |
| wapFilePath = ConfigurationManager.AppSettings["WAPFilePath"]; | |
| } | |
| else | |
| { | |
| wapFilePath = "~\\R2-csharp-dotnet\\wap\\app1\\WAPText.txt"; | |
| } | |
| wapFilePath = Request.MapPath(wapFilePath); | |
| if (ConfigurationManager.AppSettings["AccessTokenFilePath"] != null) | |
| { | |
| accessTokenFilePath = ConfigurationManager.AppSettings["AccessTokenFilePath"]; | |
| } | |
| else | |
| { | |
| accessTokenFilePath = "~\\WAPApp1AccessToken.txt"; | |
| } | |
| if (ConfigurationManager.AppSettings["FQDN"] == null) | |
| { | |
| drawPanelForFailure(wapPanel, "FQDN is not defined in configuration file"); | |
| return; | |
| } | |
| FQDN = ConfigurationManager.AppSettings["FQDN"].ToString(); | |
| if (ConfigurationManager.AppSettings["api_key"] == null) | |
| { | |
| drawPanelForFailure(wapPanel, "api_key is not defined in configuration file"); | |
| return; | |
| } | |
| api_key = ConfigurationManager.AppSettings["api_key"].ToString(); | |
| if (ConfigurationManager.AppSettings["secret_key"] == null) | |
| { | |
| drawPanelForFailure(wapPanel, "secret_key is not defined in configuration file"); | |
| return; | |
| } | |
| secret_key = ConfigurationManager.AppSettings["secret_key"].ToString(); | |
| if (ConfigurationManager.AppSettings["scope"] != null) | |
| { | |
| scope = ConfigurationManager.AppSettings["scope"].ToString(); | |
| } | |
| else | |
| { | |
| scope = "WAP"; | |
| } | |
| } | |
| catch (Exception ex) | |
| { | |
| drawPanelForFailure(wapPanel, ex.ToString()); | |
| Response.Write(ex.ToString()); | |
| } | |
| } | |
| /* This function is called to draw the table in the panelParam panel for success response */ | |
| private void drawPanelForSuccess(Panel panelParam, string message) | |
| { | |
| Table table = new Table(); | |
| table.Font.Name = "Sans-serif"; | |
| table.Font.Size = 9; | |
| table.BorderStyle = BorderStyle.Outset; | |
| table.Width = Unit.Pixel(650); | |
| TableRow rowOne = new TableRow(); | |
| TableCell rowOneCellOne = new TableCell(); | |
| rowOneCellOne.Font.Bold = true; | |
| rowOneCellOne.Text = "SUCCESS:"; | |
| //rowOneCellOne.BorderWidth = 1; | |
| rowOne.Controls.Add(rowOneCellOne); | |
| table.Controls.Add(rowOne); | |
| TableRow rowTwo = new TableRow(); | |
| TableCell rowTwoCellOne = new TableCell(); | |
| rowTwoCellOne.Font.Bold = true; | |
| rowTwoCellOne.Text = "Message ID:"; | |
| rowTwoCellOne.Width = Unit.Pixel(70); | |
| //rowOneCellOne.BorderWidth = 1; | |
| rowTwo.Controls.Add(rowTwoCellOne); | |
| TableCell rowTwoCellTwo = new TableCell(); | |
| rowTwoCellTwo.Text = message.ToString(); | |
| //rowTwoCellOne.BorderWidth = 1; | |
| rowTwo.Controls.Add(rowTwoCellTwo); | |
| table.Controls.Add(rowTwo); | |
| table.BorderWidth = 2; | |
| table.BorderColor = Color.DarkGreen; | |
| table.BackColor = System.Drawing.ColorTranslator.FromHtml("#cfc"); | |
| panelParam.Controls.Add(table); | |
| } | |
| /* This function draws table for failed response in the panalParam panel */ | |
| private void drawPanelForFailure(Panel panelParam, string message) | |
| { | |
| Table table = new Table(); | |
| table.Font.Name = "Sans-serif"; | |
| table.Font.Size = 9; | |
| table.BorderStyle = BorderStyle.Outset; | |
| table.Width = Unit.Pixel(650); | |
| TableRow rowOne = new TableRow(); | |
| TableCell rowOneCellOne = new TableCell(); | |
| rowOneCellOne.Font.Bold = true; | |
| rowOneCellOne.Text = "ERROR:"; | |
| rowOne.Controls.Add(rowOneCellOne); | |
| //rowOneCellOne.BorderWidth = 1; | |
| table.Controls.Add(rowOne); | |
| TableRow rowTwo = new TableRow(); | |
| TableCell rowTwoCellOne = new TableCell(); | |
| //rowTwoCellOne.BorderWidth = 1; | |
| rowTwoCellOne.Text = message.ToString(); | |
| rowTwo.Controls.Add(rowTwoCellOne); | |
| table.Controls.Add(rowTwo); | |
| table.BorderWidth = 2; | |
| table.BorderColor = Color.Red; | |
| table.BackColor = System.Drawing.ColorTranslator.FromHtml("#fcc"); | |
| panelParam.Controls.Add(table); | |
| } | |
| /* | |
| * This function is called when user clicks on send wap message button. | |
| * this funciton calls send wap message API to send the wap message. | |
| */ | |
| protected void btnSendWAP_Click(object sender, EventArgs e) | |
| { | |
| try | |
| { | |
| if (readAndGetAccessToken(wapPanel) == true) | |
| { | |
| if (access_token == null || access_token.Length <= 0) | |
| { | |
| return; | |
| } | |
| sendWapPush(); | |
| } | |
| } | |
| catch (Exception ex) | |
| { | |
| drawPanelForFailure(wapPanel, ex.ToString()); | |
| } | |
| } | |
| /*this function validates string against the valid msisdn */ | |
| private Boolean isValidMISDN(string number) | |
| { | |
| string smsAddressInput = number; | |
| string smsAddressFormatted; | |
| string phoneStringPattern = "^\\d{3}-\\d{3}-\\d{4}$"; | |
| if (System.Text.RegularExpressions.Regex.IsMatch(smsAddressInput, phoneStringPattern)) | |
| { | |
| smsAddressFormatted = smsAddressInput.Replace("-", ""); | |
| } | |
| else | |
| { | |
| smsAddressFormatted = smsAddressInput; | |
| } | |
| long tryParseResult = 0; | |
| if (smsAddressFormatted.Length == 16 && smsAddressFormatted.StartsWith("tel:+1")) | |
| { | |
| smsAddressFormatted = smsAddressFormatted.Substring(6, 10); | |
| } | |
| else if (smsAddressFormatted.Length == 15 && smsAddressFormatted.StartsWith("tel:1")) | |
| { | |
| smsAddressFormatted = smsAddressFormatted.Substring(5, 10); | |
| } | |
| else if (smsAddressFormatted.Length == 14 && smsAddressFormatted.StartsWith("tel:")) | |
| { | |
| smsAddressFormatted = smsAddressFormatted.Substring(4, 10); | |
| } | |
| else if (smsAddressFormatted.Length == 12 && smsAddressFormatted.StartsWith("+1")) | |
| { | |
| smsAddressFormatted = smsAddressFormatted.Substring(2, 10); | |
| } | |
| else if (smsAddressFormatted.Length == 11 && smsAddressFormatted.StartsWith("1")) | |
| { | |
| smsAddressFormatted = smsAddressFormatted.Substring(1, 10); | |
| } | |
| if ((smsAddressFormatted.Length != 10) || (!long.TryParse(smsAddressFormatted, out tryParseResult))) | |
| { | |
| return false; | |
| } | |
| return true; | |
| } | |
| /* This function calls send wap message api to send wap messsage */ | |
| private void sendWapPush() | |
| { | |
| try | |
| { | |
| if (isValidMISDN(txtAddressWAPPush.Text.ToString()) == false) | |
| { | |
| drawPanelForFailure(wapPanel, "Invalid Number: " + txtAddressWAPPush.Text.ToString()); | |
| return; | |
| } | |
| string wapAddress = txtAddressWAPPush.Text.ToString().Replace("tel:+1", ""); | |
| wapAddress = wapAddress.ToString().Replace("tel:+", ""); | |
| wapAddress = wapAddress.ToString().Replace("tel:1", ""); | |
| wapAddress = wapAddress.ToString().Replace("tel:", ""); | |
| wapAddress = wapAddress.ToString().Replace("tel:", ""); | |
| wapAddress = wapAddress.ToString().Replace("-", ""); | |
| string wapMessage = txtAlert.Text.ToString(); | |
| string wapUrl = txtUrl.Text.ToString(); | |
| string boundary = "----------------------------" + DateTime.Now.Ticks.ToString("x"); | |
| string wapData = ""; | |
| wapData += "Content-Disposition: form-data; name=\"PushContent\"\n"; | |
| wapData += "Content-Type: text/vnd.wap.si\n"; | |
| wapData += "Content-Length: 20\n"; | |
| wapData += "X-Wap-Application-Id: x-wap-application:wml.ua\n\n"; | |
| wapData += "<?xml version='1.0'?>\n"; | |
| wapData += "<!DOCTYPE si PUBLIC \"-//WAPFORUM//DTD SI 1.0//EN\" "+"\"http://www.wapforum.org/DTD/si.dtd\">\n"; | |
| wapData += "<si>\n"; | |
| wapData += "<indication href=\"" + wapUrl.ToString() +"\" " + "action=\"signal-medium\" si-id=\"6532\">\n"; | |
| wapData += wapMessage.ToString(); | |
| wapData += "\n</indication>"; | |
| wapData += "\n</si>"; | |
| StreamWriter wapFileWriter = File.CreateText(wapFilePath); | |
| wapFileWriter.Write(wapData); | |
| wapFileWriter.Close(); | |
| //string filename = Path.GetFileName(wapFilePath); | |
| //FileStream fs = new FileStream(wapFilePath, FileMode.Open, FileAccess.Read); | |
| //BinaryReader br = new BinaryReader(fs); | |
| //byte[] pushFile = br.ReadBytes((int)fs.Length); | |
| //br.Close(); | |
| //fs.Close(); | |
| StreamReader sr = new StreamReader(wapFilePath); | |
| string pushFile = sr.ReadToEnd(); | |
| sr.Close(); | |
| //string headerTemplate = "Content-Disposition: form-data; name=\"_attachments\"; filename=\"WAPPush.txt\"\r\n Content-Type: application/octet-stream\r\n\r\n"; | |
| HttpWebRequest wapRequestObject = (HttpWebRequest)WebRequest.Create("" + FQDN + "/1/messages/outbox/wapPush?access_token=" + access_token.ToString()); | |
| wapRequestObject.ContentType = "multipart/form-data; type=\"application/x-www-form-urlencoded\"; start=\"\"; boundary=\"" + boundary + "\"\r\n"; | |
| wapRequestObject.Method = "POST"; | |
| wapRequestObject.KeepAlive = true; | |
| string sendWapData = "address=" + Server.UrlEncode("tel:" + wapAddress.ToString()) + "&subject=" + Server.UrlEncode("Wap Message") + "&priority=High&content-type=" + Server.UrlEncode("application/xml"); | |
| //Wap Push Data | |
| string data = ""; | |
| data += "--" + boundary + "\r\n"; | |
| data += "Content-type: application/x-www-form-urlencoded; charset=UTF-8\r\n"; | |
| data += "Content-Transfer-Encoding: 8bit\r\n"; | |
| data += "Content-ID: <startpart>\r\n"; | |
| data += "Content-Disposition: form-data; name=\"root-fields\"\r\n\r\n" + sendWapData.ToString() + "\r\n"; | |
| data += "--" + boundary + "\r\n"; | |
| data += "Content-Disposition: attachment; name=Push.txt\r\n\r\n"; | |
| data += "Content-Type: text/plain\r\n"; | |
| data += "Content-ID: <Push.txt>\r\n"; | |
| data += "Content-Transfer-Encoding: binary\r\n"; | |
| data += pushFile + "\r\n"; | |
| data += "--" + boundary + "--\r\n"; | |
| UTF8Encoding encoding = new UTF8Encoding(); | |
| byte[] postBytes = encoding.GetBytes(data); | |
| wapRequestObject.ContentLength = postBytes.Length; | |
| using (Stream writeStream = wapRequestObject.GetRequestStream()) | |
| { | |
| writeStream.Write(postBytes, 0, postBytes.Length); | |
| writeStream.Close(); | |
| } | |
| HttpWebResponse wapResponseObject = (HttpWebResponse)wapRequestObject.GetResponse(); | |
| using (StreamReader wapResponseStream = new StreamReader(wapResponseObject.GetResponseStream())) | |
| { | |
| string strResult = wapResponseStream.ReadToEnd(); | |
| JavaScriptSerializer deserializeJsonObject = new JavaScriptSerializer(); | |
| SendWapResponse deserializedJsonObj = (SendWapResponse)deserializeJsonObject.Deserialize(strResult, typeof(SendWapResponse)); | |
| drawPanelForSuccess(wapPanel, deserializedJsonObj.id.ToString()); | |
| wapResponseStream.Close(); | |
| } | |
| wapRequestObject = null; | |
| if (File.Exists(wapFilePath)) | |
| { | |
| System.IO.FileInfo fileInfo = new System.IO.FileInfo(wapFilePath); | |
| fileInfo.Delete(); | |
| } | |
| } | |
| catch (Exception ex) | |
| { | |
| if (File.Exists(wapFilePath)) | |
| { | |
| System.IO.FileInfo fileInfo = new System.IO.FileInfo(wapFilePath); | |
| fileInfo.Delete(); | |
| } | |
| drawPanelForFailure(wapPanel, ex.ToString()); | |
| } | |
| } | |
| } | |
| /* Following are the data structures used for the applicaiton */ | |
| public class AccessTokenResponse | |
| { | |
| public string access_token; | |
| public string refresh_token; | |
| public string expires_in; | |
| } | |
| public class SendWapResponse | |
| { | |
| public string id; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <!-- | |
| For more information on how to configure your ASP.NET application, please visit | |
| http://go.microsoft.com/fwlink/?LinkId=169433 | |
| --> | |
| <configuration> | |
| <system.web> | |
| <compilation debug="true" targetFramework="4.0"/> | |
| <customErrors mode="Off"></customErrors> | |
| </system.web> | |
| <appSettings> | |
| <!-- This is mandatory key and value should be equal | |
| to WAP Service registered application 'API key' | |
| example: value="2726942c798aaaaa4bd3625d95cc7355"--> | |
| <add key="api_key" value=""/> | |
| <!-- This is mandatory key and value should be equal | |
| to WAP Service registered application 'Secret key' | |
| example: value="5fb012657aaa6c7d"--> | |
| <add key="secret_key" value=""/> | |
| <!-- This is mandatory key and value should be equal | |
| to https://api.att.com for production environment | |
| example: value="https://api.att.com"--> | |
| <add key="FQDN" value=""></add> | |
| <!-- This is optional key and if you want to define, then the value should be equal | |
| to "WAP" | |
| example: value="WAP"--> | |
| <add key="scope" value=""/> | |
| <!-- This is optional key, which points to the file path, and application uses this key's value to create/update | |
| the file with access token information, so, make sure to give write access to the folder defined. | |
| If the key is not defined, WAPApp1AccessToken.txt will be created at root folder, so, make sure to give | |
| write access to the root folder | |
| example: value="~\\csharpapps\\wap\\app1\\WAPApp1AccessToken.txt" --> | |
| <add key="AccessTokenFilePath" value =""/> | |
| <!-- This is mandatory key. Application creates this file and send as an attachment with message, | |
| so make sure to give write access to the directory | |
| example: value="~\\csharpapp\\wap\\app1\\WAPText.txt"--> | |
| <add key="WAPFilePath" value=""/> | |
| </appSettings> | |
| </configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment