1,103 questions
1 vote
0 answers
310 views
Subscribe to Events Broadcast from another Server
I am new to .NET Core and have been tasked with creating a phone application that will allow our employees to see their call queues, view information about the customers that are calling, etc. Our ...
0 votes
1 answer
153 views
How does autologging work in MLOps platforms like Comet or MLFlow?
I was wondering how the implementation of logging is done where you just need to create an experiment object from comet_ml and it auto-detects and gives out all the statistics of the trained ...
0 votes
1 answer
103 views
Is Fiware-STH-Comet service compatible with NGSI-LD (linked data) format?
I'm using Fiware's Orion LD service (https://github.com/FIWARE/context.Orion-LD) in a Docker environment in order to store and manage data in the NGSI-LD format. I want to post a subscription to Orion-...
0 votes
1 answer
241 views
For cometd client wait for publish message in queue before shutting down
We are shutting down cometd client in the below fashion. Is there a way we can ensure that all the pending events are published ? Sometimes we are seeing issue where some of the events send just ...
1 vote
0 answers
253 views
How to disable crash output in comet ml?
Every time my script is crashing I have such output: COMET INFO: sys.cpu.percent.43 : (0.0, 0.0) COMET INFO: sys.cpu.percent.44 : (1.8, 1.8) COMET INFO: sys.cpu.percent.avg ...
-1 votes
1 answer
205 views
Cometd maxInterval configurations per session
Is there a way to configure the cometd server maxInterval per user session ? https://github.com/cometd/cometd-documentation/blob/master/src/main/asciidoc/java_server_configuration.adoc maxInterval ...
2 votes
2 answers
1k views
Java bayeux client disconnects with TimeoutException when idle
I'm initializing Bayeux client: SslContextFactory sslContextFactory = new SslContextFactory(true); HttpClient httpClient = new HttpClient(sslContextFactory); httpClient.start(); Map<String, ...
1 vote
0 answers
589 views
How to make the Apache reverse proxy server to support the long-polling connection?
We have an Apache comet servlet on the Tomcat 8 server for the long-polling connection as below. public class Connect extends HttpServlet implements CometProcessor { public void event(CometEvent ...
0 votes
1 answer
317 views
Cometd, Spring-security : Currently authenticated user not available inside a Listener
I am working on a Spring-MVC project where I am using Spring-security for authentication and authorization. Along with that, I am using Cometd library for sending messages over websockets. After ...
1 vote
1 answer
236 views
Comet-Style API Consumption with Async/Await
I'm trying to read from a Comet style HTTP API which you connect to and it continuously pushes events. I want this to run in the background after it's started, but my Async/Await is erroneous it's ...
1 vote
1 answer
567 views
libcurl write callback is not called for post http message
Intro I'm sending POST request to server which responses with chunked messages. So I'm trying to make writecallback being called on each received chunked http message. Code #include <iostream>...
0 votes
1 answer
307 views
HTTP method GET is not supported by this URL with comet processor
This might be a possible duplicate but none of the answers were helpful .. I have a http servlet implementing CometProcessor , i have referred this example and also switched tomcat connector ...
1 vote
1 answer
722 views
Libcurl chunked http message received callback
Does libcurl expose some callback to be called when chunked http message is received? One server establishs comet-based http connection with a client. So client sends request to open connection using ...
1 vote
1 answer
645 views
How to configure custom AtmosphereResource in Atmosphere framework
Unable to configure Atmosphere to use custom AtmosphereResource instead of AtmosphereResourceImpl. I have tried to use init-param in Servlet configuration as defined below but it is not working. <...
-3 votes
1 answer
99 views
Which communication technology should I use for pushing data stream to the website users [closed]
I'm building a website where I want to allow users to subscribe to various realtime data streams. They will subscribe to few streams and it will be pushing the data back as long as they are connected. ...