I've finished the integration work for WNS into icepush-ee. Users of the system must specify their applications SID and secrete via system properties or server context params. For example:
<context-param>
<param-name>com.icesoft.icepush.wns.packageSid</param-name>
<param-value>ms-app://myapp_SID</param-value>
</context-param>
<context-param>
<param-name>com.icesoft.icepush.wns.clientSecret</param-name>
<param-value>myapp_secrete</param-value>
</context-param>
The default notification method is a toast message with the following XAML.
<toast launch="">
<visual lang="en-US">
<binding template="ToastText03">
<text id="1">
{subject}
</text>
<text id="2">
{details}
</text>
</binding>
</visual>
</toast>
The subject and details params are filled with what ever subject and details that were specified in the PushNotification originator.
I've finished the integration work for WNS into icepush-ee. Users of the system must specify their applications SID and secrete via system properties or server context params. For example:
<context-param>
<param-name>com.icesoft.icepush.wns.packageSid</param-name>
<param-value>ms-app://myapp_SID</param-value>
</context-param>
<context-param>
<param-name>com.icesoft.icepush.wns.clientSecret</param-name>
<param-value>myapp_secrete</param-value>
</context-param>
The default notification method is a toast message with the following XAML.
{subject}<toast launch="">
<visual lang="en-US">
<binding template="ToastText03">
<text id="1">
</text>
{details}<text id="2">
</text>
</binding>
</visual>
</toast>
The subject and details params are filled with what ever subject and details that were specified in the PushNotification originator.