Redirect if file not exist

Hi,
Testing if a file exists is not working, what do i wrong ?
I use URL redirect from graphical admin (or manually change obj.conf)
Configurations > [configuration name] > Virtual Servers > [virtual server name responding to url redirect] > [Content handling] > URL Redirects > New
- Condition : ! -f $path ( this should check if the file exist ?)
- Target URL: /testsite/test.html ( if not redirect to /testsite/test.html )
- URL Type: Fixed URL
The <virtual>-obj.conf looks like this :
<If !(-f$path)>
NameTrans fn="redirect" url="/testsite/index.html"
</If>
....

For the one who are interested in the solution, I found the problem :
if -f $path .... is never working, because the engine does not know where to find. You have to define the physical path
Solution :
define a "variable" : for example "finddir" who is pointing to (for example) : "/opt/oracle/webserver7/https-xxx/wep-app
now you can use :
if -f $finddir$path
or without defining a variable :
if -f "/opt/oracle/webserver7/https-xxx/wep-app$path"

Similar Messages

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • File not exist in application server

    Dear experts,
                        Can anybody told me that if file not exist into the application server then what will happen to open dataset statement?
    it will show error or what?
    regards,
    sameek.

    Dear Sameek,
    Please check in code if file is exist then proceed next statement otherwise should not proceed with next statement.
    Best Regards
    Arun Jaiswal

  • T-FV-1030 CIN File Not Exists in required Path.

    Dear Gurus,
                      When executing FVU 3.0 I am getting error as T-FV-1030 CIN File Not Exists in required Path. Please guide where I have missed something .

    Dear Gurus,
                      When executing FVU 3.0 I am getting error as T-FV-1030 CIN File Not Exists in required Path. Please guide where I have missed something .

  • How to create a new excel file using Excel Destination when Destination file not exists.

    how to create a new excel file using Excel Destination when Destination file not exists.

    Just need to set an expression for excel connectionstring and set delay validation to true and it will create it on the fly.
    The expression should return the full path with dynamic filename in each case.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • File exist/file not exist

    OK, i create a directory i have read/write permissions on the directory, but still even if the file exists its bringing back the result as if it doesnt i need help with this...
    set serveroutput on
    DECLARE
    fexists    BOOLEAN;
    flen  NUMBER;
    bsize NUMBER;
    BEGIN
    sys.utl_file.fgetattr('TMP_LOCATION', 'test.txt', fexists, flen, bsize);
      IF fexists THEN
        dbms_output.put_line('File Exists');
      ELSE
        dbms_output.put_line('File Does Not Exist');
      END IF;
      dbms_output.put_line('File Length: ' || TO_CHAR(flen));
      dbms_output.put_line('Block Size: ' || TO_CHAR(bsize));
    END fgetattr;
    File Does Not Existmy directory.. CREATE or replace DIRECTORY tmp_location AS 'Server-1\configsheets\completed\pdf approved'

    Good afternoon,
    If you are loooking at a mapped drive, you can only see it if you change how the Oracle services start. You need to have them start with a specific user ID rather than starting as system services. The problem is that the system services cannot see mapped drives.
    So, do this:
    <li>Create a user to be used by Oracle services. Make sure they have the correct rights (I gave mine Server ADMIN so as to have all the access I needed)
    <li>Log into the server and modify the services
    <li>Click the 'Log On' tab and enter the account and password you created for the Oracle Processes
    <li>Reboot the server, allowing the Oracle services to log in with this new ID.
    This should then fix your problem.
    Thanks,
    Don.
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone! :)

  • Trigger alert for file not existing in sender FTP server

    Hi all,
    I have a scenario file to file.In the sender FTP server a file is placed every 3hours.If file is present it will work in the normal file to file procedure.But when no file exists it should trigger an alert.
    Scripts on FTP server is not accepted as a solution.
    Can anyone let me know how this requirement can be achieved.
    Points will be awarded generously.
    regards,
    padma

    Hi
    But when no file exists it should trigger an alert.
    EMAIL can be used : assign an EMAIL ID to the corresponding user in the transaction SU01 and then set up SCOT and you can send emails when the ALERT is triggered.
    Once you have configure Alerts, you will get the Alerts into ALERT INBOX in RWB of the user. To also get the email, the following needs to be done,
    1. In SU01 -- Assign the Email ID for the Recipient of the ALERT.
    2. In , RWB>ALERT INBOX> PERSONALIZATION--> Time Independent Delivery and Email are selected.
    3. Finally, SCOT needs to be set up to send Emails. Check this for the same. You can ask your BASIS team to do this step.
    http://help.sap.com/saphelp_nw04/helpdata/en/23/1edf098ea211d2b47300609419ed29/frameset.htm
    Also, In ALRTCATDEF, go to SETTINGS--> CONFIGURATION. By default, the option selected is INTERNAL PROCESSING. Select the option SMTP FORWARDING AS XML and give the email id. This will enable you to send an email alert whenever an error occurs in XI.
    Also, to test your Alerts, execute the report RSALERTTEST in SE38.
    Also go throuh the following links...
    The specified item was not found.
    The specified item was not found.
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/81023cfa699508e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/d925bf4b8a11d1894c0000e8323c4f/frameset.htm
    Configuring scenario specific E-mail alerts in XI-CCMS: Part 3
    Configuring scenario specific E-mail alerts in XI-CCMS: Part 3
    Configuring scenario specific E-mail alerts in XI-CCMS: Part-2
    Configuring scenario specific E-mail alerts in XI-CCMS: Part-2
    Configuring scenario specific E-mail alerts in XI-CCMS: Part u2013 1
    Configuring scenario specific E-mail alerts in XI-CCMS: Part  - 1
    Regard's
    Chetan Ahuja

  • Windows 8 Folder Redirection/offline files not working

    I am trying to deploy 4 brand new HP Laptops running windows 8 Professional into a windows 2008 domain however folder redirection is not working
    These users have folder redirection enabled via group policy and this works fine under their old laptops in windows 7
    For windows 8 I see an error in the event log :
    Error 7023 - The offline files service terminated with the following error : the system cannot find the path specified
    I also get this error if I manually try to start the offline files service.
    This is happening on all 4 brand new laptops. All latest available updates installed.

    I am trying to deploy 4 brand new HP Laptops running windows 8 Professional into a windows 2008 domain however folder redirection is not working
    These users have folder redirection enabled via group policy and this works fine under their old laptops in windows 7
    For windows 8 I see an error in the event log :
    Error 7023 - The offline files service terminated with the following error : the system cannot find the path specified
    I also get this error if I manually try to start the offline files service.
    This is happening on all 4 brand new laptops. All latest available updates
    installed.
    The error as you have already observed is a critical error  blocking the service from running. So that must be about the computer software configuration.
    You claim brand new, latest updates etc. - however to use i.e. folder redirection, gpo's etc. you're modifying the software configuraton. I.e. not quite brand new or unchanged (except for those may be important changes, guess those machines are indeed brand
    new or just bought ... however still in change as any other software managed machines)
    For some reason could be corruption of system configuration, but how? Unlike coincidence of 3 of 4 computers failing to start that services? I.e. have you done any changes to offline files etc, scripts or some stuff with gpo's.
    Try exploring the Windows log and take a look at the detail for the error events.
    Use process monitor from Microsoft to trace what happens when you try to start the Windows service ...
    Just tips for determining the bug ...
    Out-of-the-box this should not happen ... for folder redirection and offline files ... it's actually the Windows client going to get those files ... so take a look at the client and try to trace the bug.
    My best guess is something is changed on the client - and your customized system or software is doing it. Or something wrong with the configuration. I.e. if you have relocated the CSC cache ...
    In my experience the best way to debug this problem is to use Process Monitor ... and i.e. come up with a fix based on the observations i.e. if you have relocated the csc cache to some place where it is actually not available or incorrectly configured
    (i.e. take a look at the Result column and looked for failed operations in context with CSC cache operations)
    If you don't know how to do this - don't relocate the CSC cache ... (i.e. if you did this to conserve space on i.e. your SDD's with i.e. smaller capacity than legacy-HD). The real problem is the Folder Redirection Client on the Window Client going to
    pin the entire folder hierarchy of the users workspace, i.e. documents. Either move files out of that area or use group policy to disable pining entire user "storage area". Microsoft should make the Folder Redirection Client more flexiable, i.e. add option
    to exclude part of folder hierarchy. But you can do this by using gpo to disable folder redirection auto-cache of all files - and then instead have users explicitly pin their mobile folders. However for some folders like favorites, desktop and so on you can
    actually use batch and wmic to set pin of some folders containing usually less data using a startup script and gpo. That Works ... and simulates i.e. excluding the stored data in user libraries like documents, videos, music ...
    ... anyway added this based on a "suspension" on what you are really trying to obtain ... but the solution is not to move the CSC cache to aqquire more space, i.e. a user can put 1 TB in their videos ... the solution is to program the Folder Redirection
    Client differently ... untill Microsoft add that functionality.

  • Detection method - file NOT exist?

    I have a need to remove the Outlook feature from Office 2013 if it is present on certain machines. I create my MSP to remove Outlook and run msiexec /p removeoutlook.msp and it works great.
    My problem is that the detection method for applications is the opposite of what I need. If the Outlook.exe file is NOT present, then it is installed.
    I'm sure there must be a way to do this via the custom detection script but I am a scripting noob.

    You can create a 'dummy' application "Outlook 2013", configure it as follows:
    Leave install command blank
    Configure uninstall command to use your detection method (outlook.exe exists)
    Deploy the Uninstall to the collection where you want to remove the outlook
    Or you could use simple package/program to just remove the outlook by running your uninstallation command. Or you could configure your Office 2013 with OCT (Office Customization Tool by running setup.exe /admin) to remove Outlook from your Office 2013 installation
    for future deployments.

  • Can let *.ini file not exist ?

    I have buit an EXE application, multiple, there are an *.ini file, as I deleted it, but it will be created new one automatically, though it is empty, can I let my EXE lonely ? I don't like that INI file, any setting can reach ?
    thanks in advance.

    I don't know, maybe some option in the ini file.
    Anyway, why do you want to get rid of this file? It will not harm your application.
    It can also be useful in some cases. For example, if you create in the ini file a section like this one:
    [name_of_your_exe_without_.exe]
    HideRootWindow=True
    you will get only one window in the task bar (under Windows).
    This double window hurted my esthetical feeling more than a useless file.
    Paolo
    Paolo
    LV 7.0, 7.1, 8.0.1, 2011

  • "Build.xml file not exist"

    Hey Guys,
    i am currently involving in a servelet project (RendreX). i want to install apachi ant as a prerequirement. i am using windows 2003 server. I already downloded latest ant version and apache tomcat4.0. Also i have set all the class path,ANT-HOME(C:\ANT) and other relevent paths. But when i run ant command in the command prompt(C:\ANT>ant)will generate error state that "build.xml" file can't be found. Have i done any wrong thing here? Can anybody give a way that i can easily install apache ant on winows.
    It would be greatly appriciated if u can send me some advice to over come this problem.
    Best Regards
    Mohan

    build.xml is the default build file assumed by ant. You have to provide a build file to control what you expect from ant to do.

  • File does not exist: ucm cluster...

    Hi all,
    I've a 10gR3 UCM cluster with 2 nodes. I've replicated a new web site project.
    The request to node 1, works fine, but the node 2 gives an error. I've seen the apache logs at node 2 and get the next error:
    [Fri May 18 09:10:04 2012] [error] [client 134.134.20.64] File does not exist: /usr/local/apache2/htdocs/<name of the website project>
    It seems that the apache (at node 2) doesn't redirect to ucm and it's looking for the web site at local (apache document root).
    This cluster has serveral web sites project working fine...but with this new web site project doesn`t work...
    Any advices will be appreciated.
    Thanks in advanced

    do you see ucm related entries in your httpd.conf? are their any other .conf files being imported? perhaps in the /conf or /conf.d directory?
    I'm thinking that you are missing a <Location /siteroot> or the <Location /> element on the broken server. I can't recall the 10g config off-hand, but there are some http server related post-configuration steps for site-studio. I'm thinking that they might not be working on the broken server. perhaps a restart of the http server on the broken server?
    it seems that the path is going to the http server's documentroot instead of the ucm module, which it would do if the configs were correct.
    I'd double/triple check those configs & do a restart of the http server.
    -ryan

  • I cannot log into facebook. I get the following message: 404 Error - Not Found The resource you have requested could not be found on the server. There are many possible reasons for this. Either the file does not exist, there is an error in your request,

    I am not able to go to the facebook site. www.facebook.com is not working. I get the following error message. 404 Error - Not Found
    The resource you have requested could not be found on the server. There are many possible reasons for this. Either the file does not exist, there is an error in your request, or the file is not accessible in the requested directory. Please verify that:
    * You have used the proper case; requests ARE case-sensitive!
    * You have entered the URL correctly. (i.e. proper directory/filename)
    * You used the FULL URL. (i.e. proper file type: .html, .gif , .jpg, etc.)
    * You use a tilde (~) before user directories. (i.e. www.furcen.org/~jurann/ )
    * The user/file still exists on this server.
    I also get redirected to "Busca Google" when typing www.facebook.com in the address bar.
    == URL of affected sites ==
    http://facebook.com; buscagoogle.com

    I have the same problem and it does not have to do with firefox. Do you have any idea how to fix it through?

  • Bursting Problem - A file or directory in the path name does not exist

    I'm trying to burst some data via email using the standard DocumentProcessor java code but receiving an error relating, I assume, to an invalid temporary directory. I've checked that the directory exists, as do the data file and control file. By the way I am not running in Apps, just stand alone mode. Any ideas would be much appreciated.
    [042308_104249440][oracle.apps.xdo.batch.bursting.FileHandler][EXCEPTION] java.io.FileNotFoundException: /u02/DIAS/bursting/BIPublisher/tmp/042308_104249338/xdo2.tmp (A file or directory in the path name does not exist.)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:205)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:96)
    at oracle.apps.xdo.template.RTFProcessor.setOutput(Unknown Source)
    at oracle.apps.xdo.batch.bursting.FileHandler.rtf2xsl(Unknown Source)
    at oracle.apps.xdo.batch.bursting.ProcessDocument.getXSLFile(Unknown Source)
    at oracle.apps.xdo.batch.bursting.ProcessDocument.processTemplate(Unknown Source)
    at oracle.apps.xdo.batch.bursting.ProcessCoreDocument.processLayout(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.globalDataEndElement(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingEndElement(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingConfigParser(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.batch.DocumentProcessor.process(Unknown Source)
    at PIreportburst.bEngine(PIreportburst.java:24)
    at PIreportburst.main(PIreportburst.java:51)
    -Below is the java code I'm using
    public void bEngine(String ctrlFile, String dataFile, String tmpDir) {
    try {
    DocumentProcessor dp = new DocumentProcessor(ctrlFile,dataFile,tmpDir);
    dp.process();
    catch (Exception e) {
    System.out.println(e);
    }

    Thanks Ike
    Where do you suggest setting the temp directory:
    DocumentProcessor("control.xml","data.xml","/u02/DIAS/bursting/BIPublisher/tmp/042308_104249338/xdo2.tmp")
    or in the xdo.cfg:
    <property name="system-temp-dir">/u02/DIAS/bursting/BIPublisher/tmp/042308_104249338/xdo2.tmp</property>
    ..and thanks for the link to the BIPublisherIDE
    Cheers, Mike

  • File does not exist: /oa_servlets/AppsLogin-Urgent plz

    Hi;
    I have r11.5.9 on AIX 5.2 i create one new AIX 5.3 server give same IP and copy all folder from 5.2 to 5.3 wiht exact path.
    With same user i can open db+lsnr+apache on new 5.3 server But when i try to login EBS i can see login page also Ebuniess enter link but when i click it it thoruh 404 page can not found
    In apache log file i have File does not exist: /oa_servlets/AppsLogin, i can not find pages under $COMMONTOP on 5.2 and my new 5.3 server. But on 5.2 i canlogin system wihtout any issue
    All services start wihtout problem also db, i run autoconfig on appstier but when i try to run on dbtier it thotugh error:( I am not sure i need to run autoconfig on dbtier for upper erro)
    AutoConfig will consider the custom templates if present.
    Using ORACLE_HOME location : /xxx/xxdb/9.2.0
    /xxx/xxdb/9.2.0/jdk/bin/jre and /xxx/xxdb/9.2.0/jdk/9.2.0/jdk/bin/java not found Pass option 'java' on command line
    and yes there is no such a file like that. How i can solve those problem
    thanks

    Hussein i cant run autoconfig also preclone on dbtier but apps tier i could run autoconfig and its end wihtout error
    http://xx:8001/OA_HTML/jsp/fnd/aoljtest.jsp http://xxx:8001/pls/TEST2/FND_WEB.PING - too
    http://xx:8001/aplogon.html
    I cant open those too
    Fri Sep 17 19:49:00 2010] [error] [ File does not exist: /oa_servlets/AppsLogin
    [Fri Sep 17 20:00:01 2010] [error] OPM: EW: Fail to start process with mod=JServ and grp=DiscoGroup, it's possible that your configuration file is not correct.
    [Fri Sep 17 20:00:01 2010] [error] OPM: EW: Fail to start process with mod=JServ and grp=OACoreGroup, it's possible that your configuration file is not correct.
    [Fri Sep 17 20:00:01 2010] [error] OPM: EW: Fail to start process with mod=JServ and grp=XmlSvcsGrp, it's possible that your configuration file is not correct.
    [Fri Sep 17 20:14:39 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:14:39 2010] [error] [] File does not exist:
    [Fri Sep 17 20:14:51 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:14:51 2010] [error] [] File does not exist:
    [Fri Sep 17 20:14:55 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:14:55 2010] [error] [] File does not exist:
    [Fri Sep 17 20:15:06 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:15:06 2010] [error] [ File does not exist: /servlets/Hello -
    [Fri Sep 17 20:15:11 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:15:11 2010] [error] [ File does not exist: /servlets/Hello
    [Fri Sep 17 20:15:14 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:15:14 2010] [error] [] File does not exist: /servlets/
    [Fri Sep 17 20:15:50 2010] [error] [] File does not exist: /xxxx/portal/oracle/_servlets/Hello
    [Fri Sep 17 20:15:59 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:15:59 2010] [error File does not exist: /oa_servlets/Hello
    [Fri Sep 17 20:16:15 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:16:15 2010] [error] [] File does not exist:
    [Fri Sep 17 20:18:04 2010] [error] script not found or unable to stat: /xx\xxora/8.0.6/tools/web60/cgi/ifcgi60

Maybe you are looking for