File location problem

Hi,
I am new in JSP and need help in locating the files of the project. I'm using Jdeveloper and context path of the project is "Change%20Request-ViewController-context-root" .I have one image-Apps.jpg ,which I want to use, having path as Change%20Request-ViewController-context-root/img/Apps.jpg
Now problem is, when I check if the Apps.jpg file exist or not through
String s=Change%20Request-ViewController-context-root/img/Apps.jpg;
File image=new File(s);
System.out.println(image.exists()); //returns false;
%>
where as :<img src="<%=s%>"> shows the image.
How can we check the existence of the file ?

hsperhar wrote:
Thanks for the same,it gave the direction and solved the problem. I used the following code and now it is picking up the image:
String s=application.getRealPath("/")+"img\\"+app_id+".jpg"; //path of img is contextPath/img/Apps.jpg
java.io.File app_file=new java.io.File(app_iconid);You can also just doString path = application.getRealPath("/img/" + app_id + ".jpg");
But, is it going to work fine when I upload the website and it would start taking the path as like www.hostname:port/contextpath ?The getRealPath() is independent from that. There it is for. That's why I suggested to use it.

Similar Messages

  • XI2 scheduling to file location problem

    source file error. CrystalEnterprise.DiskUnmanaged: The system cannot find the path specified.
    I receive the above error when scheduling to put a file in a file location.
    I have used the format
    servername\directory\subdirectory\subdirectory
    and
    servername\directory\subdirectory\subdirectory
    The scheduler appears to change all \ to / - not sure if this is relavent
    Previously I was receiving file cannot be found error and I replaced a space in the path name with %20 and I received the cannot find path specified.

    I am using XI 3.1, so I am not sure whether this is the enhancement compared to XI R2.
    I have used Directory path llike
    //servername/directory/subdirectory/subdirectory
    & it works fine.
    -Raghu

  • File location problems in Lightroom 3.5

    It is 2011 and Adobe has offered us Lightroom, a truly great tool to do most needed changes to photographs, rendering Photoshop to special use for most.
    But at the core of the system is a file handling technology that is long outdated. Importing photos, LR wants to put the pictures in folders for each day, for whatever reason. Yes, sometimes it maskes it easier to find a photo but photo projects often go over several days, making it cumbersome to handle these pictures later in Finder. Well, since it creates those folders itself, you would think it would recognize the same structure when photos are moved. not so. My Mac is starting to fill up, and I thus want all new photos to go to my LaCie disk. Sometimes I miss the info that these photos indeed go to my Mac, thus making me open Finder later on and move them to my Lightroom structure on the LaCie. Opening LR again, there are all those same pictures - not to be found. So, I click on the question mark for one picture and tell it where the picture is. In InDesign, Adobe got this right. If one link has been moved (surprise, people do change their file hierarchy sometimes), adn when I select the very folder this link is in, it finds the file itself within that folder, as well as updating all other files in that same folder. In LR, telling the system something, is not reused elsewhere. A bit unsmart?
    My wish is for LR to up InDesign and make it even easier to locate file hierarchies. That would be one major step forward and save this user a ton of time.

    u can get the current location by
    getServletContext().getRealPath("/");
    this will return to u the current path
    place ur xml file there
    regards
    shanu

  • File location problems in Tomcat5.0.

    I write a Controller servlet to read mappings form an xml file which locates in %TOMCAT_HOMT%/webapps/myweb/web-inf/classes/system/.
    The file is ActionMapping.xml.
    The Controller source is below:
    package system;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.ServletOutputStream;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import java.io.*;
    public class Controller extends HttpServlet {
      String command;
      String action;
      public void init() throws ServletException {
      public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException {
        doPost(request,response);
      public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException {
        ServletOutputStream out = response.getOutputStream();
        File file = new File("ActionMapping.xml");
        out.print(file.exists());
        try {
          out.print("aa");
          DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
          DocumentBuilder documentBuilder = documentBuilderFactory.newDocumentBuilder();
          out.print("bb");
          Document document = documentBuilder.parse(file);  
    out.print("testdfs");
          NodeList mappingNodeList = document.getElementsByTagName("mapping");
          Element mappingNode;
          Element commandNameNode;
          Element mappingClassNode;
          for(int i = 0; i < mappingNodeList.getLength() ; i++) {
            mappingNode = (Element)mappingNodeList.item(i);
            commandNameNode = (Element)mappingNode.getElementsByTagName("command-name").item(0);
            mappingClassNode = (Element)mappingNode.getElementsByTagName("mapping-class").item(0);
            command = commandNameNode.getTextContent();
            action = mappingClassNode.getTextContent();
        catch(Exception e1) {
        out.print(command + "\n");
        out.print(action);
    }I used the "File file = new File("ActionMapping.xml");" to find the file object,
    then i use the file.exists() method to check if the file is exist,(i'm sure the location and the file name are both correct).
    But when i use the ServletOuputStream to print the result whether the file is exist,
    it return "false".
    Why?
    I'm sure the Controller.class and the ActionMapping.xml file is in the same directory.
    Why didn't the file exist?

    u can get the current location by
    getServletContext().getRealPath("/");
    this will return to u the current path
    place ur xml file there
    regards
    shanu

  • Java 7: Problems launching applets with jars on "file://" location

    Hi,
    We are experiencing a problem when updating our client's JRE from Java6 U 21 up to Java7 U 55.
    We have developed an Applet which is composed by several JAR files. Some of those JARs must be stored in local drive, and the JAR with the main Java class is stored on server.
    Let's supose we have a similar scenario like this:
    https://blahblahbah/bar.jar
    https://blahblahbah/test.html
    C:/foo.jar
    The code of test.html:
    <embed
      archive="file:///C:/foo.jar"
      cache_archive="bar.jar"
    />
    This code works fine on Java 6 and Applet is correctly loaded.
    However, with Java 7 a security exception is raised when trying to load JAR files from "file:///" location during Applet launch:
    java.lang.SecurityException: Permission denied: file:/C:/foo.jar
        at sun.plugin2.applet.Applet2Manager._loadJarFiles(Unknown Source)
    We have tried several tests using a java.policy file which grants all possible permisions:
    grant codeBase "file:/C:/foo.jar" {
        permission java.security.AllPermission;
    grant {
      permission java.security.AllPermission;
    We also tried to low Java's security level to "MEDIUM", with no success.
    We finally only managed to run the Applet if we explicity disable the "Next-Generation Plugin" with Internet Explorer 8. However, that's not a suitable solution, and still does not work with Mozilla family browsers.
    Eventhought with Mozilla browsers is still not working.
    Is there any restrictions in Java 7 that prevents to read jars from being loaded from local drive when launching Applets?
    Thanks in advance,

    Thank you baftos.
    I had read the whole message before posting mine. It's not the same problem. I'm able to run the sample signed applet always having the jar in the same location than the HTML page serving the applet via JNLP:
    <jar href="SignedAppletTest.jar" main="true"/>
    However, the security exception raises when trying to read that jar from local drive:
    <jar href="file://C:/SignedAppletTest.jar" main="true"/>
    ExitException[ 3]java.lang.SecurityException: Permission denied: file://C:/SignedAppletTest.jar
        at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
    I have even tried to decompile JNLP2Manager class, without seeing anything useful on that loadJarFiles method
    The only way I managed to avoid the problem is unchecking the New Generation Plugin and running the Applet with IE. Not a suitable solution for me at all..

  • Problems with file locations

    Hi,
    I've done a file location, but I've problems when I register the location with the next root path (This directory is on my local host):
    c:\test\
    All works fine, but when I execute the mapping that contais the file (prueba.dat), I obtain the next error:
    SQL*Loader-500: Unable to open file (c:testprueba.dat)
    SQL*Loader-553: file not found
    SQL*Loader-509: System error: No such file or directory
    SQL*Loader-2026: the load was aborted because SQL Loader cannot continue.
    I have problems with the character "\", because it doesn't appear in the file name (view SQL*Loader-500).
    I'm using Windows XP as local host, Oracle Wareuse Builder installed on a Linux Machine, version 9.2.0.4.0
    Any idea of what could happen?
    Thanks in advance,
    Carlos.

    I am using the client OWB11 through CITRIX (an emulator Xterm - similar to anyone else). In the configuration of my locations, I am not using local directories of my Win, I use only unix directories, such as (/ swpkg/oracle/11g/owb/bin/unix). Now DBAdministrator asked him to verify the existence of these directories.
    We attach the Log generated by OWB.
    MAP_T_ITZ_ACCOUNT_SUPPORT
    Description : Runtime User : OWBHYP Started : 2008-08-22 12:15:25.0
    Name
    Status
    Log
    MAP_T_ITZ_ACCOUNT_SUPPORT
    Error
    RPE-01013: SQL Loader reported error condition, number 1.
    SQL*Loader: Release 11.1.0.6.0 - Production on Fri Aug 22 12:15:26 2008
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Control File: /swpkg/oracle/11g/owb/bin/unix/MAP_T_ITZ_ACCOUNT_SUPPORT.ctl
    Character Set WE8MSWIN1252 specified for all input.
    Data File: /swdata/db/ora_rman/inbound/SWPLAN_ACCOUNT.CSV
    Bad File: /swdata/db/ora_rman/inbound/bad/SWPLAN_ACCOUNT.BAD
    Discard File: /swdata/db/ora_rman/inbound/dis/SWPLAN_ACCOUNT.DIS
    (Allow all discards)
    Number to load: ALL
    Number to skip: 0
    Errors allowed: 50
    Bind array: 200 rows, maximum of 50000 bytes
    Continuation: Concatenate every 1 physical records
    Path used: Conventional
    Table "SWAHY_INTER"."SWA_HY_T_ITZ_ACCOUNT_SUPPORT", loaded from every logical record.
    Insert option in effect for this table: TRUNCATE
    Column Name Position Len Term Encl Datatype
    "PARENT" 1 * ; O(X) CHARACTER
    "CHILD" NEXT * ; O(X) CHARACTER
    "ALIAS" NEXT * ; O(X) CHARACTER
    "DATASTORAGE" NEXT * ; O(X) CHARACTER
    "TWOPASSCALC" NEXT * ; O(X) CHARACTER
    "UDA" NEXT * ; O(X) CHARACTER
    "SMARTLIST" NEXT * ; O(X) CHARACTER
    "DATATYPE" NEXT * ; O(X) CHARACTER
    "ACCOUNTTYPE" NEXT * ; O(X) CHARACTER
    "TIMEBALANCE" NEXT * ; O(X) CHARACTER
    "EXCHANGERATETYPE" NEXT * ; O(X) CHARACTER
    "VARIANCEREPORTING" NEXT * ; O(X) CHARACTER
    "SOURCEPLANTYPE" NEXT * ; O(X) CHARACTER
    "MEMBERVALIDFORPLAN1" NEXT * ; O(X) CHARACTER
    "PLAN1AGGREGATION" NEXT * ; O(X) CHARACTER
    "MEMBERVALIDFORPLAN2" NEXT * ; O(X) CHARACTER
    "PLAN2AGGREGATION" NEXT * ; O(X) CHARACTER
    "MEMBERVALIDFORPLAN3" NEXT * ; O(X) CHARACTER
    "PLAN3AGGREGATION" NEXT * ; O(X) CHARACTER
    value used for ROWS parameter changed from 200 to 10
    SQL*Loader-500: Unable to open file ( /swdata/db/ora_rman/inbound/SWPLAN_ACCOUNT.CSV)
    SQL*Loader-553: file not found
    SQL*Loader-509: System error: No such file or directory
    SQL*Loader-2026: the load was aborted because SQL Loader cannot continue.
    Table "SWAHY_INTER"."SWA_HY_T_ITZ_ACCOUNT_SUPPORT":
    0 Rows successfully loaded.
    0 Rows not loaded due to data errors.
    0 Rows not loaded because all WHEN clauses were failed.
    0 Rows not loaded because all fields were null.
    Space allocated for bind array: 49020 bytes(10 rows)
    Read buffer bytes: 65536
    Total logical records skipped: 0
    Total logical records read: 0
    Total logical records rejected: 0
    Total logical records discarded: 0
    Run began on Fri Aug 22 12:15:26 2008
    Run ended on Fri Aug 22 12:15:26 2008
    Elapsed time was: 00:00:00.08
    CPU time was: 00:00:00.01
    SQL*Loader: Release 11.1.0.6.0 - Production on Fri Aug 22 12:15:26 2008
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    SQL*Loader-500: Unable to open file ( /swdata/db/ora_rman/inbound/SWPLAN_ACCOUNT.CSV)
    SQL*Loader-553: file not found
    SQL*Loader-509: System error: No such file or directory
    SQL*Loader-2026: the load was aborted because SQL Loader cannot continue.
    Message was edited by:
    ignacio.vega

  • Error writing to temporary file location. If this problem persists contact customer support. (-70)

    I've been trying to update/install Creative Cloud applications via Adobe Application Manager and no matter which application I try to install I receive this error: "Error writing to temporary file location. If this problem persists contact customer support. (-70)"
    Prior to this I was having trouble running updates to an application, and it told me I needed "Administrative Privleges" to do so. I have tried everything I can think of with the assistance of the Apple Store. Can anyone at Adobe help me?

    You do not have the permission on the TMP folder for write because of which you are facing the issue.
    Tmp folder is hidden on the Mac hence you have to unhide it first to check the permission and getting it corrected.
    I would recommend you to check the install/update from
    1) New user account
    2) Run the Disk repair utitlity
    if these steps doesn't help then contact support to get the permission corrected.

  • Problems with file location variables and Oracle 9i

    I'm new to Oracle and I'm seeing if I can get Oracle 9i running and do anything useful for me on a Solaris 9 platform.
    The installation of Oracle went OK except step three, creating a starter database. The installation wanted to put it on the same file system as {ORACLE_HOME} although I told the installation that I wanted {ORACLE_BASE} on another file system. So of course there wasn't enough room on the file system to make the starter database.
    I thought I'd be able to correct this after installation. I tried to make a General Purpose Database with Database Configuration Assistant but DBCA in step 5 of 7, File Location Variables still shows {ORACLE_BASE} to be the same as {ORACLE_HOME}, and no way to change that variable on this screen. Don't I want to change { ORACLE_BASE} to a file system that has enough space to make the data base? How do I change this variable? When logged in as the oracle user, I don't see it listed by setenv.
    When I ignored this setting and tried to finish DBCA, it hung.

    I looked for the {ORACLE*} environmental variables in the profile and login files of my oracle user, but didn't find that they were added by my Oracle setup. So I didn't think defining them as environmental variables would persist or overrule the global variables set at dbca run time.
    In the dbca windows, step 5 displays these global variable settings provocatively in a table, as if Oracle wants me to verify and edit them if necessary, but I keep poking at them with right mouse clicks, left mouse clicks, backspace, and delete, but all I can do is turn them blue.
    Currently when I use dbca to try to create a general purpose database, it hangs at 50% done, but not much space is used up on {ORACLE_HOME}. So it doesn't really look like the hang is caused by the disk being full. One of the processes that is hung is jre, so I thought I'd review the Oracle requirements and locations for JRE on my system.

  • Problem: '\' character of file location disappears

    Hi
    I am trying to pass the location of a file on local disk as parameter to a java function... the function accepts 'String' type... but when I do this... the '\' characters in the location disappear.
    For Example: If C:\Documents and Settings\Hllo\Desktop\trials is passed then it appears as C:Documents and SettingsHlloDesktop       rialsI dont understand what is happening... any pointers....?
    How do I overcome this? Please help..

    Ok,
    This is what I am trying to do:
    1. From a web page a user selects a file
    2. On a button click, JavaScript function gets invoked and the file location is stored in a local variable and passed as parameter.
    3. I am using DWR (AJAX), where the server side code 'FileOpener' will accept this string as parameter and tries to open the file.
    So therefore I need something in this server side code to escape the backslash characters from the received argument.... How do I do it?
    At present this is what I am doing and it shows me error:
    BufferedReader read = new BufferedReader(new FileReader(fileLocation));
    while((line = read.readLine()) != null) {
                       str = str + " " + line ;
    read.close();

  • Error while accessing a file located in the server from JSP

              Hi
              I am having problem while accessing the file located in the server from a JSP
              page. I am not getting the RealPath from a JSP page using getRealPath(request.getServletpath()).
              The same code is working if the jsp placd under defaultwebApp directory and not
              working if i create a war and deploy the same.
              I am using weblogic server 7.0 trail version.I am setting the context path also.
              Can any help me in this regard.
              Thank And Regards
              Anand Mohan
              

              Hi
              Thank you.Is there a way to read a file which is existing in the war file.
              Regards
              Anand Mohan
              "Wenjin Zhang" <[email protected]> wrote:
              >
              >In Weblogic, if your files are archived in a WAR, you cannot get an entry
              >as individual
              >file since it is only bytes in a large archive file. So getRealPath will
              >give
              >you null result. If you only want the path, try to use other getXXXPath,
              >getURL,
              >or getURI method. If you want to read the content, use getResource.
              >
              >
              >"Anand" <[email protected]> wrote:
              >>
              >>Hi
              >>I am having problem while accessing the file located in the server from
              >>a JSP
              >>page. I am not getting the RealPath from a JSP page using getRealPath(request.getServletpath()).
              >>
              >>The same code is working if the jsp placd under defaultwebApp directory
              >>and not
              >>working if i create a war and deploy the same.
              >>
              >>I am using weblogic server 7.0 trail version.I am setting the context
              >>path also.
              >>
              >>Can any help me in this regard.
              >>
              >>Thank And Regards
              >>
              >>Anand Mohan
              >
              

  • Only two hard drives - optimal file locations?

    Hi,
    Can anyone tell what would be the optimal file location configuration (regarding perfomance) when there are only two physical hard drives available? One is abviously running the OS (Windows XP), but how to locate raw images, ACR cache and catalog-files for optimal performance (and are there any other file locations to consider from LR point of view)? The search did not provide answer to this question, and with google everything pretty much boils down to having (at least) three physical hard drives or RAID-array, which are not an option for me.
    The workstation can have only two internal drives but allows dedicated controllers for both of them, and I would prefer not to have external drive (only USB2 and FW400 connectors available). Memory is already maxed for the current mother board, and disk activity seems to be next place to optimize. The current performance is "ok", but it would not hurt to squeeze a bit more.
    Running Windows XP and LR 2.3.
    Thanks in advance.

    Thank you for your advice. It has been quite a pain to find out credible setup hints for simple two drive setup.
    This slightly differs from original topic, but...
    Have there been more inprovements within 2.4 code than have been mentioned in release notes (e.g. http://thelightroomlab.com/2009/06/lightroom-24-and-adobe-camera-raw-54-available/)? I have currently no need for additional camera support, and the bugs mentiones as "fixed" have not been a problem for me. I have had some cases with inconsistent plug-in behaviour (and few crashes) with export plug-ins, but I have judged those as problems either with SDK or plug-in itself.

  • How do I change the pre-filled file location when I choose Save As?

    16 September 2013
    Using Windows 7 Home Edition and Firefox 24.0
    I always want Firefox to offer a location when I download stuff. At the moment it fills the Save As file location with a location I never use and it is the same one every time, and I don't know how to stop this from happening. How can I teach Firefox to fill the Save As location with another file location, for example Desktop?
    NB This is absolutely not about setting the default under
    Tools/Options/General/Downloads/Save Files To...
    although everyone automatically assumes it is.
    Background: After using Firefox for a few months on my Windows 7 machine, I then imported old Firefox settings from a VISTA machine.

    You may want to reset the prefs file, it should show the last place you saved a page from.
    * [[Reset Firefox preferences to troubleshoot and fix problems]]

  • I have LR 4 and now I cannot open the software because I get this warning: light room cannot start because it cannot create files in the temp file location.. C:/windows/temp. How do I fix this? I have removed and downloaded LR and even used by disc and st

    I have LR 4 and now I cannot open the software because I get this warning: "light room cannot start because it cannot create files in the temp file location. C:\windows\temp\". I think I need to have LR open in a different place but I have no idea how to do that. Any help is most appreciated.
    Alex

    Jim
    Thank you for your prompt reply. Unfortunately I am not that tech oriented and
    cannot easily find that folder. I did notice when I was booting up the LR software
    that I could accept the site where LR usually is set up or choose a place. I am
    thinking that the standard location for LR software is corrupted and that if I
    chose a different place it would work. I say this because whether I use my
    original disc or download from adobe I get the same warning. I have 100GB of
    memory on the hard drive and I have cleaned the computer with Mcaffee and free
    software. What should I do next? I can't use this software and I doubt LR 5
    would open up with my current problem.
    Alex

  • Changing swap file location on tray-loader iMacs

    This is not a question, but something I discovered that makes my old tray-loader iMac (the oldest iMac models) run Mac OS X much better.
    As you may know, these oldest iMacs have an 8GB size limit on the boot volume. The largest stock drive on these iMacs was 6GB. That means if your upgraded hard drive is larger than 8GB, it must be partition so that the first partition is under 8GB (7.78GB on my iMac), and it must be the boot partition where the OS is installed (whether it's Mac OS X or 9).
    In my case, I have a roomy 120GB hard drive (I believe the useable limit on these iMacs is 128GB). The first partition is just under 8GB, the second partition is the rest of the space, about 104GB. I have used every trick out there to move files (such as the iTunes music folder and most of my user/documents files) off to the second partition, to make free space on the boot partition as large as possible. So I have 3.5GB free on my 8GB boot partition. This is about 40% of the volume's total space so it seems pretty good, until you realize that most recent Macs have much more than the TOTAL 8GB I have, as free space on the boot volume. Mac OS X was just not designed to work well with small boot volumes...
    Mac OS X uses the free space on the boot volume for its virtual memory "swap file." Considering these old iMacs max out at 512MB of RAM, virtual memory is being used quite a bit. But since space on the boot volume is very limited, low RAM and lack of free space can lead to performance issues. Here's what I observed. When I initially started up my iMac, I had about 3.5GB of free space. Over time, as I used more and more apps, that free space would diminish until I had only about 600MB remaining (as reported by a Finder window). At the same time, I noticed performance getting bogged down and more "chugging" sounds coming from the hard-working hard drive.
    I've known about changing location of the swap file, but never tried it until recently. During the Mac OS X boot process, the Mac sets the location of the swap file. By default, the swap file resides on the boot volume (I believe most other Unix-based systems use a dedicated "swap partition" for the swap file). Since most recent Macs have large drives set up as one partition (and there is plenty of free space), and since many users have upgraded their RAM (and virtual memory is not as critical), swap file location is usually not an issue, and there is certainly no need to change the swap file location. However, on my iMac with an 8GB limit on the boot volume and 512MB of RAM, it made a noticeable difference.
    I found one set of procedures on the web that was much better than the others I found for changing the location of the swap file.
    http://www.math.columbia.edu/~bayer/OSX/swapfile/
    On this page, there are two choices for Panther users. I used the one that works for both Panther and Tiger, because it appeared to me to be more straightforward. The author intentionally keeps the instructions somewhat technical to discourage users who are not technically inclined. I don't consider myself to be too "geeky," but I can follow instructions and type a few commands in Terminal.
    After I changed the swap file location to a large mostly empty volume, I noticed much better performance when I have many large apps open at the same time. Performance no longer degrades over time, and the free space on my boot volume remains a constant 3.6GB.
    The reason for this post is to share this information. Some users of these old iMacs may be noticing the same issues I had. This is a possible solution. However, if everything is OK with your set up, there is no reason to change the swap file location. If you try it, be sure to take the usual data backup precautions.
    If anyone else has experience with changing swap file location, please post your comments here.

    Problem has been solved:
    background.setCapability(Background.ALLOW_IMAGE_WRITE);Thanks everybody for reading this :)

  • Multiple File Location in Read operation in File Adapter.

    Hi,
    I am using File Adapter for Read operation. Normally we would make a Logical Directory for reading files at that location. But I have come up with a scenario where we need to read file from 6 different File locations.
    Is there any way that the same BPEL process can read file from 6 different locations.
    OR
    Do I need to make 6 BPEL processes to read file from 6 different locations.
    I am using Oracle SOA 10.1.3.4 and JDeveloper 10.1.3.4.
    Will really appreciate if someone can help in this regard.
    Thanks for the needful.
    Cheers,
    Varun

    Hi Oracler,
    Thanks for your reply.
    As suggested, the BPEL process with six different file adapters for six different directories and put them on each of the six branches of the pick activity. Will there be any performance oriented issues if you use six adapters for polling at 6 different locations??
    Also, the other solution that you have provided from this link Re: Can we have dynamic folder for Polling in BPEL works fine. One of a problem that I encounter while using this solution is that everytime you do any chnages in your BPEL process, the entries from bpel.xml are missing.
    Thanks for the needful.
    Cheers,
    Varun

Maybe you are looking for

  • How can we put technical questions to adobe

    Does adobe provide support (free or paid) for technical queries/problems over email or by any other medium. If so, how can we approach them?

  • PO Release Procedure

    Hi experts! We have created two (2) release codes for PO with no release prerequisites. Details are as follows: E1 - total net order value is less than or equal 1 million E2 - total net order value is greater than or equal to zero However, when E1 is

  • Could not save file-file not found-Fireworks-CS5

    ADOBE ARE YOU KIDDING WITH THIS??? IT'S NOT FIXED??? WHAT THE HELL IS WRONG WITH YOU???

  • Cannot find the @ key in Tecra A10-11M keyboard

    Hello all, I am trying to use @ placed in button where 2 is but i cant find the special function or combination of keys to permit this. Any help will be greatly appreciated. Thank you, John

  • ID can not open this phone

    Hi I have a problem, I bought the phone and usually worked software I forgot shut Find My Phone now which is that the machine displays a message to me that ID can not open this phone please help me