Bug 901221 (JBPAPP6-1669)
| Summary: | url-delimiter setting does not work for xa-datasource | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Masafumi Miura <mmiura> |
| Component: | JCA | Assignee: | Jesper Pedersen <jpederse> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | urgent | Docs Contact: | |
| Priority: | urgent | ||
| Version: | 6.0.0 | CC: | hwaldorf, jduncan, jlivings, jpederse, mmiura, tom.jenkinson |
| Target Milestone: | --- | ||
| Target Release: | TBD EAP 6 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| URL: | http://jira.jboss.org/jira/browse/JBPAPP6-1669 | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2014-09-02 20:00:07 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: | |||
|
Description
Masafumi Miura
2012-11-30 00:19:13 UTC
Link: Added: This issue depends JBJCA-963 For EAP 7 (In reply to comment #3) > For EAP 7 EAP 7 is not coming out anytime soon so obviously there are lots of folks that are hitting this bug. What is the work-around for this. "Just wait till EAP 7" is not an answer. Here is a workaround for this.....
Install Byteman
https://community.jboss.org/wiki/ABytemanTutorial
Then you will need this to get it all working.
RULE Set URLProperty
CLASS org.jboss.jca.adapters.jdbc.xa.XAManagedConnectionFactory
METHOD createManagedConnection
AT ENTRY
IF true
DO
$0.urlProperty = "URL"
ENDRULE
RULE Set URLDelimiter
CLASS org.jboss.jca.adapters.jdbc.xa.XAManagedConnectionFactory
METHOD initSelector
AT ENTRY
IF true
DO
$0.urlDelimiter = "|"
ENDRULE
Will be in EAP 7 |