Questions tagged [pokein]

PokeIn is a reverse ajax and websocket library for .NET Framework and Mono developers

7 questions
2
votes
1 answer

ASP.NET MVC Async Controller vs Server Push(COMET/Reverse Ajax)

I'm building an ASP.NET MVC site in which the clients(browser) can make API calls that take upto 30 minutes(or more..) to process. Obviously I couldn't use normal MVC Controllers to do this as a few such requests would block all my IIS worker…
noob Mama
  • 267
  • 8
  • 28
0
votes
2 answers

How POKEIN identifies clients for doing SERVER PUSH ? Does ClientIDs in it are IPs?

I have a web application, where users will see notifications for their new messages, I want to push the notifications to the users who are already logged in. I have seen that I can do it using Server Push of PokeIn, I have tried and understood the…
teenup
  • 7,459
  • 13
  • 63
  • 122
0
votes
0 answers

javascript __doPostBack causing previous line not to be called?

I am using PokeIn and when I run the following call: function OnSucceeded(messagefixed) { if (PokeIn.IsConnected) { pCall['Dummy'].SendMessageToAllUsers(messagefixed); __doPostBack('LinkButton1',…
0
votes
1 answer

Pokein - How can i catch the offline message using Pokein library?

I've tried to do a chat application using PokeIn. How can I do a offline messages when user is not in a chat and I'll try to send to him a message? How can I catch a unsent messages? For example: SendToClient(CLIENT_ID_33, "Message"); User with ID…
Jenan
  • 3,408
  • 13
  • 62
  • 105
0
votes
1 answer

How do I implement the Clone Message Attack Protection feature of PokeIn?

I've tried to use the Reverse AJAX and WebSocket Library, PokeIn I want to send private message with this library and I found on PokeIn website the feature Clone Message Attack Protection. How can I implement this feature? How can use the PokeIn…
Jenan
  • 3,408
  • 13
  • 62
  • 105
0
votes
1 answer

How Pokein Works and how can it Scale

I am searching for a WebSockets solution for my ASP.NET 4.5 website project that I will develop for both web and as mobile application using HTML5 technologies. I need a solution that will allow me to push messages from the server to the client.…
Liron Harel
  • 10,819
  • 26
  • 118
  • 217
0
votes
2 answers

ASP.net how to long polling with PokeIn?

I want to make a service that notify the user in case there are some new messages sent to him. Thus I want to use some Comet framework that provide the server push ability. So I have looked into PokeIn. Just wondering a thing. I have checked on the…
starcorn
  • 8,261
  • 23
  • 83
  • 124