jersey
jersey copied to clipboard
Eclipse Jersey Project - Read our Wiki:
Following https://github.com/jakartaee/rest/issues/418#issuecomment-2009059009, this is a feature request to get some configuration options for multipart requests into Jersey (or maybe into the JAX-RS spec even where it would make sense). Ideally...
Has there been any consideration given to restore/preserve the whitespace character separating the `charset=` from the semicolon (trailing the MIME type) in the `Content-Type` header? Or could this be made...
Allow to limit the number of parts in the multipart entity.
the wrapped stream is synchronized
It's a bit hard for me to produce a minimal failing test case but I can show you exactly where the problem is. I am forwarding some large files from...
Apply Jenkins/CI best practices and avoid builds hanging for days.
The [class `org.glassfish.jersey.client.internal.HttpUrlConnector`](https://github.com/eclipse-ee4j/jersey/blame/4.0/core-client/src/main/java/org/glassfish/jersey/client/internal/HttpUrlConnector.java`) contains this code. ```java private static final LazyValue DEFAULT_SSL_SOCKET_FACTORY = Values.lazy((Value) () -> HttpsURLConnection.getDefaultSSLSocketFactory()); ``` https://github.com/eclipse-ee4j/jersey/blame/d377a30a033cb7468d66e9901ee832bea6cbd8db/core-client/src/main/java/org/glassfish/jersey/client/internal/HttpUrlConnector.java#L86-L87 ```java if (DEFAULT_SSL_SOCKET_FACTORY.get() == suc.getSSLSocketFactory()) { // indicates that the custom...