一起學Windows Phone 7開發(十二.Push Notification)

來源:互聯網
上載者:User

一.簡介

Push Notification 是windows phone 7中的特色功能之一,這個功能可以變相的讓普通開發人員實現多任務(儘管並不是真正的多任務)。它為手機端應用和webservice之間建立了一條專用的、持久的、穩定的通道來推播通知。當通道建立後,手機端應用可以接收webservice的任何資訊。

 

二.分類

對於Push Notification主要有三種:

1.       Tile Notification:

是可以改變Quick Lanuch area內的表徵圖內容(圖片,文字等)的方式。不過這個需要把程式pin to start,才可以使用。

2.       Toast Notification:

是在螢幕上面可以顯示一個提示欄的方式。當點擊提示欄可以開啟應用程式。

3.       Raw Notification:

是直接使用Http方式來接收(http polling)通知的方式。並且是不可見的,以後台方式傳送通知。

對於以上幾種通知,都需要一個服務端以push notification方式來發送通知, 也就是說要使用push notification都需要一個服務端。

三.建立伺服器端

對於伺服器端來說,發送不同的通知,都是以Http方式發出去的,但是在發送時,需要配置相應的參數,來告訴Push Notification Service所發送的類型是什麼。

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(channelUri);

     request.Method = WebRequestMethods.Http.Post;

     request.ContentType = "text/xml; charset=utf-8";

     request.ContentLength = notificationmessage.Length;

     request.Headers["X-MessageID"] = Guid.NewGuid().ToString();

     

 

     1.Toast notification:

         request.Headers["X-WindowsPhone-Target"] = "toast";

request.Headers[X-NotificationClass]

 

Message :

"Content-Type: text/xml\r\nX-WindowsPhone-Target: token\r\n\r\n"

<?xml version="1.0" encoding="utf-8"?>

<wp:Notification xmlns:wp="WPNotification">

     <wp:Tile>

       <wp:BackgroundImage>

            <background image path>

        </wp:BackgroundImage>

       <wp:Count>

             <count>

        </wp:Count>

       <wp:Title>

          <title>

       </wp:Title>

    </wp:Tile>

</wp:Notification>

 

      2.Token notification:

         request.Headers["X-WindowsPhone-Target"] = "token";

request.Headers[X-NotificationClass]

 

Message:

“Content-Type: text/xml\r\nX-WindowsPhone-Target: toast\r\n\r\n”

<?xml version="1.0" encoding="utf-8"?>

<wp:Notification xmlns:wp="WPNotification">

     <wp:Toast>

        <wp:Text1>

               <string>

        </wp:Text1>

        <wp:Text2>

        <string>

        </wp:Text2>

    </wp:Toast>

</wp:Notification>

3.raw notification

request.Headers[X-NotificationClass]

 

request.BeginGetRequestStream();

Stream requestStream = request.EndGetRequestStream();

requestStream.BeginWrite(message);

 

Response 資料

response.StatusCode//Ok 表示成功,否則可以查下面相應的錯誤碼錶,同時也可以查表得到目前狀態

response.Headers[X-MessageID]

response.Headers[X-DeviceConnectionStatus]

response.Headers[X-SubscriptionStatus]

response.Headers[X-NotificationStatus]

 

 

 

 

 

 

 

四.建立用戶端

HttpNotificationChannel  httpChannel = HttpNotificationChannel.Find(ChannelName);

httpChannel.Open();

//綁定notification

httpChannel.BindToShellToast();

httpChannel.BindToShellTile(uris);

 

//擷取notification channel URI

httpChannel.ChannelUriUpdated += new EventHandler<NotificationChannelUriEventArgs>(httpChannel_ChannelUriUpdated);

//擷取Raw notification

httpChannel.HttpNotificationReceived += new EventHandler<HttpNotificationEventArgs>(httpChannel_HttpNotificationReceived);

          // 擷取Toast notification

 httpChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(httpChannel_ShellToastNotificationReceived);

      // 擷取Push notification error message

httpChannel.ErrorOccurred += new EventHandler<NotificationChannelErrorEventArgs>(httpChannel_ExceptionOccurred);

對於Tile notification是由系統來接收的,所以這裡沒有相應的Event.

以上就是push notification的一些基本步驟,具體的執行個體在WP7TrainningKit裡有。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.