How do you span a jta usertransaction across multiple jms servers?

I have an ejb that connects to multiple jms servers (non-clustered) and
          retrieves messages. Those messages are concatenated together and placed on
          another jms queue. Is it possible to do all of this inside of one
          transaction? I am having trouble pulling this off.
          

Sure, you can do this. Assuming you're using WLS JMS, you have to make sure that for all the JMS servers you're talking to, you use a connection factory with the "XA Connection Factory Enabled" flag set. You also need to make sure that you use JTA to start a transaction before retrieving the first message, and commit it after you're done with the final send.

Similar Messages

  • How do you split the print job across multiple printers to shorten the prin

    i
    Can any one you provide some information on below questions.
    Check printing by XML template (XML Publisher).
    1. When printing checks, how do you print the checks from one printer tray and the overflow remittance pages from another printer tray?
    2. When printing a large batch of checks using XML and PDF output, how do you split the print job across multiple printers to shorten the print time?
    I appreciate if you could give some information on above 2 questions.
    Regards,
    Ramarao.

    Probably sould just do them individually.
    How to get all the iWork apps, iPhoto, and iMovie for free on an eligible iPhone or iPad
    http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
    About Free Apple Apps for iOS 7 compatible devices
    http://support.apple.com/kb/HT5913
     Cheers, Tom

  • How do you continue an iMessage conversation across multiple devices?

    I don't understand how to continue a discussion from one device to another. I have the same email address in my iMessage settings on my iPhone and my iPad but I can't see the conversation on my iPad as I would have expected.

    Here's a step-by-step, some/all of this you may already have done, just check through it first, then if it's still not working post a reply...
    On your iPad, go to Settings app, select Messages. Check that iMessage is turned on.
    The 'Receive At' address should be your Apple ID email address. If not, change it to be that.
    On your iPhone, also go to Settings, Messages. iMessage should be turned on there too.
    For messages to sync, this must be the same email address as your iPad, i.e. your Apple ID email.
    In 'Caller ID', set this as the email address, NOT your phone number.
    Try sending a message to a friend (who has iMessage enabled) from your iPad, then send a message to them from your iPhone.  (Some users suggest first deleting any previous message threads from this person, other say it won't matter either way. I did delete mine first.)
    When anyone with iMessage sends YOU a message, they must choose your email address (your Apple ID one) to send to, not your phone number. (i.e. in Contacts on their iPhone for example, they should add your email address there if they don't already have it entered.) If someone from their iPhone sends you a message to your phone number for example, it will only appear on your phone, not on your iPad.

  • How do you setup a server to use multiple DNS servers that are not connect to each other?

    Is there a way to setup a server that connects to two different domains to use the proper DNS server for name resolution?
    Let say there are two DCs: serverA.subdomaina.domain.com and serverB.subdoamainb.domain.com.  The domains are independent and not connected.  Now you need a common server that is connected to both and need to resolve names from both
    domains.
    Is this possible?
    I have setup a server in a workgroup.  One NIC has the subdomaina.domain.com connection specific suffix and the other nic has the subdomainb.domain.com.  Each NIC has the DNS server listed for the domain it is connected to.
    This configuration will resolve FQDNs of one domain but not the other.  This I believe is due to the fact the server only querys one DNS server and doesn't try the other DNS server.
    Is there any way to make the server try another DNS server, if the first one doesn't have the entry?

    Hi,
    Thank you for posting in Windows Server Forum.
    Here adding to the words of “Tim”, a forwarder is a DNS server on a network used to forward DNS queries for external DNS names to DNS servers outside of that network. You can also forward queries according to specific domain names using conditional forwarders.
    A DNS server on a network is designated as a forwarder by having the other DNS servers in the network forward the queries they cannot resolve locally to that DNS server. You can refer information regarding forwarders and how to configure from beneath link.
    Understanding forwarders
    http://technet.microsoft.com/en-us/library/cc782142(v=ws.10).aspx
    Configure a DNS Server to Use Forwarders
    http://technet.microsoft.com/en-us/library/cc754941.aspx
    Hope it helps!
    Regards.

  • How do you take off reseiving messages on multiple devices using the same apple account

    How do you take off reseiving messages on multiple devices using the same apple account?

    Go to Settings>Messages>Send and Receive on all but one device and add a unique email address on each device and delete the commone Apple ID email device
    If there is also an iPhone with iOS 6 associated with the Apple ID, uncheck the phone number on all but the phone.

  • How do you apply a master page to multiple documents at the same time?

    How do you apply a master page to multiple documents at the same time?

    Hi friends,
    Thank you for trying to help me out.
    Let me explain it a bit to remove the ambiguity.
    I have 10 documents nested under a book. Each of these documents have 'n' number of pages. I want to apply my custom made master page "First" to the first page of all these 10 documents in one go. The remaining pages of the documents have to be in default "Right" master page format. How will I do it?
    I tried selecting all the documents and importing the formats from another document with the custom made "First" master page. The master page format is getting imported but the first page of all the documents still remain with the default "Right" master page format.
    I think now my question is more clear...

  • How to execute sql scripts from Powershell across multiple databases

    Re: How to execute sql scripts from Powershell across multiple databases
    I have an tsql script that I want to run across a list of databases. How is the best way to do this in Powershell? Thanks.

    My example below, using just the SMO and not breaking up the batches, the ExecuteWithResults give the following error when the .sql file contains a GO. My script files are as simple as a DECLARE and then a GO.
    WARNING: SQL Script Failed
    The object of type "Microsoft.PowerShell.Commands.Internal.Format.FormatStartData" is not valid or not in the correct sequence. This is likely caused by a user-specified "format-list" comm
    and which is conflicting with the default formatting.
        + CategoryInfo          : InvalidData: (:) [out-lineoutput], InvalidOperationException
        + FullyQualifiedErrorId : ConsoleLineOutputOutOfSequencePacket,Microsoft.PowerShell.Commands.OutLineOutputCommand
    Also, when executing from the ISE, is there a way to force the ISE to release the files. I am having to close the ISE and reopen my script every time I want to make a testing change to the .sql file.
    [reflection.assembly]::LoadWithPartialName("Microsoft.SqlServer.Smo")
    $scriptspath = "C:\temp\psExecuteSQLScripts\scripts"
    $SQLServer = "fidevc10"
    $SQLDB = "Bank03"
    # Create SMO Server Object
    $Server = New-Object ('Microsoft.SQLServer.Management.Smo.Server') $SQLServer
    # Get SMO DB Object
    $db = $Server.Databases[$SQLDB]
    # Load All SQL Scripts in Directory
    $scripts = Get-ChildItem -Path (Join-Path $scriptspath "*") -Include "*.sql" -Recurse
    # Loop through each script and execute
    foreach ($SQLScript in $scripts)
    $fullpath = $SQLScript.FullName
    # Read the Script File into Powershell Memory
    $reader = New-Object System.IO.StreamReader($fullpath)
    $script = $reader.ReadToEnd()
    # Execute SQL
    Write-Host "Executing $SQLScript on $SQLDB...."
    try
    $ds = $db.ExecuteWithResults($script)
    Foreach ($t in $ds.Tables)
    Foreach ($r in $t.Rows)
    Foreach ($c in $t.Columns)
    Write-Host $c.ColumnName "=" $r.Item($c)
    Write-Host "Complete"
    catch [Exception]
    Write-Warning "SQL Script Failed"
    echo $_.Exception|format-list -force
    Write-Host " " -BackgroundColor DarkCyan

  • User Account Authentication across multiple Solaris servers - Best Practice

    Hi,
    I am new to Solaris admin and would like to know the best practice/setup for authenticating user accounts across multiple solaris servers.
    Currently we have 20 - 30 Solaris 8 & 10 servers which each have their own user accounts setup. I am planning to replace these with a similar number of Solaris 10 servers and would like to centralise the user accounts and their authentication.
    I would be grateful for any suggestions on the best setup and any links to tutorials.
    Thanks
    Jools

    i would suggest LDAP + kerberos, LDAP for name lookups and krb5 for auth. provides secure auth + extensable directory for users and other apps if needed. plus, it provides a decent spring board to add other unix plats into the mix since this will support any unix/linux/bsd plat. you could integrate this design with a windows AD env if you want as well.
    [http://www.sun.com/bigadmin/features/articles/kerberos_s10.jsp] sol + ldap+ AD
    [http://docs.lucidinteractive.ca/index.php/Solaris_LDAP_client_with_OpenLDAP_server] sol + ldap (openldap)
    [http://aput.net/~jheiss/krbldap/howto.html] sol + ldap + krb5
    now these links are all using some diff means, however they should give you some ideas as to whats out there. sol 10 comes with suns ldap server and you can use the krb5 server which comes with it as well. many many diff ways to do this. many many more links out there as welll. these are just a few.

  • How to configure single web server instance to multiple application servers..

    Hi all,
    we are running single instance of IWS6.0 SP2 on solaris, we want to comfigure this single instance to multiple application servers(JRun). Can any one advise me whether it is possible to do.
    Thanks
    Raj

    Hi Raj,
    "how to configure single web server instance to multiple application servers.."
    It's not possible for setting up multiple applicataion servers for Single iWS instance.
    Thanks,
    Dakshin.

  • How do I stop games from syncing across multiple devices?

    Hi there,
    My kids all have their own ipads (super big blessing from a grandparent).  My husband and I each have one as well.  We like to play some of the same games, and sometimes the game progress syncs between our devices.  Eg. We like to play Disney's Frozen Free Fall game, and for some reason, my ipad doesn't sync to my husband's.  When my kids asked for the game on their ipads, however, the games automatically synced to my husband's, so I didn't let them keep it (I didn't want them using all his items/lives).
    My kids all like to play Angry Birds Transformers, and with the latest update to that game, their games are all suddenly connected to each other (they all have the same characters, number of gems, etc.).
    How do these games sync (game center, icloud, etc.)?  Does anyone know how to disable the feature so that our games do not sync across multiple devices?  I would like us to not be sharing the same game progress.  We all share one itunes account.
    Thanks so much!
    (If it helps, I have the ipad2, my kids have ipad mini 2's, and my husband has the ipad air.)

    We all share one itunes account.
    This would  be why the syncing occurs. Until a more knowledgeable person comes   by ...
    You can have one, two or three apple id accounts per idevice. Assign a second apple id to all the kids machines. Same or multiple apple ids. depending on how you want the game to act. Does a family account differ?  delete the game from the current apple id.  Install the game on the new apple id ( or apple ids ).
    Look into family sharing:
    https://www.apple.com/icloud/family-sharing/
    Robert

  • How do you make one long track into multiple tracks?

    How do you make one long track in itunes into multiple tracks? Is there a way to do that?

    I found another solution too through Garageband. I don't know if it was easier, but I liked this way of creating seperate tracks.
    First, You put the long track into Garageband.
    -then you create a New Basic Track under Track Tab-create as many of those as tracks you want to make
    -also make sure the headphones button is lit up under each New Basic Track-this allows it to be a 'solo' track.
    -then you can start cutting music-with the long strip find where you want to split into a new track and drag that half down into each New Basic Track.
    -Once you are done, press Option Z and a purple little triangle will appear up by the measures. drag the triangle to the end of the first track-this allows it when sharing to itunes to just record the particular track you want, it puts a stop/end to that track.
    -then, make sure the track you want to share is highlighted the bright orange and go to share, 'send to itunes'
    -it will send that to itunes and you can rename it in itunes.
    -Go back to Garageband-delete the first track you successfully shared and move the next one up to where that one was. Slide it accross to the left so it is at the beginning, press option Z and move the purple triangle where you want it to be...and you are good to repeat until all your tracks are done!
    I am a very visual person, and this helped to see where I was cutting each track, just another way!

  • TS3276 how do you send an e-mail to multiple recipient's using a group listing

    How do you send e-mail to multipul recipient's using a group list

    Add the names to a group created in address book. When you send a message, type the group name in the TO, CC, or BCC  field of a new message.
    Note: group messaging is not supported on the iPad or iPhone.

  • How do you stop app's going across 2 iphones when you only have 1 apple ID for itunes?

    I have an iPhone, iPad & iMac which is all set up lovely. However my girlfriend now has a iPhone too so I have set up her phone with my apple ID for itunes but her own one for emails etc.
    The issue I am having is that when ever she down loads an app it appears on my phone as well, how do I stop this my friends think I'm changing my ways with all these girly apps apearing on my phone at random??

    Hi Oxford_lad,
    apart from you treating your girlfriend to well, you just have to deactivate automatic downloading!
    Enabling Automatic Downloads on your iPhone, iPad, or iPod touch
    Tap Settings > iTunes & App Stores on your device.
    Tap Sign In if you're not already signed in to the iTunes Store.
    Enter your Apple ID and password.
    Tap On/Off switch to enable or disable Automatic Downloads for each content type.

  • How do you share the same library across different mac accounts on same computer?

    I have 3 accounts on the same Mac and want to share the library (or parts) across all 3.  Home sharing does not seem to work -- I've activated it but there are no shared libraries showing up on itunes.  thanks.

    iTunes: How to share music between different accounts on a single computer

  • Can you span an audio clip across sequences?

    I know you can do this across scenes in Dreamweaver. I am wondering if it is any different.
    I would like to take an audio clip as a source for background music, and have it play across all the sequences I have in my project, so that there are no jumps in the playback of the music. Is that possible?
    Thanks!

    why not just leave the music out of your sequences. Then make a master sequence where you put all of your other sequences, essentially using them as nests. Then you can have the audio file play straight though all of them?

Maybe you are looking for

  • Can you use a hierarchy as a parameter in SSRS?

    All, I was attempting to create a SSRS report and then will take that report and add it into performance point.  In PerformancePoint, I am able to have one dropdown parameter list with a tree like hierarchy coming from a SSAS cube.  For instance, my

  • Urgent Help:read from text file and write to table

    Hi, I'm a super beginner looking for a vi to read this data from a text file and insert it into a table:    #19 Date: 05-01-2015 ID= 12345678 Sample_Rate= 01:00:00 Total_Records= 2 Unit: F    1 03-23-2015 10:45:46   70.1   3.6    2 03-23-2015 11:45:4

  • Setting Up Shared Development Environment

    Is there any diagrams, white papers, guides or best practices on setting up the J-Developer and connecting to shared Services and database? The Developer guide (E10148.pdf) does not really cover what the standards is or the overall infrastructure of

  • IE 5.5 and Applets

    Hi I have done a quite a lot of java applications but not applets. No trying to cover this I get problems with CLASSPATH I think. When running my test applet with just one task in init() add a Jlist I get the NoClassFoundException javax.swing.JList w

  • Issue with PSE 9 Editor

    Running PSE 9 on a new iMAc with 8 Gig memory, 1 TB hard drive.  When trying to save an edited file, the Editor consistently becomes unresponsive when I try to close the saved file requiring that I force Editor to close.  Not only with not Editor clo