You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Java 11 introduced java.net.http package that adds fully functional http client to the standard library. It would be really nice to have it in java2script.
Here are some of the benefits of adding java.net.http to java2script:
everyone has it, no extra dependencies needed
no need to maintain and update it by yourself
current javajs.http client has very limited functionality
applications and libraries that want to support java2script could use java's native client instead of having hard dependency on javajs.http.HttpClient
The text was updated successfully, but these errors were encountered:
warownia1
changed the title
Add java.http package components to java2script.
Add java.net.http package components to java2script.
Jan 25, 2022
if (!method.equals(METHOD_HEAD))
conn.setDoInput(true);
I think true is just the default value, so this does nothing. I noticed recently that HEAD with setDoInput(false) gives no headers. But presumably with setDoInput(true) HEAD still does not send content or open a stream.
Java 11 introduced
java.net.http
package that adds fully functional http client to the standard library. It would be really nice to have it in java2script.Here are some of the benefits of adding
java.net.http
to java2script:javajs.http
client has very limited functionalityjavajs.http.HttpClient
The text was updated successfully, but these errors were encountered: