How can a JMS adapter be configured in BPEL to consume messages from multiple queues ?

How can a JMS adapter be configured in BPEL to consume messages from multiple queues ?

If you want to use JMS with AQ as datastore then there is some configuration you need to do to enable this. This is outside SOA Suite per sa, e.g. no adapter required.
If you want to connect to the AQ direct then use the AQ adapter.
this blog may be of some help understand the configuration
http://biemond.blogspot.com/2008/01/oracle-jms-with-esb-and-bpel.html
cheers
James

Similar Messages

  • How can I most quickly delete a large number of outlook messages from my iphone?

    How can I most quickly delete a large number of outlook messages from my iphone?

    Who is the email account provider?
    If the email account is an exchange or IMAP account that you access with Outlook on your computer, delete the email with Outlook which will remove the email from your iPhone.

  • Can BPEL retry consuming message from JMS Q Infinite times after rollback?

    Hi Guys,
    I have a scenario where a simple BPEL 11g with a throw consumes messages from a JMS queue.
    If some error occurs the message would be rolled back to JMS queue.
    I want to configure the BPEL in such a way that the BPEL would retry to consume the rolled back message again and again regardless of how many times it is getting rolled back.
    please suggest some solutions.
    Thanks in Advance...

    To get rollbacks to sucessfully put messages back on a queue we:
    1. Ensure the BPEL component in composite.xml has the following properties set:
    <property name="bpel.config.transaction">required</property>
    <property name="bpel.config.oneWayDeliveryPolicy">sync</property>
    2. Use ASync fault policy
    <property name="oracle.composite.faultPolicyFile">oramds:/apps/AIAMetaData/faultPolicies/IC/ASync/V1/fault-policies.xml</property>
    <property name="oracle.composite.faultBindingFile">oramds:/apps/AIAMetaData/faultPolicies/IC/ASync/V1/fault-bindings.xml</property>
    These are custom fault policies we have that simply rethrows the fault (I can send them to you if required)
    The problem is that you will fire your server into an endless loop and not have any control over the process. Many kinds of error will cause the loop not just the one you want. I can imagine SOA server will hang, or run out of memory then you will reboot it and it will just hang again.
    You may have a resubmit delay of 5 mins but if you have 300 messages in the queue that is still one try every second. I can imagine your server falling over.
    Automatic re-submission is possible but I would suggest going for a design that gives you a little more control over the process. Having error messages go into an error queue and an automatic re-submission process might be a good idea. You could then control the process. e.g. Try one of the messages every 5 mins and if that works put the entire contents of the error queue back into the main queue.

  • How can i print a network configuration page , i need the IP on a ph1510

    how can i print a network configuration page , i need the IP on a ph1510

    Hi,
    What is the exact printer model?
    If it is the HP Deskjet 1510, this is a USB printer and it does not offer any network capabilities.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How can delayed delivery update be configured for Inbound delivery ?

    Hi All,
    How can delayed delivery update be configured for Inbound delivery ?
    There is setting for Outbound delivery delayed delivery update but how the same functionality be used for Inbound delivery?
    Regards
    Jimmi

    Hello Jimmi,
    Unfortunately I must confirm that the Delayed delivery update is only available for outbound deliveries. Please see below note for further details
    664316 Tips for the delayed delivery update for TO
    I hope this information helps!
    Martin

  • JMS Adapter setting the header data of MQ message

    Hi All,
    I need to set the properties in JMS adapter for setting the header data of MQ message.
    JMS_IBM_MQMD_Format = MQFMT_NONE.
    Thanks in advance
    Ravijeet

    Hi All,
    I am stuck in a typical XI issue.......I have a scenario where my input to XI is IDoc and output is xml message going to IBM MQ.
    The IDoc is sending some chineese character which is fine is SXMB_MONI Integration server and also fine in the payload of message monitoring, so feel the message is going fine from XI to MQ.
    But the receiver EDI system which is picking the message from MQ queue says the chinese characters are getting corrupted. They say that you need to set the additional properties in MQ header data
    JMS_IBM_MQMD_Format = MQFMT_NONE.
    How do I do this in communication channel for jms adapter ? How to I set the MQ header data in jms communication channel ?
    Thanks in advance
    Ravijeet
    Edited by: RAVIJEET DAS on May 12, 2009 8:27 AM
    Edited by: RAVIJEET DAS on May 12, 2009 8:27 AM

  • How can I get the list of drivers without getting popup message?

    Every time the application gets to this line:
    File[] roots = File.listRoots();
    I get message box: "There is no disk in the drive.
    Please insert disk into drive A:"
    How can I get the list of drivers without getting
    this message popup?

    I don't have a solution to this problem. However, it does occur and it is annoying. I am testing our application on 4 client machines. On three of them, it NEVER asks for the floppy disk. On the remaining one, it ALWAYS asks. I have looked on the computers and cannot find any configuration differences (in fact, these machines are kept in a "closed environment", and therefore, they are configured, by default, exactly the same).
    Does anyone have any thoughts?

  • How can I setup a mail-specific passcode/restriction on iPad used by multiple family members?

    How can I setup a mail-specific passcode/restriction on iPad used by multiple family members?
    Have an Exchange mail account setup and accessible in my mail on iPad... however my kids use it and i would like to restrict them from accessing this specific portion of the device.  I tried viewing restriction options and do not see that i can apply a restriction specifically to Mail.  Thanks for your help.

    Not a feature of iOS. Check the AppStore to see if there are other
    mail apps that allow passcode protection.
    Or use Safari to log onto your email via a web-based interface and
    enter your credentials each time. A bit slower, but the kids will
    not know the details to login.

  • How can i update rows  in a table based on a match from a select query

    Hello
    How can i update rows in a table based on a match from a select query fron two other tables with a update using sqlplus ?
    Thanks Glenn
    table1
    attribute1 varchar2 (10)
    attribute2 varchar2 (10)
    processed varchar2 (10)
    table2
    attribute1 varchar2 (10)
    table3
    attribute2 varchar2 (10)
    An example:
    set table1.processed = "Y"
    where (table1.attribute1 = table2.attribute1)
    and (table1.attribute2 = table3.attribute2)

    Hi,
    Etbin wrote:
    Hi, Frank
    taking nulls into account, what if some attributes are null ;) then the query should look like
    NOT TESTED !
    update table1 t1
    set processed = 'Y'
    where exists(select null
    from table2
    where lnnvl(attribute1 != t1.attribute1)
    and exists(select null
    from table3
    where lnnvl(attribute2 != t1.attribute2)
    and processed != 'Y'Regards
    EtbinYes, you could do that. OP specifically requested something else:
    wgdoig wrote:
    set table1.processed = "Y"
    where (table1.attribute1 = table2.attribute1)
    and (table1.attribute2 = table3.attribute2)This WHERE clause won't be TRUE if any of the 4 attribute columns are NULL. It's debatable about what should be done when those columns are NULL.
    But there is no argument about what needs to be done when processed is NULL.
    OP didn't specifically say that the UPDATEshould or shouldn't be done on rows where processed was already 'Y'. You (quite rightly) introduced a condition that would prevent redo from being generated and triggers from firing unnecessarily; I'm just saying that we have to be careful that the same condition doesn't keep the row from being UPDATEd when it is necessary.

  • How can I change the default Google search engine in Firefox 8 from google.fr to google.co.uk? Yes, I live in France with a French ISP, but English is my mother tongue and I want UK based responses.

    How can I change the default Google search engine in Firefox 8 from google.fr to google.co.uk? Yes, I live in France with a French ISP, but English is my mother tongue and I want UK based responses.
    I'm using XP Pro.

    You can find search engines on the Mycroft Project website.
    * http://mycroft.mozdev.org/
    * http://mycroft.mozdev.org/google-search-plugins.html

  • How can i restore my new macbook pro. Lion is installed from the beginning, but I have no cd. What am I suposed to do?

    How can i restore my new macbook pro. Lion is installed from the beginning, but I have no cd. What am I suposed to do?

    Boot your computer while pressing Command-R. You can reinstall Lion from here. Covered here:
    http://support.apple.com/kb/HT4718

  • How can I set up my email so when I delete mail from my Mac it deletes from my iPhone as well?

    How can I set up my email so when I delete mail from my Mac it deletes from my iPhone as well?

    That is a function of your email account, if it is an Imap account it will sync, if it's a POP account, it won't.
    Who provides your email.

  • I have 2 iphones and a macbook on one mobile me account.  How can I keep mail in the macbook and one iphone private from the other iphone?

    I have an iPhone 3G, an iPhone 3GS, and a MacBook on one macmail and mobile me account.  How can I keep mail on the MacBook and iPhone 3 private from the iPhone 3GS?

    Pretty much. I don't understand why you need to worry about MobileMe, though. I'd guess the vast majority of us with iDevices don't have MobileMe accounts at all. That's pretty much why it failed.

  • How can I stop my childs ipod and ipad receiving same messages

    how can I stop my childs ipod and ipad receiving same messages, they were both set up to the same email account and itunes account. I have just set up a new itunes account for my daughters ipod and changed hers to the new account but my ipad still seems to be getting the same messages from her ipod which is what I wanted to avoid, any suggestions ?
    Mel X

    i  changed  itunes and email password. and afew others  will that stop the text messages form going to it.

  • How can I create a disk image of snow leopard installer disk from my Imac which runs it?

    how can I create a disk image of snow leopard installer disk from my Imac which runs it? It came without DVD installer, and I want to make a copy of it's OS installer but can't find out how.

    You need to have the disc in order to create disk image of snow leopard installer disc. What did your machine ship with? If something later than SL, then why? If earlier, then you can buy the SL installer disc and make the disk image.

Maybe you are looking for

  • ASA upgrade problems

    I am having this problem upgrading my standby ASA.  It never gives an error it just boots over and over again.  Anyone have any suggestions?  Without even an error it's hard to figure out what's up..  Thanks! Cisco Systems ROMMON Version (1.0(11)4) #

  • My iphone contacts won't sinc to icloud

    No matter how I try, I cannot get my contacts on my iphone to sinc with my icloud account.  Help!

  • Disturbed Audio with long clips and speed changes.

    Hello, I experienced a strange problem in FinalCut Pro (v 6 and 7). -I capture a clip with a Blackmagic Decklink or a DVS Pronto as Uncompressed Quicktime, 720p50 via HD-SDI with embedded audio. The clip is about 10 minutes long. -I speed down the cl

  • Report Painter Characteristic Ledger does not exist

    Hi Experts, I am trying to create a report GRR1 and for Plan Budget Report in Rows i have given SALES, REVENUE,COST and TOTAL and when i have defined the Columns with period 1,2,3,4,5,6..12 I got the following message when executing the Report. Chara

  • Delivery type of delivery split

    Hello all, Sorry if this questions has been posted before, but I was unable to find it. I think my question is easy. I need to know what will be the resulting delivery type when spplitting a delivery.. Any ideas? Are there any customizing settings to