Hello all,
I am new to the list and somewhat new to Camel itself... A recent
project at work was aq perfect fit for Camel and so I started gathering
requirements. This led me to the desire to create a new component for
PostgreSQL's async events (NOTIFY/LISTEN/UNLISTEN)... I have registered a
JIRA issue:
CAMEL-7781
And I have started implementation, but I am running into problems in how to
format my URIs... Ideally, I want the following formats:
pgevent:[datasource] || [//dbHost:dbPort]/<database>/<channel>[?parameters]
pgevent:myDataSource/proddb/userupdates
pgevent://192.168.1.12:5432/proddb/groupupdates?pgUser=username&pgPass=secret
pgevent://192.168.1.12/proddb/groupupdates?pgUser=username&pgPass=secret
pgevent:///proddb/customerupdates ## Uses all defaults
Could someone give me some pointers or links where I could get some help in
figuring this out? The only one I can get to work is the second one...
Thanks in advance!!!
Deven Phillips