Only bursting one mail..

Hi,
According to BIP User Guide 10.3.1.2 (B40017-01).
We make a testing for using bursting engine .
It work but it only burst one mail out(we expected more...).
Is there any problem in our control file ??
The control file(burst.xml):
<?xml version="1.0" encoding="UTF-8"?>
<xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
<xapi:request select="/EMPLOYEES/EMP">
<xapi:delivery>
     <xapi:email server="mail.server.ip.address" port="25" from="[email protected]" reply-to ="[email protected]">
     <xapi:message id="111" to="${EMAIL}" cc="[email protected]" attachment="true" subject="Bursting Test for ${NAME}">
Hi ${NAME}, Please review the attached document... </xapi:message>
     </xapi:email>
</xapi:delivery>
<xapi:document output-type="pdf" delivery="111">
     <xapi:template type="rtf" location="/tmp/test.rtf"></xapi:template>
</xapi:document>
</xapi:request>
</xapi:requestset>
The XML data (emp.xml) is simple like this:
<?xml version="1.0" encoding="UTF-8"?>
<EMPLOYEES>
     <EMP>
          <NAME>AAA</NAME>
          <EMAIL>[email protected]</EMAIL>
          <MSG>This is the first message for AAA</MSG>
     </EMP>
     <EMP>
          <NAME>BBB</NAME>
          <EMAIL>[email protected]</EMAIL>
          <MSG>This is the first message for BBB</MSG>
     </EMP>
     <EMP>
          <NAME>CCC</NAME>
          <EMAIL>[email protected]</EMAIL>
          <MSG>This is the first message for CCC</MSG>
     </EMP>
</EMPLOYEES>
And the attachment template is:
This is a test...
<?for-each:EMP?>
Hi <?NAME?> .. <?MSG?>...
and your email is <?EMAIL?>
<?end for-each?>
We except to get three email..
..send to AAA(cc to me) / send to BBB(cc to me) / send to CCC(cc to me)..
But there is only one mail send to AAA(cc to me).
The java concurrent program is complete with normal status:
The log file is shown as below, and that stop at document index 1(we expect 2 and 3)..
==============Start of Bursting Process=================
========Start of Process Request
Request Index +requestIndex
========Start of Process Document
Request Index 1
Document Index 1
========End of Process Document
Outputs :[tmp/061207_120154592/3.pdf]
========Start of Delivery
Request Index 1
Document Index 1
DeliveryId 111
========End of Delivery
Attachments : [tmp/061207_120154592/3.pdf]
========End of Process Request
==============End of Bursting Process=================
So is there any problem in our control file(burst.xml) or any mistake in the template file(test.rft)???
Thanks in advance,
best regards,
Zhxiang

What is the XMLP version?
There was some bug in initial 5.6.2 which does not work if the bursting tag is substring of parent tag EMP and EMPLOYEE. replace EMPLOYEE to G_EMPLOYEEE or use latest xdo patch XDO 5.6.3..
Regards
Ashish

Similar Messages

  • Mail only downloads one mail at a time from Gmail

    I have a gmail email account and read it using Apple Mail.
    This used to work fine: every time I connected, all my mails were downloaded in one go. Recently, something has changed (all my settings are the same) and now only one mail is downloaded at a time. Since the minimum time setting to 'check new mail' in Apple Mail is once per minute, this means one mail per minute, or clicking manually for an hour in order to download over 60 new emails.
    Any ideas how I can download all my mails whenever I access the internet? I have tried on different laptops (Powerbook and MacBookPro) and different versions of Mail and the problem persists. There are no obvious settings in either Gmail or Apple Mail preferences to address this.
    Thanks.
    MacBook Pro   Mac OS X (10.4.9)  

    During the interval since my first post, I tested a little with my Gmail account, which I do not use extensively. I rapidly sent two messages from other accounts to my Gmail account, and they both showed up at the next automatic checking for new mail. Thus I conclude it should work from the Gmail end of things.
    Let me suggest that you quit Mail, open Home/Library/Mail/the Gmail account folder, and find and delete the file named MessageUidsAlreadyDownloaded2, and then relaunch Mail. This is a file in each account folder that with normal POP accounts prevents downloading any message left on a POP server more than once. Since Gmail does not really work like a normal POP in many ways, even though allowing POP access, this file would not normally play a very big role. But in this case it might have some corruption that is impacting this issue. With a normal POP account removing this file would cause any messages left on the server to again download, but with the way Gmail works, this will not happen, but may clear up something.
    I tested this before posting this suggestion, and a new MessageUidsAlreadyDownloaded2 file was created as would be expected with any POP account, once any new message was downloaded. Your one minute interval may have not allowed enough time for this file to be updated on some occasion, and may have led to its corruption.
    Keep me posted.
    Ernie

  • Attaching all PDFs in one mail? Having only one Body

    Dear All,
    I managed to develop a code which enable me to send a mail for each selected line in my table. The problem is it send to me for each line  a separate E-mail "each line has a PDF ". I just want to send only one mail for all PDFs attachments.
    Code:
    foreach (vw_CustLedgerEntryItem1 item in _ItemsList.SelectedItems)
    //you would normally process each row
    //but here we're just concatenating the properties as
    //proof that we are processing the selected rows
    //vw_CustLedgerEntryItem1 entryItem = this.vw_CustLedgerEntry.SelectedItem;
    InvSendbyMailRequestBody reqBody = new InvSendbyMailRequestBody(
    item.Document_No_
    , item.Report_Type
    , "DynNavHRS"
    , this.Application.User.Name.Replace(@"HRS\", "") + "@hrs.com" // HRS001
    , "Document"
    , false
    , false
    , this.vw_CustomerItem.ISO_Code // Change 7.8.2014 Bug in Email body text sprache
    , this.vw_CustomerItem.Salesperson_E_mail // Change 7.8.2014 Bug in Send E-mail
    , item.Customer_No_.ToString()
    , false
    , "XYZ"
    , false);
    InvSendbyMailRequest req = new InvSendbyMailRequest(reqBody);
    HRSReportServiceSoapClient wsHRS = new HRSReportServiceSoapClient();
    wsHRS.InvSendbyMailAsync(req);
    this.ShowMessageBox("Your email was successfully sent");
    any idea how can I send the attachment only in one mail ? My guess is that I have to take out this part out of my loop ? but its not working :(
    InvSendbyMailRequest req = new InvSendbyMailRequest(reqBody);
    HRSReportServiceSoapClient wsHRS = new HRSReportServiceSoapClient();
    wsHRS.InvSendbyMailAsync(req);
    Thanks a lot,
    Zayed

    HI Zayed,
    If you want to send an email with attachments in Lightswitch, you could consider using System.Net.Mail with
    Attachment Class. For example:
    attachment1 = pathToFirstAttachmentFile;
    attachment2 = pathToSecondAttachmentFile;
    // create and add first attachment to collection
    Attachment data = new Attachment(attachment1, MediaTypeNames.Application.Octet);
    m_MailMessage.Attachments.Add(data);
    // create and add second attachment to collection
    Attachment data2 = new Attachment(attachment2, MediaTypeNames.Application.Octet);
    m_MailMessage.Attachments.Add(data
    Best regards,
    Angie
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Recovery of more than one mail at a time from Time Machine

    Hi. I'm trying to recover some old mails from Time Machine. My problem is that I can only recover one mail at a time. After it has been recovered Time Machine closes and I have to start all over again so this project will take some time:-). I've tried to highlight more than one mail but then mail crashes….I use OS 10.7. Can anyone help?
    Regards
    Henrik

    just use "command" key:-)

  • ML server: more than one mail relay

    How can I add more than one mail relay for outgoing mail through ISP?
    In the server.app I can only add one mail-relay. My ISP recommends more

    First I've heard of that recommendation....
    Unless there's something rather odd going on here — cases such as very flaky ISP mail servers or very flaky network connections to the mail servers, such that you're finding a need to redirect your own mail client host settings to different mail servers at the same ISP, for instance — or if you're going to be sending out massive volumes of mail — I would leave it at one host, and see if there's an issue.
    Mail servers are designed to retry for transient outages, so most errors should retry.
    Postfix allows one relayhost, unless you want to get into sender_dependent_relayhost_maps and that's not particularly common.
    With static IP and correct DNS, you could eliminate the relayhost setting entirely.  That's a typical approach with mail servers.

  • HT201342 How can I add an e-mail address to my existing icloud addresses?  I currently only use one and I would like to ad two more?

    How can I add an e-mail address to my existing icloud account?  I curently only use one of the three.

    Each iCloud account only has a single iCloud account.  If you want, you can add up to 3 alias addresses that will receive email in the same iCloud inbox, as explained here: http://support.apple.com/kb/PH2622.

  • My wife and I each have an Ipad and only one mail account. Both of us receive the same e-mails but when one of us deleates an e-mail it also deleates on the other Ipad. How can I stop this? I might delete an e-mail she wants to read. Thanks

    My wife and I each have an Ipad and use only one mail account. Both Ipads therefore get the same mail and when either one of us deleates an email it also deleates on the other Ipad and this can be a problem if one of us doesn't want that e-mail deleted. Obviously our Ipads are synced and I don't know how to correct this. Any advice ?

    If you both have the same email account, there's no setting on iPad you can use.  When a message is deleted, it's deleted from the mail account server, which will happen on both devices. 

  • E-Mail Issues: Retrieved E-Mails deleting off server but only on one of two accounts

    I am the proud owner of a Z10 as of 4 days ago. So far, it's a great device, but I've got one problem. I want the e-mail messages retrieved on my phone to stay on the server, and this is working, but only for one account.
    I setup my two e-mail accounts, Comcast and GMail, both as POP accounts. I did not setup GMail as IMAP. I tested the connections to see that the messages were properly retrieved on the phone, then I logged into each account to see that the messages were staying on the server. It appeared as though they were, but apparently I didn't wait long enough on the GMail account because the messages were being deleted from the server and I didn't notice this for 3 days. Again, my phone is NOT doing this for my Comcast account and I don't know why.
    I have about 10 e-mails now on my phone in my GMail account that I can't seem to get back on the GMail server. I need to do this so I can download the messages to my home server where all my mail is stored.
    I thought maybe I could create a second IMAP GMail account in the hub and copy the messages from one account to the other, but I can't.
    If I continue to let the phone get those messages, they'll continue to be removed from the server.
    If I forward them to myself, then they just show up as having come from me and that's not what I need either.
    If I delete the account entirely, I lose my messages and that's definitely not what I want.
    I thought I could tell the phone to stop logging into the GMail account by updating the password on the device, but it has to authenticate to the server to confirm that the password is correct, and if it isn't, it won't take the password and returns an error.
    So far, the only thing I've been able to do to get the phone to stop retrieving the messages is to change my GMail password and not update it on the phone. That way, the phone can't sign in to GMail at all and get any new mail. However, I still have these 10 messages on my device that I need to export somehow.
    Is there a way to export mail on this device? Is there a way to copy messages from account to account? What directory is the mail stored in and what file format is it stored in? Can I convert the messages to .csv and do it that way? And why did this happen only for my GMail POP account and not Comcast?

    This is a wi-fi network connection problem - not a problem with an email account.
    Do you have cellular reception at home? If so, you should be able to receive email with both email accounts as long as you have an internet connection with the cellular network.
    On your iPhone go to Settings > General > Reset and select Reset Network Settings.
    This will delete all wi-fi network settings from your iPhone for every wi-fi network you have successfully connected your iPhone with.
    After doing so check if your wi-fi network is available again to re-join.

  • Mail only retrieving one email at a time

    Short history behind the problem:
    About a month ago my Mac stopped retrieving new email completely.  Re-starting, re-building, etc. did nothing.  Using 'Get account info' I could see that the last email it thought was on the Gmail server looked a bit odd - no subject, etc.  After deleting that in Gmail I could then get new mail.
    But now, even though I can see that there are about a dozen new emails on Gmail, the Mac only downloads one at a time.  Therefore at maximum 'get' speed that takes 12 minutes.
    Interestingly, 'Get account info' doesn't show the latest emails, but Mail does get them - just one at a time.
    Anyone got any ideas on this?
    Thanks,
    Richard

    I might have found the solution for this.
    Right-clicking on Inbox and selecting 'Get Account Info' I could see quite a few 0 size emails left on the server.  After selecting these and clicking 'Remove from server' it solved the problem - Mail now downloads many emails at once :-)
    Hope this helps anyone who gets this problem too.
    Richard

  • Apple Mail downloads only one mail at a time...

    Hi Everybody,
    My PowerBook runs on Tiger 10.4.11. And I have Apple Mail version 2.1.3, which I have configured to my gmail account.
    Just a few days back I noticed something very peculiar about the download habit of Apple Mail which now downloads only one mail (this has started a few weeks back). Irrespective of how many mails there are on my gmail, when I press 'get mail' button, it connects to my gmail account and shows & downloads only one mail(the first in the row). Now, when I figured out the problem I have to press the 'get mail' button again and again till there are no more mails to download. It actually downloads all mails based on the receipt time, but only one at a time.
    Does anyone here have any idea what this could be. I really look forward to sorting this out.
    Thanks in advance
    Malaya

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    The usual reason why updates fail or mess things up, is if Permissions are not fixed before & after every update, with a reboot... you may get a partial update when the installer finds it doesn't have Permissions to change one obscure little part of the OS, leaving you with a mix of OS versions.
    Some people get away without Repairing Permissions for years, some for only days.
    If Permissions are wrong before applying an update, you could get mixed OS versions, if Directory is the slightest messed up, who knows!
    If many Permission are repaired, or any Directory errors are found, you may need to re-apply some the latest/biggest updates.
    May even need to do an Archive and Install if you have room on the HD...
    http://docs.info.apple.com/article.html?artnum=107120
    I only use Software Update to see what is needed, then get them for real via...
    http://www.apple.com/support/downloads/
    That way I can wait a week or so, check the forums for potential problems, and get Permissions & such in order before installing.

  • Mail: I can only open one email at a time

    Using Mail, I have a very strange phanomenon: I can only open one email at a time. E.g. when writing a new email, I cannot open another email for reference. I need to close and save the new email as a draft before being able to open another one.
    It would be great if somebody could help me with this, thanks!

    Hi Cocolores,
    If you choose File > New Viewer Window from the menu bar in Mail, you can have as many email messages open as you like.
    I hope this information helps ....
    Have a great day!
    - Judy

  • How do I set Mail to only download one-month old emails?

    Hello there
    I have been a Mac user since 2008 but I have never actually used the default Mail client. I always used third-party applications but since most applications on Yosemite perform really well, I decided to give Mail a shot. The only problem I am facing right now is finding a setting to have Mail only download one-month old emails rather than the whole inbox? I have three accounts (Two on GMAIL and one on Hotmail) and of course they contain thousands and thousands of emails and it will take a very, very long time to download all of them since my internet is pretty slow (2MB), so I was wondering if that option is available? It'd be fantastic. It's available on Android and iOS AFAIK so I assumed maybe it's an option on Mac too?
    Thank you for your time.
    Regards,
    Tarek Elsakka

    If you have gmail (Google Mail), one idea is to "label" all the mail you want to in the gmail web interface and then just download mail with a certain label. Take a look at the article at http://gmailblog.blogspot.com/2013/12/download-copy-of-your-gmail-and-google.htm l
    Does that help?

  • Limiting notifications to only one mail account

    i have one inbox, in it i have mobileme and gmail, but i only want to see dock notifications for the mobileme account, whats the best way?
    thank you
    Max

    To be sure I get it....     I'm not thinking about profile where you have you own setup on the device. I'm only talking about the situation, where you are syncing with more than one mail account and you want to set up a password for only one account and not the other (or the rest of Apps and/or funtionallity on the deivce). 

  • How do I force smart mailbox to only show me mail from one mailbox while also showing multiple senders?

    How do I force smart mailbox to only show me mail from one mailbox while also showing multiple senders?

    It would help to post what you've tried. It does, indeed, appear that -h is the switch, and the man includes several examples, so if you've followed the examples and it's not working then that hints that you should pass it back to Apple.
    You also don't say how you're implementing your change. Are you invoking slapd manually, or are you editing /System/Library/LaunchDaemons/org.openldap.slapd.plist ?
    You should be doing the latter, and I'd expect to see something like this:
    <array>
      <string>/usr/libexec/slapd</string>
      <string>-d</string>
      <string>0</string>
      <string>-h</string>
      <string>ldap://x.x.x.20/ ldap://127.0.0.1/ ldapi://%2Fvar%2Frun%2Fldapi</string>
    </array>
    (note the inclusion of ldap://127.0.0.1/ as an entry - you'll need to run on localhost as well the .20 address since all the local services will look to localhost)
    You might also need an ldaps URL if you're using SSL but let's walk before we try to run

  • Mail only checking one account and I have three. Since Apple sec update

    Help. My Mail is only checking one out of three accounts for new mail.
    I have gone through the settings and nothing is obvious as to why.
    It has happened since Apple recent security update which may or may not be a coincidence.
    I cant see it being the ISP who provide the emails. it just doesnt seem to be checking.
    Any ideas please?
    Tc

    Could it be that those accounts are in an "offline" state? Is the Mailbox > Go Online command enabled or disabled for them?
    Go to Preferences > Accounts > Advanced. Is Include when automatically checking for new mail checked or unchecked?
    Does manually checking for mail work?

Maybe you are looking for

  • How to clear the cache from Mac Book Pro

    What is the simplest way to clear out the cache from my Mac Book Pro?

  • Collect Overflow Type P - Patching? Time evaluation?

    Hi Experts! I have an issue and I need your help. The client is in the process of patching Development, QA and Production. They have patched the DEV and QA clients and have yet to complete production. Testing in QA of time evaluation forced retro'd b

  • Where is download for acrobat 9 standard

    I am having to reinstall acrobat 9 standard and cannot locate the file on the website.

  • Error in Cisco Application Desktop

    I have the following error when i install the Cisco Agent Desktop application(CAD) with version 7.02 release 3 and i am using cisco call manger 4.2(3) and IPCC Enterprise version (7).

  • What is grinding sound on my iMAC

    I had my hard drive replaced and upgraded my desktop to snow leopard.  Since then the computer has a grinding sound coming from it.  The spinning ball of death appears frequently dispite taking actions to clear cache, etc.  Am I doomed to need to rep