Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
60 views

I run Jetty 12.1.4 demo according to instruction: https://jetty.org/docs/jetty/12.1/operations-guide/begin/index.html including enabling HTT/3 protocol as described at: https://jetty.org/docs/jetty/12....
Michał Niklas's user avatar
0 votes
1 answer
129 views

In the following scenario: In a loop: construct and launch server construct client and make a request print response code cleanup server and client I am seeing occasional timeouts and rarely other ...
Lesiak's user avatar
  • 26.5k
0 votes
0 answers
77 views

I'm working on an OSGi project with Jetty 12, trying to use the HTTP Whiteboard service to register a websocket servlet. Everything worked just fine when I was testing with an HttpServlet, but when I ...
langri's user avatar
  • 11
0 votes
0 answers
108 views

I'm using Spring Boot's RestClient and configuring the timeout via the property: spring.http.client.read-timeout=30s When I execute a call to a stub server that intentionally delays the response for ...
Michiel's user avatar
  • 3,614
1 vote
0 answers
94 views

I have the following two classes that use the Spark package and that run a server via SpringBoot. Server.java package server; import static spark.Spark.get; import static spark.Spark.port; import ...
Abdurrafay Atif's user avatar
0 votes
0 answers
68 views

As part of a risk remediation exercise, it has been discovered that we are still using Jetty v9.4.51xxx version of Jetty for our web sockets proxy application, and so should tackle the upgrading of ...
Richard C's user avatar
-1 votes
1 answer
176 views

After upgrading spring boot version. Our jetty http client suddenly throws "request headers too large" error. we do not have the issue before. What has changed ?
cheng's user avatar
  • 39
1 vote
1 answer
108 views

I'm using the delightful Jetty org.eclipse.jetty:jetty-server:12.0.18 for an embedded HTTP server (not using Java EE servlets). Jetty passes an org.eclipse.jetty.server.Request to a custom handler, ...
Garret Wilson's user avatar
-3 votes
1 answer
76 views

I am using Java 17 Spring Boot configured to use Jetty running as an mTLS microservice. I would like to log failed connections (due to misaligned keys or client keys not recognised in the CA -- all of ...
Colin Schofield's user avatar
0 votes
0 answers
145 views

I'm trying to get the basic websocket working in Spring with Jetty, as covered here. At the time of the upgrade, runtime is reporting that the provider is null. java.lang.NullPointerException: Cannot ...
vadlan77's user avatar
0 votes
1 answer
239 views

I am trying to implement server, as java plain application, where clients could connect to a web socket. The goal is to connect client to a websocket via this url: ws://localhost:4550/api/myWebSocket ,...
Biggy Poopa's user avatar
0 votes
1 answer
99 views

I would like to understand what's the consequences when configuring HTTP2ServerConnectionFactory::maxConcurrentStreams to high value (for example 100k). The default value is 128, are there any reasons ...
Artem Golovko's user avatar
0 votes
1 answer
101 views

Is there a way with Jetty 12 to use the existing work directory modifications to jar files or class files without have jetty re-explode the war in the webapps directory during startup? I added these ...
Jason's user avatar
  • 5
0 votes
0 answers
94 views

In our application, due to a compliance check, the Spring Boot version was updated from 3.2.3 (which includes Jetty 12.0.8) to Spring Boot 3.2.12(which includes Jetty 12.0.15). After updating the ...
at0107's user avatar
  • 1
0 votes
0 answers
76 views

I'm upgrading Struts from 2.5.33 to 6.4.0 I have 2 runtime environments: the UI running in Intelli-J or directly on a server (Jetty is our Web App Server). Oddly, when running straight on the server, ...
RobinNable's user avatar
0 votes
0 answers
85 views

I'm following this example of how to set up Jetty with WebClient per these threads (1, 2) and my error is The constructor HttpClient(SslContextFactory.Client) is undefined SslContextFactory.Client ...
gene b.'s user avatar
  • 12.6k
1 vote
0 answers
89 views

I recently migrated my application from Jetty 11 to Jetty 12 and noticed a change in behavior when handling invalid URLs. Details: My application uses Spring, which utilizes JettyEmbeddedErrorHandler (...
Maxim Popov's user avatar
  • 1,237
0 votes
0 answers
126 views

I am having an issue deploying my application with Apache Tomcat 9 and Java 14, the application runs fine with Jetty server but I am having an issue when deploying it on Tomcat. Here is the error I ...
Karan's user avatar
  • 268
1 vote
1 answer
268 views

I am using Jetty 12.x and trying to configure HttpClient with Proxy. I need to use Kerberos authentication for the proxy. Referring the documetion https://jetty.org/docs/jetty/12/programming-guide/...
Kamal's user avatar
  • 11
0 votes
1 answer
68 views

I have built ActiveMQ Artemis Web console from its repository according to the manual provided in repository. Build has succeed, although when I'm trying to test run the console, and going to /console ...
Roman R.'s user avatar
0 votes
0 answers
19 views

This is a workaround for my previous question. How to configure RequestLog for multiple webappcontext in jetty12 In jetty12, Since the RequestLog only exists on the Server level we can't seperate them ...
Hemanth Karniyana's user avatar
1 vote
0 answers
61 views

RequestLogHandler has been removed from jetty12, we should configure Server.setRequestLog for request logging. But with this setup we cannot seperate request logs per different webappcontext and all ...
Hemanth Karniyana's user avatar
1 vote
0 answers
328 views

I have app running on behind istio gateway and proxy running as sidecar, when i make the connection request from chrome websocket client or wscat or python websocket-client and my requests reaches the ...
Raghvendra Garg's user avatar
1 vote
0 answers
15 views

i need sample logs for jetty logAccess, Error, Request, WebSocket and Jetty System. I I can find any sample logs in the documentation and any AI gives constructed logs which may or may not be correct. ...
aston martin's user avatar
1 vote
1 answer
191 views

EDIT: Got rid of Thread.sleep() using an executor instead. Added call to servletHolder.setAsyncSupported(true). Question We are trying to implement Server-Sent Events (SSE) using RESTEasy (6.2.11....
mgd's user avatar
  • 4,412

1
2 3 4 5
146