Bug 1064938
| Summary: | A file URL cannot be set as a keystore or truststore URL values for JSSE | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Retired] JBoss BRMS Platform 6 | Reporter: | Ivo Bek <ibek> | ||||
| Component: | Installer | Assignee: | Thomas Hauser <thauser> | ||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Ivo Bek <ibek> | ||||
| Severity: | high | Docs Contact: | |||||
| Priority: | high | ||||||
| Version: | 6.0.0 | CC: | apodhrad, kverlaen, rrajasek | ||||
| Target Milestone: | ER1 | ||||||
| Target Release: | 6.0.1 | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2014-08-06 19:59:28 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
This is fixed in the latest build of the installer-commons. Note that the file URI must start with file:// and not just file:/ (using file:/ causes java's URI class to interpret the following path as an FTP URL when calling URI.toUrl(), for some reason.) Verified with 6.0.1.ER1 It works with both URIs: a) file:/home/... b) file:///home/... |
Created attachment 862843 [details] server.keystore Description of problem: When I try to set a file keystore URL (e.g. file:/home/ibek/work/jbossqe-installer/common/target/classes/jsse/server.keystore) for JSSE I get the following exception: Exception in thread "Thread-8" java.lang.ClassCastException: sun.net.www.protocol.file.FileURLConnection cannot be cast to java.net.HttpURLConnection at com.redhat.installer.util.KeystoreUtils.isValidAccessibleUrl(KeystoreUtils.java:117) at com.redhat.installer.util.KeystoreUtils.isValidKeystore(KeystoreUtils.java:34) at com.redhat.installer.validator.SecurityDomainValidator.validateData(SecurityDomainValidator.java:41) at com.izforge.izpack.installer.IzPanel.validatePanel(IzPanel.java:1242) at com.izforge.izpack.installer.IzPanel.panelValidated(IzPanel.java:434) at com.izforge.izpack.installer.InstallerFrame.navigateNext(InstallerFrame.java:1664) at com.izforge.izpack.installer.InstallerFrame.navigateNext(InstallerFrame.java:1649) at com.izforge.izpack.installer.InstallerFrame$NavigationHandler.navigate(InstallerFrame.java:1812) at com.izforge.izpack.installer.InstallerFrame$NavigationHandler.access$100(InstallerFrame.java:1779) at com.izforge.izpack.installer.InstallerFrame$NavigationHandler$1.run(InstallerFrame.java:1796) at java.lang.Thread.run(Thread.java:744) password for the keystore is 123456 Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. Run BRMS installer 6.0.0.GA 2. In the Configuration step, mark "perform additional configuration" 3. Mark "Add a security domain" 4. Skip the next page 5. Mark "Add jsse element" 6. Mark "Add keystore element" 7. Fill password "123456" and the keystore URL to your keystore (attached) file (it must start with file:/) Actual results: Expected results: Additional info: