Bug 1038223 - Incorrect dialect defined in SY BPEL component
Summary: Incorrect dialect defined in SY BPEL component
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: JBoss Fuse Service Works 6
Classification: JBoss
Component: Installer
Version: 6.0.0 GA
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ER7
: 6.0.0
Assignee: Thomas Hauser
QA Contact: Len DiMaggio
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2013-12-04 16:28 UTC by kconner
Modified: 2014-02-06 15:26 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2014-02-06 15:26:24 UTC
Type: Bug


Attachments (Terms of Use)

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>


Note You need to log in before you can comment on or make changes to this bug.