Biztalk recieve multiple files in one instance

Hi,
in my app, I need receive one xml file and few pdf files, problem is that count of pdf files can change. How can I handle this in BizTalk.
Thanks.

Hi 
As i see, you need to receive the pdf files from a folder location which will be decided from the content of your first input xml file. So it is dynamic and the no of files may also vary?
I think the file mask and the receive location address (folder location to receive files) can be set dynamically out of the box. There is a similar thread of discussion
here, Please have a look. 
IMO a workaround would be using .net class to receive/read/move the pdf files dynamically and use that class in your BizTalk orchestration. I have't tried this but I am sure this should work here. 
HTH,
Naushad Alam
When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or
Mark As Answer
alamnaushad.wordpress.com

Similar Messages

  • Ability to view multiple files in ONE window

    I can see here that this is not a new topic really but the thing with Acrobat 9 is so frustrating that it is just unbelievable.
    This is another pearl:
    Acrobat 9 "lost" its predecessors ability to view multiple files in ONE window. After opening four only documents I cannot see anything on the screen because the toolbars on each individual window cover all necessary view and nothing is left for the actual document. And sometimes I need to open 20 documents!
    This is ABSOLUTE DISASTER!!!
    I found some explanations from Adobe on the Web that are more than a year old.
    I was sure that by now this unfortunate mishandling of that feature (apparently it was dropped out from A9 deliberately - WHO'S IDEA WAS THAT?) would be somehow restorable.
    Would anyone happen to know if this feature can get restored to how it was working in A7 or 8 (without the need to uninstall A9 and install A8)?

    No, it can't be restored, unless Adobe decides to change the way Acrobat works (which is possible, but not likely).
    By the way, it was Microsoft's idea... Adobe were just following their example on this.
    You can make a feature request here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • How can I convert multiple files at one time and not one at a time

    How can I convert multiple files at one time and not one at a time

    Hi Plissey1950,
    Sorry for the lengthy delay to a response.  Are you trying to convert multiple files to individual PDF files at the same time? (not combine them).  If so, you'll need to use Adobe Acrobat for this function. The CreatePDF service does not have the ability to convert multiple files to multiple individual PDF files.
    Thanks,
    David

  • How do you select multiple files at one time

    How do you select multiple files at one time

    Select one, and then either command-click another, or in list/column view, Shift-click the item at the other end of the range you want to select. Alternatively, click on a spot in the screen and drag the cursor until all the files are selected.
    (114308)

  • Mii attach multiple files in one e-mail

    Hello everyone
    This is Yuko.
    There are two MII may have a problem with email attachments.
    1. Once you attach multiple files in one e-mail
    Please tell me how this
    2. Can not be above 1, and compiled into a single ZIP file.
    Now, I can attach multiple files in one e-mail,
    When you extract the ZIP, just made away with the file directory path is created,
    you can not open the attachment and open the folder several times.
    Anyone know a solution to this problem, please tell me.

    Kevin, Thanks for answers.
    My English is poor. Sorry.
    Your answer is, we assume that the permit issue, and probably would not matter. Again, write the points in need.
    For example, the two CSV when put together in one ZIP file, the workbench in the CSV file to specify the full path. CSV file, the workbench under the Web folder and then five in the second tier. At this time, who received an email with this attachment is to open the attachments, ZIP and open the file, open the following folder hierarchy, the next ..., and, many times to open the folder , will finally open a CSV file. Many times without opening the folder you want to open a CSV file.
    We look forward advice.

  • To Move Multiple Files from one directory to another.

    Hi,
    I need to move multiple files from one directory in UNIX (application server ) to another. I need something like an FM 'STRALAN_COPY_FILES' which is also valid in ECC 6.0.
    Thanks in advance.

    Hello Sachin
    Below you see a copy of how to use EPS_FTP_PUT using transaction SE37.
    Import parameters               Value             
    RFC_DESTINATION =                 NONE              
    LOCAL_FILE             =         filename          
    LOCAL_DIRECTORY   =              /dir1/dir2        
    REMOTE_FILE             =        filename          
    REMOTE_DIRECTORY   =             /dir1             
    OVERWRITE_MODE        =          F        " force -> overwrite existing file                 
    TEXT_MODE                    =   B               " binary
    TRANSMISSION_MONITOR            X       " display transmission monitor            
    *RECORDS_PER_TRANSFER            10                
    *REQUESTED_FILE_SIZE             0                 
    *MONITOR_TITLE                                     
    *MONITOR_TEXT1                                     
    *MONITOR_TEXT2                                     
    *PROGRESS_TEXT                                     
    *OBJECT_NAME  
    Regards,
      Uwe

  • Multiple selections to multiple layers or multiple files with one go ?

    Hi,
    how to convert multiple selections to multiple layers or multiple files with one go ?
    Thanks!

    You may want to ask over at
    http://forums.adobe.com/community/photoshop/photoshop_scripting?view=discussions
    or
    http://ps-scripts.com/bb/
    I think there are Scripts about for the task or at least ones that could be adapted without too much problems.
    The usual approach is, I think, creating a Work Path from a Selection and then using (expanded) Selections based on the individual subPathItems to intersect with the original selection.
    Of course there are possibilities for bad results …

  • Sending multiple files using one socket

    Hi guys
    I'm working on a simple app that sends multiple files over LAN or I-NET. The problem is that the app run seems to be non-deterministic. I keep getting this error on the client side:
    java.io.UTFDataFormatException: malformed input around byte 5
            at java.io.DataInputStream.readUTF(Unknown Source)
            at java.io.DataInputStream.readUTF(Unknown Source)
            at service.DownloadManager.storeRawStream(DownloadManager.java:116)
            at service.DownloadManager.downloadFiles(DownloadManager.java:47)
            at manager.NetworkTransferClient$1.run(NetworkTransferClient.java:104)The byte position changes every time I run a transfer. The error is caused by this line: String fileName = in.readUTF(); Here's the complete code:
    Client
    private void storeRawStream() {                               
            try {
                FileOutputStream fileOut;                       
                int fileCount = in.readInt();           
                for(int i=0; i<fileCount; i++) { 
                    byte data[] = new byte[BUFFER];
                    String fileName = in.readUTF();               
                    fileOut = new FileOutputStream(new File(upload, fileName)); 
                    long fileLength = in.readLong();                                 
                    for(int j=0; j<fileLength / BUFFER; j++) {
                        int totalCount = 0;
                        while(totalCount < BUFFER) {                       
                            int count = in.read(data, totalCount, BUFFER - totalCount);
                            totalCount += count;                 
                        fileOut.write(data, 0, totalCount);
                        fileOut.flush();
                        bytesRecieved += totalCount;                                  
                    // read the remaining bytes               
                    int count = in.read(data, 0, (int) (fileLength % BUFFER));                                        
                    fileOut.write(data, 0, count);              
                    fileOut.flush();
                    fileOut.close();      
                    transferLog.append("File " + fileName + " recieved successfully.\n");  
            } catch (Exception ex) {
                ex.printStackTrace();
        }Server
    public void sendFiles(File[] files) throws Exception {
            byte data[] = new byte[BUFFER];
            FileInputStream fileInput;                                       
            out.writeInt(files.length);              
            for (int i=0; i<files.length; i++) {   
                // send the file name
                out.writeUTF(files.getName());
    // send the file length
    out.writeLong(files[i].length());
    fileInput = new FileInputStream(files[i]);
    int count;
    while((count = fileInput.read(data, 0, BUFFER)) != -1) {
    out.write(data, 0, count);
    bytesSent += count;
    fileInput.close();
    out.flush();
    Does anybody know where's the problem? Thanx for any reply.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Send the length of each file ahead of each file, with DataOutputStream.writeLong().
    When reading, read that long, then stop reading bytes when you've read exactly that length.

  • How to attach multiple file in one mail

    Hi,
    I've problems with sending multiple files via Gmail account (Ipad version)  When sending the photo or video, I've to just click the photo and choose send to mail one by one. Any simpler way?  Sometimes i did sent both mpg and jpg but the reciepient didn't see any attachment too
    Anyone can help advise how to attach different file (doc, video, photo) in one mail will be a lot appreciated. Thank you so much

    You can attach multiple pictures to an email on an ipad2. Don't know about original iPad.
    Choose a photo or take a screen shot (hold down home button and button next to volume control at same time--screen shot now will appear in photos).
    Go to photos and edit your picture or screen shot, save it, then hold down on the image and copy it.
    Go to mail, create a new mail and paste it in.
    Save you mail as a draft.
    Go back to photos and select a different photo, copy it, and return to your draft, and paste it in. Repeat if you need to add more.
    Anything that you can take a screen shot or have an photo of can be pasted in one at a time into that draft email.
    If mail gets uncooperative, during this process, then double click on home button and quit multitasking mail, then open up mail again and send your draft. Uncooperative means gets frozen.

  • How to Open Multiple Files into One Image with a Format Plug-in?

    Basic overview question:
    I'm interested in creating a format plug-in that will open multiple image files and combine them, then provide one image to Photoshop for further work.
    1.  Can an .8bi plug-in receive notification of multiple files to be opened?  (Not unlike Camera Raw).  Or does one absolutely need to use an .8ba Import plug-in to do this?  I would prefer .8bi.
    2.  Assuming yes, could the latter parts of the plug-in interface be used to open just one combined image?
    Thanks!
    -Noel

    1) An import plugin (8bi) doesn't get file information - it has to provide it's own open dialog.  Only a file format plugin gets a file, but only one at a time.  (ACR has some special magic)
    You might want to take a look at the PhotoMerge and MergeToHDR setups with a script driving a plugin.

  • How to open multiple files on one layer

    hi there,
    I have a fairly simple problem and I browsed through all the different FAQs to find it but nothing came up. In any case, my question is how do you select multiple files (in this case PNGs) and open them as individual layers on one file instead of opening them as separate files?
    easy huh? I'm a noob ok.
    thanks
    -Chance

    Russell Brown has a CS4 version of his services.
    As Wolf points out, if you have CS4 then you already have access to a script that will also do what you want. I happened to notice though, that the built-in script and the Russell Brown script work slightly differently. The RB script will crop all images based on the first one loaded. The built-in script will apparently use the dimensions of the largest image.
    It was a nit but I thought the title of the thread would be more accurate as "Help opening multiple images as layers in a single file" or something like that.

  • Can't process multiple files on one of three catalogs

    After getting straightened out about getting my catalogs in order, which I've done, I've run into another problem. I have three catalogs one for People, one for Things and one I call Workplace where I try out things that are new to me so I don't mess up my main catalogs.
    I've straightened out the files in my Things catalog. I have one catagory that contains images of autograph book pages from the late 1800s. Those scans were done in JPEG some time ago. I've tried using multiple processing to change these 55 images to psd in the original file to be consistent with the rest of the catalog. Each time the process fails.
    In order to see what the problem might be I have copied the catagory file into both of my other catalogs and have been able to process the catagory file back into itself as psd. I have also created another small file in the Things catalog and tried to convert it and had the same result. The warning info box that appears when copying back into the same file states that the original files will be overwritten. The psd files do not overwrite the jpg files. They are added to the original file. That may be the way it is intended to be. That's not a real problem.
    The real question is why can't I process multiple files in the original catalog. I have looked at the error file and, although I don't know much about most of it, I found the following in the first part of the file.
    crash exception="EXCEPTION_ACCESS_VIOLATION"
    I run XP SP3 and PSE 8. I am a single user with administrator rights. I find no mention of a  permission filter in the PSE 8 program.
    I'm stuck until I solve this problem and I need help getting it done. Any suggestions or information will be greatly appreciated.
    Message was edited by: Minocq

    One thing to try : instead of using 'process multiple files', can you use the 'export' feature in the Organizer to export the jpegs of that category in psd format into a new folder ?

  • Uploading Multiple files in One-Click!!!

    Hi All,
    I have got nearly about 900 PDF files in my file server which need to be uploaded to the KM CONTENT Repository.
    what is the best methodology to upload all these file in to the repository in <u><b>one click.</b></u>
    Is it possible to achieve this??
    Eagerly waiting for replies.
    Regards,
    Kavitha

    Hi Patric,
    It is quite interesting to see that there is a way to upload multiple files in a click.
    I just followed your way. i copied the WebDAV URL and pasted and executed in a new browser. and i get....
    <i>The folder you are looking for has no displayable content.
    You can try one of the following:
    Access the folder using the Navigation user interface.
    Access the folder as a Web folder. Your operating system and browser dictate whether or not this will work.</i> "
    When i choose "Web Folder", i get a pop up and it says "<i>The web folder address Internet Explorer was given was too long. Please use a shorter address</i>."
    When i choose "Navigation User Interface", iam taken to the default KM Folder.
    I nowhere able to see the folder structure like what you have mentioned in your reply.
    Kindly help me out.
    Regards,
    Kavitha

  • Open Multiple files in One go......

    Hi all,
    I need to open multiple file jpg files present at a particular location in one go. I am developing the application in ADF and i used the following code in for loop
    response[i] = (HttpServletResponse) fctx.getExternalContext().getResponse();
    // file should be downloaded without display
    response.setContentType("application/x-download");
    response[i].setHeader("Content-Disposition", "attachement; filename=\"document "+listFiles[i].substring(0,(listFiles[i].length()-4))+".bmp\"");
    but it opens only one file(the last one of the for loop). Finally i evn tried Runtime.getruntime again in a for loop, still it didnt work.
    I got an option from somewhere sugggesting to use firebox viewer. I browsed for the software, but found thatfirebox can open multiple url's in one go and did'nt get any relevant help regarding firebox viewer.
    Is Firebox viewer a component of firebox???If so how to use it to open multiple jpg files???
    How to integrate this firebox viewer with ADF???
    Any help???
    Regards,
    Amitt

    No, I have idea about FifreFox Brower, its about FireFox viewer, may be a plug in or component of Browser(Even I am not sure whether there is any component like viewer or not???),
    But the key is that ki i want to open a multiple jpg files in one go. Whether using FireFox Viewer or something else it does'nt matter.
    Any suggestion????
    Amitt

  • Download multiple files in one step

    Hi,
    my first try with acrobat.com with uploading some pictures which I like to share with friends led me to the question, how they can download my 18 pictures in one step. I put them in a workspace and gave them access. You can mark all files, but there is no menu point which offers you to download all files in one step.
    Is there a way to do this in one step?
    Greetings
    Mario

    Hello Mario,
    Thank you for posting. Unfortunately, there is currently no way to download multiple files at once; this functionality is high on our list of planned enhancements, so I encourage you to stay tuned for future releases.
    Best regards,
    Rebecca

Maybe you are looking for

  • Game deducted more money from my account, what should I do?

    I paid to ipad game App purchases-''Deluxe Package" of Theme Park,but the last three time are paid out of the wrong,and no payment success,success for the fourth to pay. But I recently received the E-mail Bill and found I have been successfully paid

  • Selection-screen navigation process required immeidately

    Hi all, I am having a program, if i execute that we will have 3 radio butons like basic data, financial data, tax related data of the customers. when i select one of the radio buton and execute one selecion screen 500  will be displayed. selection sc

  • ARD logout without saving

    I'm currently using ARD3.2 and doing some research into logging out users disregarding unsaved work or quit confirmation prompts from applications. I've been trying to do this via applescript, unix, etc. but was wondering if it was possible with ARD.

  • Question on OMF

    DB version : 11.2.0.2 Platform : RHEL 5.4 We use Oracle Managed files for storing datafiles in ASM diskgroups. To add datafiles to a tablespace we usually issue SQL > ALTER TABLESPACE CADL_WM_TBS ADD DATAFILE '+DATA' SIZE 10g AUTOEXTEND Off; Tablespa

  • "Incompatible components" message after reinstallation

    I tried uninstalling and reinstalling the HP Photosmart D110 printer software for my mac, but I keep getting a message about incompatible components: "Some components installed on your computer were developed for another version of HP Utility. These