Bug 1038223

Summary: Incorrect dialect defined in SY BPEL component
Product: [JBoss] JBoss Fuse Service Works 6 Reporter: kconner
Component: InstallerAssignee: Thomas Hauser <thauser>
Status: CLOSED CURRENTRELEASE QA Contact: Len DiMaggio <ldimaggi>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 6.0.0 GACC: soa-p-jira
Target Milestone: ER7   
Target Release: 6.0.0   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-02-06 15:26:24 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:

Description kconner 2013-12-04 16:28:55 UTC
The SwitchYard BPEL component requires the full dialect name as part of its configuration however it is currently being truncated during installation.

The installation ends up with the following when configuring org.switchyard.component.bpel

<hibernate.dialect>
    H2Dialect
</hibernate.dialect>

whereas it should be

<hibernate.dialect>
    org.hibernate.dialect.H2Dialect
</hibernate.dialect>

The list of dialects are

org.hibernate.dialect.DB2Dialect
org.hibernate.dialect.MySQL5InnoDBDialect
org.hibernate.dialect.Oracle10gDialect
org.hibernate.dialect.H2Dialect
org.hibernate.dialect.SQLServer2008Dialect
org.hibernate.dialect.PostgreSQLDialect

Comment 1 Len DiMaggio 2014-01-06 17:32:30 UTC
Verified in ER8:

grep hibernate.dialect *
standalone-full-ha.xml:                        <hibernate.dialect>
standalone-full-ha.xml:                            org.hibernate.dialect.H2Dialect
standalone-full-ha.xml:                        </hibernate.dialect>
standalone-full.xml:                        <hibernate.dialect>
standalone-full.xml:                            org.hibernate.dialect.H2Dialect
standalone-full.xml:                        </hibernate.dialect>
standalone-ha.xml:                        <hibernate.dialect>
standalone-ha.xml:                            org.hibernate.dialect.H2Dialect
standalone-ha.xml:                        </hibernate.dialect>
standalone-osgi.xml:                        <hibernate.dialect>
standalone-osgi.xml:                            org.hibernate.dialect.H2Dialect
standalone-osgi.xml:                        </hibernate.dialect>
standalone.xml:                        <hibernate.dialect>
standalone.xml:                            org.hibernate.dialect.H2Dialect
standalone.xml:                        </hibernate.dialect>