Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
47 views

Here's a minimal GitHub Gist that runs on Electron Fiddle : It's supposed to show GitHub Copilot (github.com/copilot) in a webview element as if it was in a normal browser : Using the following code ...
KaKi87's user avatar
  • 955
0 votes
1 answer
93 views

I'm new to server sent events and I'm trying the MSDN laid-out method of going about server sent events; with no luck. No errors and no data seem to be received by my small HTML file's embedded ...
Austin Jones's user avatar
0 votes
0 answers
69 views

I have a simple ASP.NET Core API that streams events using Server-Sent Events (SSE). Locally (Kestrel) it works fine: every WriteAsync + FlushAsync sends data to the client immediately.The endpoint ...
Petar Dobre's user avatar
0 votes
1 answer
95 views

I have a NestJS API that proxies a streaming response from a Python FastAPI service running on Cloud Run. Locally, the proxy works as expected: the client receives data in chunks as the upstream sends ...
Nico Ilano's user avatar
3 votes
1 answer
129 views

I’ve built a simple SSE (Server-Sent Events) server in Node.js using Express. When I try to connect multiple clients (4000) from the same machine using a stress test script, the server fails to ...
Ragul PR's user avatar
  • 422
1 vote
0 answers
37 views

I'm trying to make SSE for live comments work with nodejs, The application runs a nestjs app, but when I try to access the SSE, I got an error 400. I'm using a page access token, already checked the ...
Rafael Tuneca's user avatar
0 votes
1 answer
195 views

SseEmitter sseEmitter = new SseEmitter(30000L) Indicates the maximum amount of time (in milliseconds) that the server can hold an SSE connection idle. If no data is sent to the client within 30 ...
Ares's user avatar
  • 15
0 votes
0 answers
70 views

I have this endpoint that notifies orders that users make in real time. The orders come from a RabbitMQ queue. @GetMapping(value = "/sse", produces = MediaType.TEXT_EVENT_STREAM_VALUE) ...
Gerónimo González Martino's user avatar
1 vote
1 answer
2k views

The MCP standard released in Nov 2024 HTTP+SSE was recently deprecated and the protocol change to "HTTP streaming". But looks like MCP now default to just old fashioned non streaming HTTP ...
Bug's user avatar
  • 39
0 votes
0 answers
227 views

logger = setup_logger() async def generate_sse_event(event: str, data: Any, step: str = None) -> str: """Generate SSE formatted message with timestamp and consistent structure."&...
Tanuj Verma's user avatar
0 votes
0 answers
105 views

I'm working on a Ktor server as a middle layer between a client (like a web browser or mobile app) and OpenRouter's streaming chat completions API. My goal is to stream the response back to the client ...
Pawandeep Singh's user avatar
0 votes
1 answer
3k views

Is there a way to control which SSE port (not initial connection port) the sse session will land on? I am running regular fastmcp sse in docker and without knowing which port SSE will land it's ...
Giorgi Sh.'s user avatar
2 votes
1 answer
185 views

I'm trying to learn about how Event sources work in a JS-PHP environment. In my project directory, I have 3 mains files: script.js /agents/handler.php /agents/transmitter.php The script.js will post ...
Abb's user avatar
  • 67
2 votes
1 answer
170 views

I need to handle Server-Sent Events (SSE) via an HTTP GET request. Everything is working fine, except that I have no way of terminating the GET request immediately. Instead, I need to wait for some ...
Alister's user avatar
  • 6,931
1 vote
1 answer
555 views

I'm trying to implement server-sent events (SSE) using Spring Boot and Nuxt3. I set up a basic SSE endpoint like this: @GetMapping(value = "/subscribe", produces = MediaType....
RaGyun's user avatar
  • 73
0 votes
2 answers
153 views

i had built a sse example with vue3 and node.js , and node.js server is behind a nginx. Here is the implementation. vue3 code eventSource = new EventSource('https://app.kuangcc.com/sse/events'); ...
user824624's user avatar
  • 8,168
0 votes
1 answer
157 views

I am working on a FastAPI application where I need to set an HTTP cookie while streaming data to the client using Server-Sent Events (SSE). However, I am encountering an issue where the cookie is not ...
B A.J Amar 's user avatar
2 votes
1 answer
163 views

I establish a ServerSentEvent connection using the code below. The GET request must have a "Last-Event-ID" HTTP Header set that indicates the last fully processed event. Occasionally the ...
Maarten Boekhold's user avatar
0 votes
0 answers
110 views

I use nginx to proxy requests to the Server Sent Events API. Without nginx everything works fine, but when proxying through nginx the event body is cut off and further events do not arrive. Nginx ...
sbnet's user avatar
  • 1
1 vote
0 answers
91 views

We are currently developing an AI service to improve interaction with YouTrack issues. One mayor problem we encountered is that its really hard to detect if issues where deleted so we can drop them ...
Christoph Grimmer's user avatar
0 votes
0 answers
64 views

was wondering if someone would be able to give me a hand at trying to figure out an issue I'm having with an SSE stream. Basically, I'm trying to fully integrate streaming and pubsub into a AI chat ...
umz's user avatar
  • 13
4 votes
1 answer
299 views

I have a spring-boot backend and wanted to create a SSE endpoint, sample: @CrossOrigin(origins = "http://localhost:4200") // Angular Dev-Server @GetMapping(path = "/stream-flux", ...
Tony's user avatar
  • 540
1 vote
1 answer
79 views

I'm creating an infopage for work that updates "live". Now I came across Server Sent Events. I managed to put data on the screen but the update was every 3 seconds (after looking online it ...
Thomas D.'s user avatar
0 votes
0 answers
18 views

Use Case: For example, an app like Uber Driver requires the backend to maintain awareness of user-specific connections. Let's assume Uber's search algorithm shortlists 3 nearby drivers; the system ...
0xSurya's user avatar
1 vote
0 answers
62 views

I am using SSE connection workflow in one of my projects. I store SSE response objects in the local memory which can then be used to notify the client. SSE connections/response are stored in following ...
Rohan Gaonkar's user avatar

1
2 3 4 5
43