jax-rs sse client with Singleton in Glassfish/Paya

2019-07-13 17:52发布

About jax-rs client with SSE in EJB Singleton, I've tried with Payara server full-5.183 (without docker) for this example, [https://abhirockzz.wordpress.com/2017/07/27/jax-rs-2-1-sse-client-api-example-using-glassfish-5-on-docker/], but failed. Error shown at line eventSource = SseEventSource.target(target).build();

 @PostConstruct
public void init() {
    this.sseClient = ClientBuilder.newClient();
    this.target = this.sseClient.target("https://sse.now.sh");

    tsvc.createSingleActionTimer(15000, null);
    System.out.println("SSE client timer created");

    eventSource = SseEventSource.target(target).build();
    System.out.println("SSE Event source created........");
}

Error message: "java.lang.IllegalArgumentException: Argument fish.payara.requesttracing.jaxrs.client.decorators.JaxrsWebTargetDecorator@23112ded is not a valid JerseyWebTarget instance. SseEventSource does not support other WebTarget implementations."

Can anyone give me an idea?

0条回答
登录 后发表回答