eclipse-platform / eclipse-platform/eclipse.platform
Proxy messages written to log that cannot be satisfied
- Dominant language
- Java
- Stars
- 165
- Forks
- 174
- Avg merge
- 2d 8h
- Merged PRs (30d)
- 22
Description
Using the `org.eclipse.core.net`and `org.eclipse.ui.net` bundles in Eclipse or in an RCP application if proxy settings are set in Preferences each time there are messages such as:
```
!MESSAGE System property https.proxyHost is not set but should be 192.168.1.10.
!MESSAGE System property https.proxyPort is not set but should be 3128.
!MESSAGE System property https.proxyHost is not set but should be 192.168.1.10.
!MESSAGE System property https.proxyPort is not set but should be 3128.
```
I've traced this to a check the code does here:
https://github.com/eclipse-platform/eclipse.platform/blob/master/team/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxyType.java
I've tried setting these system properties manually but then get different messages (even if the system has proxy settings):
```
!MESSAGE The HTTP proxy is enabled in the preferences but disabled in the system settings
!MESSAGE The SSL proxy is enabled in the preferences but disabled in the system settings
!MESSAGE The SSL proxy is enabled in the preferences but disabled in the system settings
```
So how does one satisfy these requirements?
Contributor guide
Assessment
This issue has not been assessed yet.