Processing SGML file in XI / PI possible?

Hello all,
we want to process an SGML file through XI / PI. The problem is that the SGML has tags in that are not closed like this:
<aaa attribute="..."...> ... </aaa>
<bbb attribute="...">
<ccc attribute="..."...> ... </ccc>
my first idea was to read this with fileadapter and create a file adapter module in front of processing but i am not really sure that his is working. the own fileadapter module should be able to enhance the SGML with the closing tags. I do not know the algorithm at the moment i have to use...
Are there any other solutions for my problem?
many thanks
alex

Hi Alex
You can process SGML but you need adapter module.
As SGML need not to be strict XML file. You can face tags that does not have end tag or no attribute.
To convert SGML to XML best is to use a DTD to compare with while generating XML due to irregular tags.
Download some free tool which convert SGML to XML and try to generate DTD as well. Write adapter module for the same and then verify against the tool
Thanks
Gaurav

Similar Messages

  • How do I process multiple files and turn them from raw to jpeg

    How do I process multiple files and turn them from raw to jpeg. Ive tried and it seems to go through the files but doesnt seem to process them or store them in the selected folder

    Yes that was the first thing I did. Then I used the process multiple files and selected a new folder to put them in and selected use open files and selected to turn them into jpeg. The images flash on the screen like they are being processed, but the folder never appears in library. Is it possible because there are a couple 16 bit files open that this corrupts the task. Do I need to create the folder first. Will elements not create the folder on its own.
    Thanks Vince

  • Aim to process all files in folders on desktop to run through photoshop and save in multiple locations

    Aim to process all files in folders on desktop to run through photoshop and save in multiple locations
    Part one:-
    Gather information from desktop to get brand names and week numbers from the folders
    Excluding folders on desktop beginning with "2" or "Hot"
    Not sure about the list of folders
    but I have got this bit to work with
    set folderPath to "Hal 9000:Users:matthew:Desktop:DIVA_WK30_PSD" --<<this would be gained from the items on the desktop
    set {oldTID, my text item delimiters} to {my text item delimiters, ":"}
    set folderName to last text item of folderPath
    set my text item delimiters to "_WK"
    set FolderEndName to last text item of folderName
    set brandName to first text item of folderName
    set my text item delimiters to "_PSD"
    set weekNumber to first text item of FolderEndName
    set my text item delimiters to oldTID
    After running this I have enough information to create folders in multiple locations, (i need to know where they are so that photoshop can later save them in those multiple locations
    So I need the following folders created
    Locally
    Hal 9000:Users:matthew:Pictures:2011-2012:"WK" + weekNumber
    Hal 9000:Users:matthew:Pictures:2011-2012:"WK" + weekNumber: brandName
    Hal 9000:Users:matthew:Pictures:2011-2012:"WK" + weekNumber: brandName: brandName + "_WK" + weekNumber + "_LR" --(Set path for Later)PathA
    Hal 9000:Users:matthew:Pictures:2011-2012:"WK" + weekNumber: brandName: brandName + "_WK" + weekNumber + "_HR"--(Set path for Later)PathB
    Network
    Volumes:GEN:Brands:Zoom:Brands - Zoom:Upload Photos:2012:"Week" + weekNumber
    Volumes:GEN:Brands:Zoom:Brands - Zoom:Upload Photos:2012:"Week" + weekNumber:brandName + "_WK" + weekNumber + "_LR"  --(Set path for Later)PathC
    Volumes:GEN:Website_Images --(no need to create folder just set path)PathD
    FTP (Still as a normal Volume) So like another Network
    Volumes:impulse:"Week" + weekNumber
    Volumes:impulse:"Week" + weekNumber:Brand
    Volumes:impulse:"Week" + weekNumber:Brand:brandName + "_WK" + weekNumber + "_LR"  --(Set path for Later)PathE
    Volumes:impulse:"Week" + weekNumber:Brand:brandName + "_WK" + weekNumber + "_HR"  --(Set path for Later)PathF
    I like to think that is end of Part 1
    Part 2
    Take the images  (PSD's) from those folders relevant to the Brand then possibly run more applescript that opens flattens and then saves it in the locations above.
    For example….
    An image in folder DIVA_WK30_PSD will then run an applescript in Photoshop, lets call it DivaProcessImages within this we then save to PathA, PathB, PathC, PathD, PathE, PathF the folder path of C should therefore look like this
    Volumes:GEN:Brands:Zoom:Brands - Zoom:Upload Photos:2012:Week30:DIVA_WK30_LR and of course save the image as original filename.
    Then from the next folder
    An image in folder Free_WK30_PSD will then run an applescript in Photoshop, lets call it FreeProcessImages within this we then save to PathA, PathB, PathC, PathD, PathE, PathF the folder path of C should therefore look like this
    Volumes:GEN:Brands:Zoom:Brands - Zoom:Upload Photos:2012:Week30:Free_WK30_LR and of course save the image as original filename.
    The photoshop applescript i'm hoping will be easier as it should be a clearer step by step process without any if's and but's
    Now for the coffee!!

    Hi,
    MattJayC wrote:
    Now to the other part, where each folder was created (and those that already existed) how do I set them as varibles?
    For example,
    set localBrandFolder_High_Res to my getFolderPath(brandName & "_WK" & weekNumber & "_HR", localBrandFolder)
    This line was used to create more than one folder as it ran though the folders on the desktop. The next part is I will need to reference them to save files to them.
    You can use a records
    Examples
    if you want the path of localBrandFolder_High_Res  of "Diva", if "Diva" is the second folder of the Desktop
    You get the path with this : localBrandFolder_High_Res of record 2 of myRecords
    if you want the path of localWeekFolder  in the first folder of the Desktop
    You get the path with this : localWeekFolder of record 1 of myRecords
    Here is the script
    set myRecords to {}
    set dtF to paragraphs of (do shell script "ls -F ~/Desktop | grep '/' | cut -d'/' -f1")
    repeat with i from 1 to number of items in dtF
        set this_item to item i of dtF
        if this_item does not start with "2_" and this_item does not start with "Hot" then
            try
                set folderPath to this_item
                set {oldTID, my text item delimiters} to {my text item delimiters, ":"}
                set folderName to last text item of folderPath
                set my text item delimiters to "_WK"
                set FolderEndName to last text item of folderName
                set brandName to first text item of folderName
                set my text item delimiters to "_PSD"
                set weekNumber to first text item of FolderEndName
                set my text item delimiters to oldTID
            end try
            try
                set this_local_folder to "Hal 9000:Users:matthew:Pictures:2011-2012"
                set var1 to my getFolderPath("WK" & weekNumber, this_local_folder)
                set var2 to my getFolderPath(brandName, var1)
                set var3 to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", var2)
                set var4 to my getFolderPath(brandName & "_WK" & weekNumber & "_HR", var2)
                --set up names to destination folders and create over Netwrok including an already exisiting folder
                set this_Network_folder to "DCKGEN:Brands:Zoom:Brand - Zoom:Upload Photos:2012:"
                set var5 to my getFolderPath("WK" & weekNumber, this_Network_folder)
                set var6 to my getFolderPath(brandName, var5)
                set var7 to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", var6)
                set website_images to "DCKGEN:Website_Images:"
                --set up names to destination folders and create over Netwrok for FTP collection (based on a mounted drive)
                set this_ftp_folder to "Impulse:"
                set var8 to my getFolderPath("Week" & weekNumber, this_ftp_folder)
                set var9 to my getFolderPath(brandName, var8)
                set var10 to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", var9)
                set var11 to my getFolderPath(brandName & "_WK" & weekNumber & "_HR", var9)
                set end of myRecords to ¬
      {localWeekFolder:var1, localBrandFolder:var2, localBrandFolder_Low_Res:var3, localBrandFolder_High_Res:var4, networkWeekFolder:var5, networkBrandFolder:var6, networkBrandFolder_Low_Res:var7, ftpWeekFolder:var8, ftpBrandFolder:var9, ftpBrandFolder_Low_Res:var10, ftpBrandFolder_High_Res:var11}
            end try
        end if
    end repeat
    localBrandFolder_High_Res of record 2 of myRecords -- get full path of localBrandFolder_High_Res in the second folder of Desktop
    on getFolderPath(tName, folderPath)
        tell application "Finder" to tell folder folderPath
            if not (exists folder tName) then
                return (make new folder at it with properties {name:tName}) as string
            else
                return (folder tName) as string
            end if
        end tell
    end getFolderPath

  • Communication between thread in the same process using file interface.

    Hi,
    I am developing  driver and i need to communicate between two thread.
    >can anyone guide me on implementing communication between two thread in the same process using File Interface. First thread will be driver and second will be application.I need to send IOCTL like commands using File interface ie is WriteFile(),ReadFile()
    from Host process to driver through file-interface(which run's in driver context).Host process should not be blocked for the duration of the driver to process the command.
    >File-interface will run in driver context and it will be responsible to receive command from application and pass it to the driver.
    what are the complexity introduced?
    >Can anyone also give me the link/reference to get more information on this topic?
    >How to replace IOCTL command's for instance baud _rate change command with a file interface for example with IRP.

    Here  is the detailed query:
    Hardware Abstraction Layer will interact with Driver(Both will be running in complete different process) .there is a IOCTL for command and  File interface for read and write.
    My requirement is:
    Both should run in the same process so HAL will run as one thread and driver as another thread in the same process .I don't want HAL to wait for completion of request and also i don't want driver to be blocked .
    We are planning to use a File Interface for communication between Hardware abstraction layer and Driver
    HAL will send the command or read/write operation to a file interface and driver will get the command or read/write request from the File interface
    There is a flexibility to change Hardware Abstraction layer and also the Driver
    Is it possible to use IOCTL between two thread under same process? if not what other options do we have.
    Can we use File interface to  send command (like IOCTL) between two thread?

  • Processing OS Files in an Oracle Directory

    I have an application that gets XML files and stores them in a directory. I'd like to write a PL/SQL program that I can schedule to process all files in the directory. I won't know at run time what the file names are, so I need a way to somehow loop through all files in the directory, do my processing, and exit when I've run out of files.
    I've been reviewing documentation and it doesn't look like fileGetName or fileExists will work for this type of processing, since they either assume a known file name or return the directory name, which I'll need to specify since there are multiple directories used by this process.
    In pseudo-code, here's what I have in mind:
    declare
    cursor all_files is
    select filename from xml_in; --xml_in is my Oracle directory where the files will live.
    eachFile all_files%ROWTYPE;
    begin
    open all_files;
    loop
    fetch all_files into eachFile;
    exit when all_files%NOTFOUND;
    --Do my XML processing here
    end loop;
    close all_files;
    end;
    Is it possible to do this kind of processing on external files? If so, how can I get something that would function like the cursor described above to work?

    The files are unknown to Oracle, I'm using an Oracle directory just as a save point for processing. I've got an external application written that will process the xml (actually, it calls an already-completed PL/SQL stored procedure) but I'd like to have portability between the different OS's.
    Short answer to your question...No.

  • Sub folders and Process multiple files in Photoshop Elements 10

    I am looking to apply the same adjustments to numerous images in numerous sub-folders and overwrite the original images.
    Using the Process Multiple Files options,  I added the main folder (which contains no images) to the Source field, selected the Include All Subfolders tick-box, also selected the Same as Source tick-box (which warns you original files will be overwritten) and then completed the image adjustments I required.   However, after running the process all the adjusted images were saved in the main folder and did not overwrite the originals contained in each sub-folder.  Does anyone know if there is a setting I am missing to replace the images in the sub-folders or is this by design ?

    bossti a écrit:
    hi, so is it possible to keep the same subfolder structure as output location? regards! bostjan
    No...
    I think you are going to run great risks in trying to use batch process like 'process multiple files' or 'export' while relying on subfolder structures.
    - the organizer is much more powerful with its database and keywords management than a folder structure organization,
    - Batch processes are limited in Elements
    - 'Good practice' calls for keeping originals intact.
    What are you wanting to do exactly ? We might be able to suggest alternative workflows.

  • I am trying to restore bookmarks to Version 5 from a backup I made from Version 4.+. I get an error message "Unable to process backup file." What's wrong?

    I made a backup of my bookmarks when I was running Firefox Version 4+ (stored in a "json" file on a thumb drive). My primary hard disk crashed and when I down loaded Firefox on to a new hard drive, I got version 5.0. When I tried to restore the saved bookmarks, I got an error message that says "Unable to process backup file."

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    * http://kb.mozillazine.org/Unable_to_process_the_backup_file_-_Firefox

  • Processing of file in XI

    Hello all,
    I have a file coming in from legacy into XI and is posted into R/3. So the scenario is like File>XI>R/3. I need to process the file in XI and check each record to see if they are completed or incomplete. If they are incomplete then I need to send notifications. Also I need to post in to R/3 all entries of the file which are present in the country  code data maintained in R/3. I.E Post only needed country specific data for those countries set up in R/3.
      Is it possible to store the incoming file data into XI in some kind of an internal table like format and do the validations?? I was thinking of XSLT, but if there was a possiblity that BPM could help?
    Any ideas guys.
    -Teresa

    Hi Teresa,
    If you use a business process, messages are stored in containers. You can do different mappings using the container messages.
    What I normally do is get a message into a BPM. (it will go into a container)
    Create a sync interface to retrieve or check data in R/3, use a transformation block to build the request from the original input message.
    The response of the sync call is stored again in a container.
    Then I use a 2:1 mapping where the input is the original message and the result of the sync call. In the mapping I merge the both messages (or do a check) and send the result back.
    You could add a switch after the mapping to find out if the mapping wend ok or if it failed. (I use an additional error tag to store an error, and the switch only checks if the error tag if filled).
    Kind regards,
    Christiaan Schaake.

  • Processing Multiple Files for more than 100 Receive Location - File Size - 25 MB each file, file type DML

    Hi Everybody
    Please suggest.
    For one of our BizTalk interface, we have around 120 receive locations.  We are just moving (*.dml) files from the source to destination without doing any processing.  
    We receive lots of files in different receive locations and in few cases the file size will be around 25 MB and so while moving these large files, the CPU usage is varying between 10% to 90+% and the time consuming for this single huge file is around
    10 to 20 minutes.  This solution was already in place and was designed by the previous vendor for moving the files to their clients.  Each client has 2 receive locations and they have around 60 clients.  Is there any best solution for implementing
    this with in BizTalk or outside BizTalk? Please suggest.
    I am also looking for how to control the number of files which gets picked from the BizTalk receive location.  For example, If we have say 1000 files in receive location and we want to pick at a time only 50 files only (batch of 50) then is it possible?
    because currently it is picking all the files available in source location, and one of the process is dropping thousands of files in to the source location, so we want to control  the number of files getting picked (or even if we can control to pick the
    number of KBs).  Please guide us on how we can control the number of files.

    Hi Rajeev,
    25 MB per file, 1000 files. Certainly you got to revisit the reason for choosing BizTalk.
    “the time consuming for this single huge file is around 10 to 20 minutes”
     - This is a problem.
    You could consider other file transfer options like XCopy or RobotCopy etc if you want to transfer to another local/shared drive. Or you can consider using SSIS
    which does comes with many adapters to send to destination system depending on their destination transfer protocol.
    But in your case, you have some of the advantages that you get with BizTalk. For your scenario, you have more source systems (more Receive locations), with BizTalk
    it’s always easier to manage these configurations, you can easily enable and disable them when a need arise. You can easily configure tracking; configure host instances based on load etc. So you can consider following design for your requirement. This design
    would suit you well since you’re not processing the message and just pass it through from source to destination:
    Use a custom pipeline component in the Receive Locations which receives the large file.
    Stores the received file into disk and creates a small XML metadata message that contains the information about where the large file is stored.
    The small XML message is then published into the
    message box db
    instead of the large file. Let the metadata file also contain the same context properties as the received file.
    In the send port, use another custom pipeline component that process the metadata xml file, retrieve the location of the disk where the file is stored, access the file and send it to destination.
    Read the following article on this design..
    http://www.codeproject.com/Articles/180333/Transfer-Large-Files-using-BizTalk-Send-Side
    This way you don’t need to publish the whole message into message box DB which would considerably reduce the processing time and utilises host instance to process
    more files. This way you can still get the advantages of BizTalk and still process large files.
    And regarding your question of restricting the Receive location to handles the number of files from receives location. No it’s not possible.
    Regards,
    M.R.Ashwin Prabhu
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Process Multiple Files in PSE 7

    I'm running PSE7.
    I'd like to take a group of images (jpeg's) and do the following to them:
    Run QuickFix on them.
    Save them as a new file with the name based on the original name plus some extra information.
    Resize the jpeg's to a size suitable for the web. Or possibly a little larger.
    It would really be great if:
    I could use a 'tag' to select the images I want to process.
    The tags on the new images are the same as the originals.
    The new files are written into the same folder as the original. Even if multiple folders are needed due to
    the tags bringing in images from multiple folders.
    The new images would become part of a version set or stack along with the originals.
    Well, that's what's I'm interested in doing.
    Any thoughts would be greatly appreciatted!

    The Process Multiple Files command applies settings to a folder of files. If you have a digital camera or a scanner with a document feeder, you can also import and process multiple images. (Your scanner or digital camera may need an acquire plug‑in module that supports actions.)
    When processing files, you can leave all the files open, close and save the changes to the original files, or save modified versions of the files to a new location (leaving the originals unchanged). If you are saving the processed files to a new location, you may want to create a new folder for the processed files before starting the batch.
    Note: The Process Multiple Files command does not work on multiple page files.
    Choose File > Process Multiple Files.
    Choose the files to process from the Process Files From pop‑up menu:
    Folder
    Processes files in a folder you specify. Click Browse to locate and select the folder.
    Import
    Processes images from a digital camera or scanner.
    Opened Files
    Processes all open files.
    Select Include All Subfolders if you want to process files in subdirectories of the specified folder.
    For Destination, click Browse and select a folder location for the processed files.
    If you chose Folder as the destination, specify a file-naming convention and select file compatibility options for the processed files:
    For Rename Files, select elements from the pop‑up menus or enter text into the fields to be combined into the default names for all files. The fields let you change the order and formatting of the components of the filename. You must include at least one field that is unique for every file (for example, filename, serial number, or serial letter) to prevent files from overwriting each other. Starting Serial Number specifies the starting number for any serial number fields. If you select Serial Letter from the pop-up menu, serial letter fields always start with the letter “A” for the first file.
    For Compatibility, choose Windows, Mac OS, and UNIX® to make filenames compatible with the Windows, Mac OS, and UNIX operating systems.
    Under Image Size, select Resize Images if you want each processed file resized to a uniform size. Then type in a width and height for the photos, and choose an option from the Resolution menu. Select Constrain Proportions to keep the width and height proportional.
    To apply an automatic adjustment to the images, select an option from the Quick Fix panel.
    To attach a label to the images, choose an option from the Labels menu, then customize the text, text position, font, size, opacity, and color. (To change the text color, click the color swatch and choose a new color from the Color Picker.)
    Select Log Errors That Result From Processing Files to record each error in a file without stopping the process. If errors are logged to a file, a message appears after processing. To review the error file, open with a text editor after the Batch command has run.
    Click OK to process and save the files.

  • Process Multiple Files in Photoshop Elements 4.0.

    Please Help,
    I have a lot to learn about digital photos and when I retire I will have time. However, I have 4000+ digital photos at 900.0 plus KB (approximate 42.66x32 72ppi) each. Now I discover they take up lots of room (my backup is huge) and need to be resized to properly email.  I figure I will resize them all at the same time. I found process multiple files via the file drop down menu > Process Multiple Files by selecting one photo and opening Standard Edit. I then selected Folder in the process files from drop down menu, found my, large, digital photo folder via the browse button, checked include all subfolders, destination same as source, and quit at image size.
    Am I on the right track? What is a reasonable image size? PSE uses width, hight, and resolution which is confusing when everyone else talks about file size. I found the PSE help information difficult to understand. I want to do this right the first time and would appreciate your suggestions.
    I will change the settings on my Pentax Optio W30 Camera; after I get some help regarding the size issue, so my future photos will be easier to manage.
    Thanks

    Your images are already smaller than expected.  The Pentax Optio W30 is a 7 mega pixel camera, which will produce images of about 3+ MB, when set to highest quality.
    It is recommended to shoot at the highest possible quality, keep those images as "originals" and make copies for other purposes, such as email attachments.
    If you are planning to resize and overwrite your originals, you will cause serious quality deterioration.
    My suggestion is that you 1) set your camera to the highest quality and 2) get an exterior hard drive for storage.
    Juergen

  • How to process a file with out any CSV, Delimitaor, fixed length or Copybok

    Hi Team,
    i need to process below file in OSB and need to send mails to the concerns ids...
    this file will have either 1 mail or multiple mails.
    sample.txt file with 1 mail content
    ======================================
    START
    [email protected]
    [email protected], [email protected],
    END
    Subject : CAL IND Renege #00424523 Hse580 CTH580
    BODY:
    User_ID: LARRY014
    XXX Hse/Customer # : 580/1196310
    X12 Order Number: 580094624
    Customer E-Mail: [email protected]
    Customer E-Mail 2: [email protected]
    Customer Phone : 909312345
    Dear Salesperson,
    mysupply.com Order # : 00424523
    mysupply.com User ID : LARRY014
    Customer CALIFORNIA STEEL IND has entered order 00424523
    through mysupply.com.
    THIS ORDER HAS RENEGED for the following reason(S):
    I. ORDER LEVEL
    NOTE SEGMENTS FOUND IN INPUT - SENTRY
    CDF REQUIRED CUSTOMER - ORDER RENEGED
    II. ITEM/LINE LEVEL
    LINE # ECOM LINE NAED QTY STATUS ALLOW SUBS
    Please resolve the renege and release the order in Sentry
    01 as soon as possible. Thank you.
    EMAIL-END
    ====================================
    Please help me ,how to process this file and send mail to the concern people, as its do not have neither CSV, nor Fixed lengthn or its not Cobol copybook nor its not DTD to convert it.
    Thanks
    Reddy
    Edited by: KiranReddy on Feb 3, 2012 9:52 PM

    you shouldn't need a csv if you want a fixed file you need some thing like
    read:
    <xsd:element name="C1" type="xsd:string" nxsd:style="fixedLength" nxsd:length="1" nxsd:paddedBy=" " nxsd:padStyle="tail" />
    <xsd:element name="C2" type="xsd:string" nxsd:style="fixedLength" nxsd:length="xx" nxsd:paddedBy=" " nxsd:padStyle="tail" />
    write:
    <xsd:element name="C1" type="xsd:string" nxsd:style="fixedLength" nxsd:length="1" nxsd:paddedBy=" " nxsd:padStyle="tail" />
    <xsd:element name="C2" type="xsd:string" nxsd:style="fixedLength" nxsd:length="xx" nxsd:paddedBy=" " nxsd:padStyle="tail" />
    <xsd:element name="C3" type="xsd:string" nxsd:style="fixedLength" nxsd:length="5" nxsd:paddedBy=" " nxsd:padStyle="tail" />xx stands for the length of your line
    hope this makes sense
    cheers
    James

  • Why does Aperture 3,not process RAW files from Leica D-Lux 5 ?

             Hello:
    The purchase of my Leica D-Lux 5 came with LR 3. All raw files can be processed in that Application.However.I also have Aperture 3 and it will not process RAW files from the D-Lux 5.I hope that Apple soon will address this inconvenience.Has anyone els had the same problem?
    Hoping for a solution;Thanks John Basso.  Mac OS X 10.6.7

    I can tell you that it does process them from Panasonic LX5's - I have one. The files are probably very similar with slightly different processing metadata and a different tag. It is possible to change the tag in the RAW file prior to import that "fools" aperture into thinking that the RAW is the same as a camera that is supported. I have done this with other cameras where the RAW files were really the same but the camera was not yet "officially supported" at the time I bought it.
    I kinda remember doing it to the EP-2 or was it the EPL-1? Don't remember but there are plenty of tools that will allow this - google is your friend.
    Just make sure that your install of Ap3/OS X DOES actually have support for the LX5... Might work but I have not tried it.
    RB

  • Suggestion needed for processing Big Files in Oracle B2B

    Hi,
    We are doing a feasibility study for Using Oracle AS Integration B2B over TIBCO. We are presently using TIBCO for our B2B transactions. Now since my client company planning to Implement Fusion Middleware (Oracle ESB and Oracle BPEL), we are also looking at Oracle AS Integration B2B for B2B transactions (On other words we are planning to replace TIBCO by Oracle Integration B2B if possible).
    I am really concern about one thing that is receiving and processing any "BIG FILE" (15 MB of size) from trading partner.
    Present Scenario: One of our trading partner is sending Invoice documents in a single file and that file size can grow upto 15 MB of size. In our existing scenario when we receive such big files from trading partner (through TIBCO Business Connect - BC), Tibco BC works fine for 1 or 2 files but it crashes once it received multiple files of such size. What exactly happening is Whatever Memory that TIBCO BC is consuming to receive one such big file, are not getting released after processing and as a result TIBCO BC throws "OUT OF MEMORY" error after processing some files.
    My questions:
         1. How robust the Oracle AS Integration B2B is, in terms of processing such big files?
         2. Is there any upper limit in terms of size that Oracle AS Integration B2B can handle for receiving and processing data?
         3. What is the average time required to receive and process such big file? (Lets say we are talking about 15MB of size).
         4. Is there any documentation availble that talks about any such big files through Oracle B2B?
    Please let me know if you need more information.
    Thanks in advance.
    Regards,
    --Kaushik                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi Ramesh,
    Thanks for your comment. We will try to do POC ASAP. I will definitely keep in touch with you during this.
    Thanks bunch.
    Regards,
    --Kaushik                                                                                                                                                                                                                                                                                                                               

  • Stop cf server from processing particular files

    Bit of a strange question this.
    I want to stop coldfusion server processing certain .cfm files in the root of my site, i want them to get processed by IIS as plain html. Is this possible? i guess its more of an iis question.

    there are thousands of links pointing to this file, internal and external and it would affect rankings on search engines.
    I do not want cf to process this file as its too slow to run now. i'd rather have a html version served up that was updated every 15 mins.
    the clients server is shared and the cf service seems unreliable.

Maybe you are looking for

  • Bug in Contribute 6.5??

    We have installed Contribute 6.5 and it has been working fine until now. For some reason, the data files within a certain folder have become corrupt and each time you try to edit and then publish a page, the software creates draft copies of all the h

  • Why is my Hard disk capacity so low? Where are the missing gbs?

    I have just purchased a mac book pro intel core duo 2ghz 80gb and have happily been instaling and setting up to suit all my needs. It is currently showing that I only have 45.3gb of drive space left and that 28.91 gb has been used up already. I know

  • Scrolling down and using links to anchors aren't in sync

    This video shows a site I'm creating.  I start in design mode.  Then I click to preview.  As I Scroll down and the page stops too soon.  When I use the links to anchors it goes all the way down.  How can I get the page to work the same when scrolling

  • Office 2007 trial...

    Hello,         I just ordered a T61p last night with an estimated ship dater of 7/3/08.  Can't wait! I currently have Office 2007 Professional installed on my Inspiron 9100.  I will reformat my old I9100 and sell it. My question is... Will I need to

  • Volume changes on it's own

    I have a 20gb iPod that is about 2 years old. When I play my iPod using the iTrip in my office or car and even on ear phones, the volume goes way down on it's own. I do not have a cell phone near the iPod, and I'm not touching the volume wheel and ca