-
Notifications
You must be signed in to change notification settings - Fork 232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Protégé behind corporate proxy: time-out with registry.api.identifiers.org:443 #1231
Comments
A cursory search suggests that indeed the Apache HttpClient does not honour the JVM proxy configuration. We’ll need to either configure it so that it explicitly uses the proxy, or switch the |
Thanks Damien for your answer. |
Thanks for the pointer. Looks like the most straightforward solution indeed. I don’t have a proxy setup to test. Would you be willing to test the fix yourself? You can find a preliminary 5.6.5-alpha1 build with the putative fix here: https://incenp.org/files/softs/protege/5.6/ |
Thanks for the link to the alpha. I've just tested it in our corporate environnement, behind the HTTP proxy. I tested the fix with both method:
It works in both cases 👍 |
Great, thanks for testing. I just pushed the fix to master, it will be included in the next release. |
We use Protégé 5.6.3 behind a corporate HTTP proxy, in a Windows 10 environnement.
We implemented the JVM proxy settings in the launcher (
Protege.l4j.ini
andrun.bat
):However, after launching Protégé and loading our ontology, it hangs when opening the first class in the editor.
Logs indicate a warning causing a 30 seconds time-out on this operation:
Our investigations pointed to this class: https://github.com/protegeproject/protege/blob/master/protege-editor-owl/src/main/java/org/protege/editor/owl/model/identifiers/IdentifiersDotOrg.java
It seems that this code tries to send and HTTP GET to an URL, without applying the JVM proxy configuration that we specified in the launcher.
Could you fix this problem in the next release ?
Thanks you in advance.
The text was updated successfully, but these errors were encountered: