I wanted to send out data to a specific client on a channel using the Ajax Push mechanism. Here's my design: I have say 10 clients subscribed to Channel #1, and 10 more subscribed to Channel #2. I want to send out an Ajax Push when some particular parameter is updated in my database. I want to send it out to say client #7 on Channel #1. In Ajax Push,I know I can send out the Push to all subscribers of Channel #1. Is there any way to send out the Ajax Push to ONLY client #7 on Channel #1? Thanks, Thothathri
How to send out an Ajax Push to a particular client on a channel?
353 Views Asked by wittythotha At
1
There are 1 best solutions below
Related Questions in ASP.NET
- Create an IIS web request activity light
- Writing/Overwriting to specific XML file from ASP.NET code behind
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- Entity Framework Code First with Fluent API Concurrency `DbUpdateConcurrencyException` Not Raising
- Getting deeply embedded XML element values
- What is best way to check if any of the property of object is null or empty?
- NuGet - Given a type name or a DLL, how can I find the NuGet package?
- ASP-MVC Code-first migrations checkbox not active
- How do i add onclient click to my jquery button
- Jquery: Change contents of <select> tag dynamically
- Retrieving data from Oracle database
- ASP.NET: Fill Textbox field upon dropdownlist selection by user
- Why web API return 404 when deploy to IIS
Related Questions in AJAX
- Ajax jQuery firing multiple time display event for the same result
- Implement Onfailure in webApi controller
- AJAX PHP - Reload div after submit
- ajax load data from mysql
- Ajax-update only a component attribute, not the whole component nor its children
- using ajax to get a php database result and then show the result in a button
- How to prevent browser from executing some JavaScript when person clicks Back button?
- ajax async: true statement execution order
- Rails 4.2 jQuery loads only after refresh
- WebForms GET Json requests (JsonRequestBehavior.AllowGet)
- Rails - Ajax do not work properly on production server
- Angular js Button click
- Make jQuery/AJAX perform instantly on page load
- jQuery Ajax Uncaught TypeError: Cannot use 'in' operator to search
- Show success or error messages in Ajax response to Wordpress custom registration form
Related Questions in AJAX-PUSH
- Simulating facebook search using jquery
- Grails Events Push Failed to Initialize Atmosphere Framework
- "No RequestCycle is currently set!" exception when using icepush wicket integration and trying to call 'push()' from another class
- A progress bar to monitor a long running task in GWT
- What is ajax-push? Are there caveats to using it on some servers?
- Online card game + chat with PHP
- GAE Channel API - Check if the socket is alive from Javascript
- How to Hook up the HTTP Streaming Server APE (Ajax Push Engine) to a Computation-Expensive Server
- Ajax Push Engine
- AJAX Push Engine: Can’t contact APE Server
- Securing a javascript client with hmac
- Problem with POST request from APE server module
- Web chat with PHP/JQuery and push technology (Only for a small group of users, shared hosting)
- need a solution ajax push mechanism
- PHP "PUSH" To Javascript
Related Questions in WEBSYNC
- Log4net: The process cannot access the file because it is being used by another process
- The request is too large for IE to process properly
- How to add overlay on the webrtc using frozen mountain icelink in iOS app
- Websync: pros and cons?
- Websocket connection drop(improper) detect behind firewall
- Unhandled exception of type System.Exception occurred in FM.dll
- ASP.Net MVC & Comet (WebSync)
- Range Refresh + Partially refreshing + Kendo Datasource + Kendo Grid + WebSync
- Websync breaks when Iphone goes to sleep
- Websync 4.0 - Publisher async
- Websync not working
- How to send out an Ajax Push to a particular client on a channel?
- WebSync server on demand configuration problem
- How to use Websync in .Net Maui
- Icelink : video, voice and text chat
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You really do what do have a separate channel for each user. Channels are very cheap with WebSync; even if there was a built-in way to send data to a specific user, it would be implemented exactly in that manner. Having 1000 channels is not a big deal; recently I had a discussion with one user who had something like 10,000 channels per connected client (which is pretty extreme, to be fair), but was working without a hitch.
Simply create a channel such as /user/{username} and use that to push to that user specifically, and you'll be good to go.