GithubHelp home page GithubHelp logo

Comments (4)

lmorda avatar lmorda commented on August 14, 2024
Request request = new Request.Builder().url(path).build();
request.addHeader("Accept", "application/stream+json");
OkSse okSse = new OkSse();
ServerSentEvent sse = okSse.newServerSentEvent(request, listener);

Interestingly, when the onClosed method is inevitably called, the headers on the ServerSentEvent object show that I've added the application/stream+json header, which I believe may be another bug. The actual headers on the SSE object used to make the call is not the same as the headers on the SSE object returned in the callback methods. That threw me off for awhile, because I was trying to debug viewing the headers in the onClose method:

@Override
public void onClosed(ServerSentEvent sse) {
    // sse request headers on this sse object actually includes 
    // the added Accept: application/stream+json header
}

from oksse.

marcelpinto avatar marcelpinto commented on August 14, 2024

The protocol says that the header should have Accept text/event-stream.
But I'll take a look

from oksse.

lmorda avatar lmorda commented on August 14, 2024

Okay great, that's what I was thinking, that this was by design. I had them change the code so that both text event stream and application stream json are produced in the Spring Boot server. OkSse is now working in our implementation, thanks again for this awesome library!

@GetMapping( value = "v1/status/events", produces = { MediaType.APPLICATION_STREAM_JSON_VALUE, MediaType.TEXT_EVENT_STREAM_VALUE } )
public Flux<GeneralStatus> ...

from oksse.

marcelpinto avatar marcelpinto commented on August 14, 2024

Glad to help. Even though I will take a look at the behavior you described.

from oksse.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.