-
Feature
-
Resolution: Won't Do
-
Major
-
None
-
None
-
None
-
False
-
-
False
-
-
ITW uses the default OpenJDK useragent string, which can be customized with the http.agent system property.
openjdk/jdk/src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java
String agent = java.security.AccessController.doPrivileged(
new sun.security.action.GetPropertyAction("http.agent"));
if (agent == null) {
agent = "Java/"+version;
} else {
agent = agent + " Java/"+version;
}
userAgent = agent;
Update ITW to provide a default JNLP specific useragent string instead of the generic "Java/<version>" (e.g. Java/1.8.0_352).
- is related to
-
OPENJDK-1264 Provide the ability to pass JVM options on the command line with javaws.exe
- In Progress