Creating a Notification Channel for an Authenticated Cloud Service

,

As mentioned earlier in this chapter, the HttpNotificationChannel has a constructor that accepts the fully qualified domain name (FQDN) of the cloud service certificate. The FQDN must match the registered certificate’s subject name, which is the CN attribute. An example of a FQDN is www.example.com. Creating a channel using an FQDN is demonstrated in the following excerpt:

using (HttpNotificationChannel channel
         = new HttpNotificationChannel(channelName, "www.example.com"))
{
    channel.Open();
    channel.BindToShellEntryPoint();
    channel.BindToShellNotification();
}

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.226.187.101