Bug 1048208
| Summary: | SSL exception in REST Binding when calling HTTPS service | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [JBoss] JBoss Fuse Service Works 6 | Reporter: | Thiago Araki <taraki> | ||||
| Component: | SwitchYard | Assignee: | Aileen <aileenc> | ||||
| Status: | CLOSED UPSTREAM | QA Contact: | Matej Melko <mmelko> | ||||
| Severity: | medium | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 6.0.0 | CC: | kejohnso, soa-p-jira | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2025-02-10 03:34:46 UTC | Type: | Enhancement | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
Thiago Araki
2014-01-03 11:42:09 UTC
Created attachment 844931 [details]
EJB tested
Byteman script (workaround) that made it work:
RULE ViavarejoHTTPS Thread monitor
CLASS org.apache.http.conn.ssl.SSLSocketFactory
METHOD <init>
AT EXIT
IF TRUE
DO
$0.setHostnameVerifier(org.apache.http.conn.ssl.SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);
ENDRULE
This will be considered as an enhancement for the next release, likely by exposing a configuration property specific to hostname verification. Although it is a security hole to disable hostname verification, it has been provided as a configuration feature in the linked JIRA. This product has been discontinued or is no longer tracked in Red Hat Bugzilla. |