AdamBien / connectorz

Useful JCA 1.6 Connectors. As Simple As Possible.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Files Connector will not run on Apache TomEE

exabrial opened this issue · comments

Files Connector will not run on Apache TomEE. Line 41 of FileBucketStore assumes that it will be getting back a FileBucket from the connection manager, however the connectionManager interface is actually just Bucket.

Apache TomEE returns a proxy of the Bucket interface, not an actual FileBucket instance. so the cast there fails.