Setting Up Windows Push Notification Services (WNS) Server Side - windows

I'm trying to set up Windows Push Notification Services (WNS) for Windows server 2013. But I can't seem to find any documentation regarding this online, as most of it just explained more towards the client side.
Any guidance or reference is highly appreciated.

if you wanted to do push notification service for Windows, then you're correct that windows notification service is the right one. However it is a cloud notification service just like Apple Push Notification Service (APNS) or Google Cloud Messaging (GCM). However you can host your own service in Windows Server 2013 to talk to WNS. Otherwise you can use Azure Notification Hub which can integrate with your backend. So if you go for Azure Notification Hub, you will need to build a backend that talks to to Azure. Take a look at the link

Related

Is it possible to create a custom app for Microsoft Teams that dosn't use a central service provider?

I am working on adding support for our cloud storage solution to MS Teams but there is no central server you can send http messages to and get meaningful relies back from. I have no experience with creating Teams apps so I was hoping someone with Teams apps experience could tell me if this is even possible. At this point I only need my app to work on Windows and OS X.
This is how I would like my Teams App to work:
Each member of the team already has our cloud storage app running locally on their machine which provides access to the files.
Within MS Teams the user adds a file reference to a message via a message extension that would result in a link unfurl creating a card that contains an 'Open' button. The URL in the card would be one generated by our locally running cloud storage app. Other members of the team could then open this file by clicking the 'Open' button. The action of the open button would be to send the URL to our cloud storage app that would then open the local copy of the file on that team members machine.
Is it possible to do something like this within a Teams app? The communication between the Teams app and our cloud storage app would be done over our own protocol.
If it weren't for the fact that all bot communication must be done over https rather than http the local cloud storage app could act as the server.
All the communication in Teams with 3P apps needs to happen over https public endpoint. You could use ngrok to tunnel to local.

Send notification to UWP app from remote server without cloud support

How can I notify a UWP app from remote server? Is it possible with Windows notification service, I don't want implement with cloud service. Is there any possibility?
Yes, That's absolutely possible. The server-side component can be any cloud hosted service or it can be your own custom implementation and hosted somewhere on your on-prem servers.
You can create a simple service using https://learn.microsoft.com/en-us/previous-versions/windows/apps/hh868252(v=win.10) and host that on your remote server.

Appcelerator 503 service unavailable

I'm receiving a 503 service unavailable when my app connects to Appcelerator cloud services.
You can see this also if you go to:
https://cloud.appcelerator.com/
Appcelerator Cloud Services, or ACS, have been down since October 1st. Emails have been sent out for a long time before that to warn you about it. You need to migrate your existing apps to Arrow.
Appcelerator Support can help you with that. Contact them via your direct channel (if you have a direct support channel) or use Intercom, it is the red bubble on the bottom right if you go to https://platform.appcelerator.com

Do i need to place my App in Windows Store to avail WNS Service?

Scenario:
I'm building a Windows 8 App which is outside of Windows Store. Here I wish to receive notifications using WNS. I have a Publisher which will generate events based on the user action on UI (Ex: Like Uploading a file, Once file upload is completed the event will be generated). I created a internal WCF Service(End Point) which will subscribe to the publisher and listens to the notifications sent by the Publisher. I'm integrating my Listener to WNS service in turn, once notifications are received by the listener, in turn will be sent to WNS Service to process and deliver to specific Device.
Here my question is in order to avail WNS service , do I need to keep my app in Windows Store ?? Is it mandatory ???
And Is their any way to implement push notifications in Windows 8 without using WNS Service????
Please clarify me on this.
Any help is appreciated
Thanks
Karthik Vadla
An app that needs to use the Windows Push Notifications Service (WNS) will also need to be present in the store. For an app to use WNS, it needs to register with the store app portal, which provides an app with a package security identifier (SID) and secret key, which are required to authenticate with and use WNS.
Windows Store Apps that need push notifications can only use WNS.
Traditional desktop applications are not able to use WNS, although they could implement their own version of push notifications.

Push Notification - Dedicated server required?

I'm thinking of developing an app that uses Microsoft Push Notification. However, I'm not quite sure what I need on my server. I've currently got a shared hosting account. Can I use this as my server to use Push Notification, or does the server have to be dedicated?
Thanks
The short answer is yes you can use shared or dedicated hosting to send out push notifications. Shared just means there are other web servers running on the same physical hardware which does not effect the api's available to your service.
You can get some more background on this if you want to check out Peter Torr's Mix 2010 talk on the video at around 28 minutes in.

Resources