You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by vi...@apache.org on 2022/03/18 19:57:07 UTC

[netbeans-website] 01/01: Explanation for issue #3748

This is an automated email from the ASF dual-hosted git repository.

vieiro pushed a commit to branch hotfix/issue-3748
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git

commit ddce454d330ed096d8b6c5634d78939b51fd0962
Author: Antonio Vieiro <vi...@apache.org>
AuthorDate: Fri Mar 18 20:56:58 2022 +0100

    Explanation for issue #3748
    
    We explain what happens with HTTP Basic Authentication for proxies with Oracle JDK > 8u111.
---
 .../src/content/wiki/ProxyBasicAuth.asciidoc       | 56 ++++++++++++++++++++++
 1 file changed, 56 insertions(+)

diff --git a/netbeans.apache.org/src/content/wiki/ProxyBasicAuth.asciidoc b/netbeans.apache.org/src/content/wiki/ProxyBasicAuth.asciidoc
new file mode 100644
index 0000000..2f7a0ec
--- /dev/null
+++ b/netbeans.apache.org/src/content/wiki/ProxyBasicAuth.asciidoc
@@ -0,0 +1,56 @@
+// 
+//     Licensed to the Apache Software Foundation (ASF) under one
+//     or more contributor license agreements.  See the NOTICE file
+//     distributed with this work for additional information
+//     regarding copyright ownership.  The ASF licenses this file
+//     to you under the Apache License, Version 2.0 (the
+//     "License"); you may not use this file except in compliance
+//     with the License.  You may obtain a copy of the License at
+// 
+//       http://www.apache.org/licenses/LICENSE-2.0
+// 
+//     Unless required by applicable law or agreed to in writing,
+//     software distributed under the License is distributed on an
+//     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+//     KIND, either express or implied.  See the License for the
+//     specific language governing permissions and limitations
+//     under the License.
+//
+
+= HTTP Proxy Basic Authentication
+:jbake-type: wiki
+:jbake-tags: wiki, devfaq, needsreview
+:jbake-status: published
+:syntax: true
+:description: APITest SIGTest NetBeans
+:icons: font
+:source-highlighter: pygments
+:toc: left
+:toc-title:
+:experimental:
+
+JDK 8u111 link:https://www.oracle.com/java/technologies/javase/8u111-relnotes.html[disabled Basic authentication for HTTPS tunneling], 
+this means that if you use a network proxy with Apache NetBeans and this proxy is using Basic authentication you won't be able to
+access HTTPS based servers.
+
+As a workaround for this JDK feature, you can add the option 
+
+[source]
+----
+-Djdk.http.auth.tunneling.disabledSchemes="" 
+----
+
+to the Apache NetBeans `etc/netbeans.conf` configuration file, in the `netbeans_default_options` entry, like so:
+
+[source]
+----
+netbeans_default_options="-J-XX:+UseStringDeduplication -J-Xss2m -J-Djdk.http.auth.tunneling.disabledSchemes=\"\" -J-Dapple.laf.useScreenMenuBar=true (...)
+----
+
+NOTE: We don't want to set this as a default options because it may pose a security problem.
+
+NOTE: This was reported as link:https://github.com/apache/netbeans/issues/3748[issue #3748] in github.
+
+
+
+

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists