Hello All, Im trying to setup drop-down select w/ web-service to the IGL server itself and I keep getting a connection refused message. If I put that URL in the browser it seems to work fine. But in the form, it throws an error no matter what command I put in there. Any ideas? I've gotten it to work with older versions and different environment's in the past. Is it a firewall issue perhaps? Port being blocked? I've run out of troubleshooting steps.
Good you are one step ahead now So the network issue was resolved using 8443 instead of 443.
Now what you have is a certificate issue. I'm guessing this is a test system with no proper signed certificate installed. This error is basically equivalent to the certificate warning you get in your browser when you open the UI. You can skip that from the browser, but the application will not. So you have two choices here:
If you choose this approach, then try running these two commands as root:
keytool -exportcert -rfc -keystore /home/oracle/keystore/aveksa.keystore -storepass Av3k5a15num83r0n3 -alias server -file aveksa_ui.cer
keytool -import -file aveksa_ui.cer -alias aveksa_ui -keystore $JAVA_HOME/jre/lib/security/cacerts -storepass changeit
Then afterwards, restart the application for the changes to take effect.