Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I work with desktop application for Windows and I have to add push notification logic, especially receiveng push notification from server. I have read about SignalR and Pushbullet.
SignalR is good but it supports winforms and starts from Windows 8.
PushBullet seems to be good but I still read guides.
So, my questions are:
Do other push frameworks(for winforms) exist?
Is it possible to implement receiveng push notification from server to my app?
Look into WCF and Duplex Services. It can be used to establish a connection between client and server. Here are two links that can help you out.
MSDN: Duplex Services
Example Project for Duplex WCF
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Reviewer's Note
The title is exactly as it is supposed to be, even if the accepted answer suggests WebSockets.
We are building an application where customer will send data to our application. Our application have different events, like validating the data, saving it to data base and etc. I want to notify the client about the status of their data, like the data is validated, data is saved in SQL, etc. Our backend service will be in C#. I am new to this WebHook concept and have never implemented this before. I am looking for code examples for both sending and receiving side of WebHooks.
I would really appreciate any help.
I think you are looking for WebSockets,
and to 'push' notification to the client, the proven and most popular .NET solution is SignalR, last time I checked :)
There are alternatives too, GitHub search: websockets c#
Most WebSocket libs will fallback to legacy ways, like polling, when WebSockets are not supported.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
CA exposes Restful web services. My client wants to utilize C# to invoke these Restful web services. I have c# experience, but zero experience with web services with C#. Any pointers on where to start, and what good books (paper back or ebook) will be great.
Even though your question is off-topic for SO format, I'm posting this answer because REST is becoming mainstream nowadays.
For consuming RESTful APIs you could use any http client you can get, as long as it allows you to properly customize the requests.
I recommend RestSharp for this purpose. I've used it before and it does it's job.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I know that code on windows store which used socket needed to use the StreamSocket class instead of the legacy winsock API (Socket class)
And it is clearly something that prevent me from migrating my open source library whose lots of app would depends.
Now, I've seen that VS 2013 update 3 add "winsock support", also announced here.
Does it means that I can use exactly the goold old and loved Socket ?
Yes, the bulk of the winsock APIs are available for both Windows 8.1 and Windows Phone 8.x Store Apps (and of course Universal Windows Apps in Windows 10). There are still some restrictions around access to loopback addresses etc. but the APIs should be available to you.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to send push notification on iOS device using C# or .net code. But I always failed to achieve this. Please refer best tutorial or code for this.
This seems to be a broad question and since you have only asked for the tutorial links have a look at following:
Add iPhone push notification using ASP.NET server
https://github.com/Redth/PushSharp
In a purely .Net world you might well use a technology called SignalR for this - I would look and see if there are SignalR clients available for iOS. I would be surprised if there were not...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Does anyone know any good free sms gateway which can be accessed using the C# client?
I also need some C# sample wrappers for interacting with the sms gateway for sending and receiving the SMSs.
Thanks in advance.
S.
Have a look at these gateways:
http://www.intellisoftware.co.uk/sms-gateway/
http://www.ozekisms.com/
http://www.redoxygen.com/developers/c-sharp/
You could also use https://codecanyon.net/item/wordpress-sms-gateway/16935285
From what I understand, it's a full SMS Gateway you can install in your WordPress website and use from any other website with CURL. The SMS messages are sent by Android devices you connect to your WordPress website.