Basic Binary File Does not Read Unless Placed into Exact Format it originated?

Ok, check this out.  This just does not make any sense to me.  First, you'll need to run it and create the two files.  You're going to get an error at the close.  Now...here's what doesn't make any sense to me.  If you enable the disabled diagram and read that same file, you can look at how the file is being read and the data interpreted.  How is that any different and not causing an error?  I took the U8 and changed it back to its original Boolean Array[8] format and received no error.  Which means the data was read as a U8 at some point.  But...for whatever reason, cannot be read and displayed as a U8.  What's up with that?  What am I not understanding?
Remember, code does exactly what you tell it.
Solved!
Go to Solution.
Attachments:
Binary File Issue.vi ‏23 KB

DailyDose wrote:
Huh....no read and write.  Either read or write.  Gotcha.
Not quite.  It is a matter of where the file pointer is.
The file pointer is what location in the file will be read from or written to, depending on what you do next.  When you write to a file, the file pointer is set to be directly after what you just wrote.  So when you write a new file, the file pointer is at the end of the file.  So when you try to do a read when the file pointer is at the end of the file, an attempt of a read at the end of the file happens.  But there is nothing left for it to read.  Therefore you get an End Of File error.
So if you just added a Set File Position to set the file pointer to the start of the file, you can read your byte with no error.
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
Attachments:
Binary File Issue_BD.png ‏25 KB

Similar Messages

  • App binary file does not correspond to folios in Adobe Viewer

    I created an app in several different language versions, all connected to the same multi-layer/lingual InDesign files. In Adobe Viewer they look and work fine, however Apple just approved the English language binary update and the app is entirely in Spanish. I tried re-exporting the .ipa file from a previous version (one that was already published in English albeit with bugs- hence the update submission)  and this too shows in Spanish. I tried re-saving all InDesign files with the English language layer turned on and exporting a new version, but once again it shows in Spanish. My client is understandibly very upset as the app is time-sensitive and if we have to wait another week for Apple approval we are in big trouble.
    What is going on and how can I fix it?

    Ok, I'll try it, but I don't understand why this happened in the first place. The English app was ready to be exported before the Spanish version had been sent to "create app," and so in my understanding the exported file should have coincided with what I see in the viewer.
    Melanie De Jesus
    Mobile: +39 392 9932197
    SAY DESIGN s.a.s.
    Il giorno 21/lug/2013, alle ore 16:10, Neil Enns - Adobe <[email protected]> ha scritto:
    Re: App binary file does not correspond to folios in Adobe Viewer
    created by Neil Enns - Adobe in Digital Publishing Suite - View the full discussion
    Are you making a Single Edition application? If so simply changing the layer state and redownloading the application isn't enough. You have to go to the Create App menu item again and go through the App Builder wizard for it to pick up the changed files.
    Neil
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5524671#5524671
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5524671#5524671
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5524671#5524671. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Read Measurement file does not read the first channel of my TDMS file

    When I try to read a TDMS file with the Read Measurement File express VI, the first channel of the data is not there.  When I open the file up in excel the channel exists

    Even I have the same doubt  regarding Labview plss help me reading the Excel file from 23rd row and the graph should be drawn between 1st column and 8th column ,  from 23rd row . Here is the sample data.
    Attachments:
    Book1.xlsx ‏204 KB

  • Issue with UTL FILE, does not read directory path

    Hi Guys
    I have created a procedure using a UTL_File, but when I execute that procedure, it comes with an invalid directory path.
    create directory r_bmw as 'C:\BMW';
    grant read, write on directory r_bmw to bmw;
    The above have been created successfully. (r_bmw is the Directory Name. C:\BMW is the directory path.)
    Below is my code:
    create or replace
    PROCEDURE DCA_BMW_OUT
    IS
    -- Declare all variables as reference
    v_out_file UTL_FILE.FILE_TYPE;
    v_row_Count NUMBER;
    r_bmw NUMBER;
    v_out_directory all_directories.directory_path%type;
    v_out_filehandle UTL_FILE.FILE_TYPE := NULL;
    v_out_buffer varchar2 (32767);
    v_records NUMBER;
    body_output varchar2(32759 BYTE);
    dictionary_guarantorsexist varchar2 (1 Char);
    -- Text required within this part of the procedure
    v_body varchar2(32767 BYTE);
    v_header VARCHAR2(32759 BYTE);
    BEGIN
    --- Directories have been created
    FOR r_bmw IN
    ( SELECT *
    FROM dcaadditionaldata
    WHERE directory_name IS NOT NULL
    ) LOOP
    -- inner loop produces the rows in each file
    -- outer loop identifies each of the dca's you want to generate a file for
    BEGIN
    -- Output file to be added into the directory specified
    v_out_file := utl_file.fopen (r_bmw.directory_name, 'DCAExport_1_' || TRIM(TO_CHAR(SYSDATE,'DDMMYYYY_HH24MISS')) || '.txt', 'W');
    -- The Header data which will be outputted to the file
    v_header := 'KennzeichenBrgschaftsforderungGesamtforderung|Währung|Übergabedatum|DifferenzierungAnwalts-oderInkassofall|MainMarktpartnernummer|
    MainAnrede|MainTitel|MainName|MainVorname|MainStraße|MainHausnummer|MainPLZ|MainOrt|MainLand|MainGeburtsdatum|MainTelefonnr.Schuldner|G1Marktpartnernummer
    |G1Anrede|G1Titel|G1Name|G1Vorname|G1Straße|G1Hausnummer|G1PLZ|G1Ort|G1Land|G1Geburtsdatum|G1Telefonnr.Schuldner|G2Marktpartnernummer|G2Anrede|G2Titel|
    G2Name|G2Vorname|G2Straße|G2Hausnummer|G2PLZ|G2Ort|G2Land|G2Geburtsdatum|G2Telefonnr.Schuldner|G3Marktpartnernummer|G3Anrede|G3Titel|G3Name|G3Vorname|
    G3Straße|G3Hausnummer|G3PLZ|G3Ort|G3Land|G3Geburtsdatum|G3Telefonnr.Schuldner|G4Marktpartnernummer|G4Anrede|G4Titel|G4Name|G4Vorname|G4Straße|G4Hausnummer|
    G4PLZ|G4Ort|G4Land|G4Geburtsdatum|G4Telefonnr Schuldner|G5Marktpartnernummer|G5Anrede|G5Titel|G5Name|G5Vorname|G5Straße|G5Hausnummer|G5PLZ|G5Ort|G5Land|
    G5Geburtsdatum|G5Telefonnr.Schuldner|Kundennr.|Bestandsnr.|Finanzierungsnr.|KennzeichenFinanzierung/Leasing|Kennzeichenprivat/gewerblich|
    reguläresVertragsende|Laufzeit|Vertragsdatum|Vertragsstatus|Ratenbetrag|Filiale/Gebiet|Finanzierungstyp|BankverbindungKonto|BankverbindungBLZ|
    RSVKennzeichen|Kündigungsdatum|Modell|Fahrgestellnummer|KFZKennzeichen|KFZZulassungsdatum|CoD1Marktpartnernummer|CoD1Anrede|CoD1Titel|CoD1Name|
    CoD1Vorname|CoD1Straße|CoD1Hausnummer|CoD1PLZ|CoD1Ort|CoD1Land|CoD1Geburtsdatum|CoD1Telefonnr.Schuldner|CoD2Marktpartnernummer|CoD2Anrede|CoD2Titel|
    CoD2Name|CoD2Vorname|CoD2Straße|CoD2Hausnummer|CoD2PLZ|CoD2Ort|CoD2Land|CoD2Geburtsdatum|CoD2Telefonnr.Schuldner|CoD3Marktpartnernummer|CoD3Anrede|
    CoD3Titel|CoD3Name|CoD3Vorname|CoD3Straße|CoD3Hausnummer|CoD3PLZ|CoD3Ort|CoD3Land|CoD3Geburtsdatum|CoD3Telefonnr.Schuldner|CoD4Marktpartnernummer|
    CoD4Anrede|CoD4Titel|CoD4Name|CoD4Vorname|CoD4Straße|CoD4Hausnummer|CoD4PLZ|CoD4Ort|CoD4Land|CoD4Geburtsdatum|CoD4Telefonnr.Schuldner|
    CoD5Marktpartnernummer|CoD5Anrede|CoD5Titel|CoD5Name|CoD5Vorname|CoD5Straße|CoD5Hausnummer|CoD5PLZ|CoD5Ort|CoD5Land|CoD5Geburtsdatum|
    CoD5Telefonnr.Schuldner Y|Y|5830,99|EUR|20/08/2009|DCA|4|123456|Herr||Mueller|Rainer|Messigasse|33|84432|Filz|Deutschland|01/07/1957|08912345|234567|Frau|Dr|Mueller|Rita|Messigasse|33|84432|Filz|Deutschland|13/12/1955|08912345|||||||||||||||||||||||||||||||||||||||||||||||||76543|5000234567||Lease|Privat|12/12/2013|60|12/12/2008||250,50|US|Rate|1234567890|32343450|N||BMW 320 i|W34567890PA34567|M-H-3456|09/12/2008||||||||||||||||||||||||
    N|450,80|EUR|20/08/2009|DCA|4|987654|Frau||Meier|Heide|Beinstr.|44|86353|Laus|Deutschland|03/06/1949|08987654|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||87654||8765675585|Loan|Gewerblich|14/03/2012|72|14/03/2006||500,01|DF|Select|976579657|32343450|N||BMW 500 sl|W94567890PA34568|M-H-3457|10/03/2006|34343434|Herr|Dipl|Meier|Rudolf|Heislestr.|69|85433|Maus|Deutschland|28/05/1945|08934567|234567|Frau|Dr|Mueller|Rita|Messigasse|33|84432|Filz|Deutschland|13/12/1955|08912345
    Y|33970,50|EUR|20/08/2009|Lawyer|4|64646464|Frau||Schmidt|Susanne|Hueftgasse|55|89363|Maus|Deutschland|23/08/1933|08934567|34343434|Herr|Dipl|Meier|Rudolf|Heislestr.|69|85433|Maus|Deutschland|28/05/1945|08934567|234567|Frau|Dr|Mueller|Rita|Messigasse|33|84432|Filz|Deutschland|13/12/1955|08912345|||||||||||||||||||||||||||||||||||||98757|5000785675||Lease|Privat|11/11/2009|48|11/11/2005||380,70|GH|Zielrate|234567899|32343450|Y||BMW 380 s|W54567890PA34569|M-H-3458|07/11/2005||||||||||||||||||||||||
    N|10040,20|EUR|20/08/2009|Lawyer|4|4865465|Herr||Schulz|Karl|Nasenweg|77|83354|Schuh|Deutschland|18/01/1965|08972545|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||46789|50004765787||Lease|Privat|16/09/2012|60|16/09/2007||1234,56|OS|ZUS|98765432|32343450|Y||BMW 280 i|W74567890PA34570|M-H-3459|12/09/2007||||||||||||||||||||||||';
    utl_file.PUT_LINE(v_out_file,v_header,TRUE);
    -- Below will output a row of data which satisfy the requirements.
    FOR body_output IN
    ( SELECT
    AccountDetails.CUSTOMERNUMBER, AccountDetails.ACCOUNTNUMBER, CUSTOMERDETAILS.CDTITLE, CUSTOMERDETAILS.CDFIRSTNAME, CUSTOMERDETAILS.CDLASTNAME, AccountDetails.ACCOUNTTYPE,
    AccountDetails.ORIGINALCONTRACTENDDATE, AccountDetails.CONTRACTTERM, AccountDetails.CONTRACTENDDATE, AccountDetails.BRANCHAREA, AccountDetails.PRODUCTTYPE,
    AccountDetails.HOUSEBANKACCOUNT, AccountDetails.CARMODEL, AccountDetails.CARLICENCE, AccountDetails.ARREARSBALANCE, AccountDetails.CODEBTOR, AccountDetails.GUARANTORNUMBER
    FROM AccountDetails
    JOIN CUSTOMERDETAILS ON AccountDetails.CUSTOMERNUMBER = CUSTOMERDETAILS.CUSTOMERS1
    WHERE EXISTS
    ( SELECT *
    FROM Dcaaccountallocation
    JOIN DebtEpisodes ON DebtEpisodes.ACCOUNTID = Dcaaccountallocation.ACCOUNTID
    WHERE Dcaaccountallocation.DCAID = 41
    AND Dcaaccountallocation.status = 3
    AND DebtEpisodes.DCASentDate IS NULL
    AND Dcaaccountallocation.ACCOUNTID = AccountDetails.ACCOUNTNUMBER
    AND DebtEpisodes.DCAORLAWYER = 'DCA'
    LOOP
    UTL_FILE.PUT_LINE (v_out_file,
    body_output.CUSTOMERNUMBER|| '|' || body_output.ACCOUNTNUMBER|| '|' ||body_output.CDTITLE|| '||' ||body_output.CDFIRSTNAME || '|||||' ||
    body_output.CDLASTNAME|| '||||' || body_output.ACCOUNTTYPE|| '|' ||body_output.ORIGINALCONTRACTENDDATE|| '||||' ||body_output.CONTRACTTERM || '|||||' ||
    body_output.CONTRACTENDDATE|| '|' || body_output.BRANCHAREA|| '||' ||body_output.PRODUCTTYPE|| '||' ||
    body_output.HOUSEBANKACCOUNT|| '|||' || body_output.CARMODEL|| '||||' ||body_output.CARLICENCE|| '|' ||
    body_output.ARREARSBALANCE|| '||||' || body_output.CODEBTOR|| '|' ||body_output.GUARANTORnumber);
    END LOOP;
    -- UTL_FILE.fclose (v_out_file);
    -- EXCEPTION
    --WHEN OTHERS THEN
    --UTL_FILE.put_line (v_out_file, 'failed');
    -- If any errors occur when closing the file, then we close the opened file.
    IF utl_file.is_open(v_out_file) THEN
              UTL_FILE.put_line (v_out_file, 'failed');
    UTL_FILE.fclose (v_out_file);
    END IF;
    END;
    UPDATE DebtEpisodes
    SET handoverdate = null
    WHERE DCAORLAWYER = 'DCA'
    AND accountid IN
    ( SELECT accountid
    FROM Dcaaccountallocation
    WHERE Dcaaccountallocation.status = 3
    AND Dcaaccountallocation.dcaid = 41
    END LOOP;
    END DCA_BMW_OUT;
    -- It compiles successfully, but when executes, it provides me with the 'invalid directory path' error message.
    Any help?
    Thanks

    Ram wrote:
    DCAID DIRECTORY_NAME MPNO IN_DIRECTORY_NAME INVESTOR
    4     DCA_PKFO_OUT     51950     DCA_PKFO_IN     (null)
    41     INV_ALTOR_OUT     488742     INV_ALTOR_IN Y
    2     DCA_NIG_OUT     686007     DCA_NIG_IN     (null)
    3     DCA_RAF_OUT     777163     DCA_RAF_IN     (null)
    21     INV_INFOSCORE_OUT 3482400     INV_INFOSCORE_IN     Y
    22     INV_HOIST_OUT     2866813     INV_HOIST_IN     Y
    Above is the output when select * from dca additional data.
    I have edited the r_bmw to varchar (32757 BYTE);
    however, the same errors still appear. Would I need to change the select statement to a different table...and not dca additional data?
    ThanksSo you have created a directory name r_bmw
    create directory r_bmw as 'C:\BMW';
    grant read, write on directory r_bmw to bmw;And your are querying select * from dca additional data, which doesn't return your recently created directory.... So... what to do what to do.... You should query the all_directories with directory_name = 'r_bmw'.

  • Activex (.ocx) file does not install unless installed through Internet Explorer

    Please fix this Adobe... I wasted a lot of time trying to figure out why it was not installing the activex (.ocx) file when I installed it through firefox or chrome. Low and behold if you install it through Internet Explorer than it installs the activex file. Other programs use the activex (.ocx) file.

    It doesn't matter if you download the installers from Firefox, or IE, or whatever browser.
    There are two installers:
    one for IE that installs the ActiveX control
    one for other browsers that installs the plugin
    You can download the offline installers from http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#Ins tall_in_a_firewall_proxy_server_environment

  • All of a sudden my OAM file does not show after placing in Muse

    I made a slight change to my animation and now the OAM file is blank.

    Hi trixie
    Did you update the link to your animation on Muse after you have updated your composition?..Can you please provide some more details with samples, If any?
    Thanks
    Manigandan

  • Invalid path to Apache binary (the file does not exist).

    During a console install of CF 11 on CentOS 6.5, I'm getting this error:
    Invalid path to Apache binary (the file does not exist).
    Apache is installed via RPM.
    Apache: 2.4.3
    OS: CentOS 6.5 64bit
    Please advise.

    I discovered that apache was not properly installed. I try to start the httpd service which failed. Once I fixed that installation and shutdown httpd, the CF install completed successfully.

  • Generally when creating a Word file from either a Mac or Win7 pc and opening it on two different machines (either one first) it always prompts that the file is open and will be opened as read only. However opening a CSS file does not prompt that it is alr

    Generally when creating a Word file from either a Mac or Win7 pc and opening it on two different machines (either one first) it always prompts that the file is open and will be opened as read only.
    However opening a CSS file does not prompt that it is already open on or from any machine which is causing code edits to be lost.
    What we found from out testing:
    - The file can be saved from one user to the server and WILL NOT PROMPT on other machines until the saving machine has the Dreamweaver program closed completely
    - The file can be closed and  Dreamweaver minimised to the launch bar but it still will not register on other machines that it has been changed.
    - Also, until the  Dreamweaver program is closed on the machines, it will continue to open it's saved version of the file. 
    Example Scenario:
    - User 1 opens test.css (which is 2000 lines) and adds some code to the end of the file to bring it up to 2500 lines
    - Meanwhile User 2 opens test.css as well (opens as 2000 lines as User 1’s edits have not yet been saved) and adds in code to bring it to 2300 lines
    - User 1 saves his file and closes it - but  Dreamweaver is still open.
    - User 2 also saves his file and leaves  Dreamweaver  open.
    - The server will report the size and last edit of the file the same as User 2 as he was the last person to save it (and if you open from the Win7 Machine it will show as User 2’s 2300 line version)
    - If User 1 then open's the file again (from either the 'recent' in Dreamweaver OR clicking on the file directly in Finder...which version opens.... The version that User 1 saved! Not the true version on the server, but the version that User 1 edited and saved with 2500 lines in it.
    - Same for User 2, he will open 'his' version with 2300 lines in.
    Other information:
    - Files are opened directly from the server
    - Sometimes the users will save incrementally and re-open
    - Most of the time users will save incrementally and keep the files open
    - The users will never not save incrementally and just save when closing the file once finished
    - The users are usually working on the files all day
    - It is always the bottom lines of code that are lost. It could be a case of the two versions being mixed up and cutting off the newly added lines based on the line count (possibly).
    It is as if Dreamweaver is holding a cache of the version locally and then only properly looking back to the server when it has been completely closed. It is very difficult to see how the server is causing such an impact on these files, there are very few logs which are giving any indication to the root cause of the problems.
    Anyone know if this is a known issue?
    Is there a way that there can be a featured implemented on the server that doesn't allow another user to open a file if it is already open on another machine?
    Thanks

    Your server file handling has nothing, and really nothing to do with Adobe software. If files don't get locked for (over-)writing and/or lose connection to the program opening them, then your server is misconfigured. It's as plain and simple and that. Anything from "known file types"/ file associations not being set correctly, MIME types being botched, crooked user privileges and file permissions, missing Mac server extensions, delayed file writing on the server, generic network timeout issues and what have you. Either way, you have written a longwinded post with no real value since you haven't bothered to provide any proper technical info, most notably about the alleged server. Either way, the only way you can "fix" it is by straightening out your server and network configuration, not some magic switch in Adobe's software.
    Mylenium

  • Error message Indesign:Either the file does not exist, you do not have read access to it, or use the file in another application.

    I've got problem with opening a file in InDesign. The file type is an InDesign Markup Document. The error message is: Either the file does not exist, you do not have read access to it, or use the file in another application. What's wrong?

  • When I click PDF file, the file does not open and  installation software for creative suite automatically begin to start. Even after re-installation of creative suite 5.5, only acrobat reader dose not work and the same phenomena occurs.

    When I click PDF file, the file does not open and  installation software for creative suite automatically begin to start. Even after re-installation of creative suite 5.5, only acrobat reader dose not work and the same phenomena occurs.

    Did you ever install Acrobat? It is not installed automatically with CS, but requires an extra installation step.

  • My adobe reader does not read my pdf files, I think it was screwed up by the other "PDF-READER". I deleted the other "PDF-READER" from my pc, but it still does not work.

    my adobe reader does not read my pdf filI think it was screwed up by the other "PDF-READER". I deleted the other "PDF-READER" from my pc, but it still does not work.

    Hi wellsfar,
    Which version of Adobe Reader you are using?
    Is it showing any error message?
    A screenshot of the error would be more helpful.
    Regards,
    Florence

  • My program does not read raw files from mark III

    My program does not read raw files from mark III

    emac77,
    Support for Canon 5D MIII RAW files was announced in ACR 7.1 (Adobe Camera Raw 7.1).
    The current stable release is ACR 7.2 while ACR 7.3 is still a Release Candidate (Beta).
    Starting ACR 7.2, Adobe stopped supplying a manual download link which was available till 7.1. Adobe Application Manager (AAM) is the only way for you to update to ACR 7.2.
    However, here is a direct download link that AAM connects to for the download that you can use to grab the .zip or .dmg (Mac) file. Download and install. See if you're able to open your files then.
    ACR 7.2 for Windows: http://swupdl.adobe.com/updates/oobe/aam20/win/PhotoshopCameraRaw7-7.0/7.2.82/Setup.zip
    ACR 7.2 for Mac: http://swupdl.adobe.com/updates/oobe/aam20/mac/PhotoshopCameraRaw7-7.0/7.2.82/Setup.dmg
    -ST

  • Camera raw does not read D7100 nef files [was:Ernied]

    Camera raw does not read d7100 nef files. did update...still no success.

    I suspect that the DNG converter will work for you if you use it properly. It isn't your fault, but Adobe has created a kind of a silly interface in the DNG converter. Notice that it is asking you for the folder. When you are browsing for a location within the DNG converter, choose the folder, but don't open the folder. If you do then the DNG converter will tell you there are no images to convert. If you choose the folder then the DNG converter will convert all the files within that folder.

  • Switching to a MAC which does not read media files on Storm

    I recently obtained a MacBook Pro and want to use my Blackberry Storm for music and pictures as I have done with my PC.
    Unfortunately the Mac does not read my media card.  It does recognize the Storm but will not show any music files or photos.
    What to do?

    Did you select tracks that iTunes does not play?
    also says it is for iTunes 4.1 rather than v10
    Actually it states, " iTunes 4.1 or better".
    iTunes 10 is better (more recent) than iTunes 4.1 and it works fine.

  • 10g - File does not exist: .../Apache/Apache/htdocs/dsl/apex/apex_admin

    We are on 10.2.0.3, and created a separate (dedicated) ORACLE_HOME for the App Exp 3.0.1 installation.
    We used the OUI to install the Companion version of Apache (HTTP server 1.3) on our IBM AIX5L machine 9119-595 (64 bit) and we set all appropriate conf files (dads.conf, httpd.conf, don't have a 'marvel' file) to port 3232. Successfully ran the command "EXEC DBMS_XDB.SETHTTPPORT(3232);" in the App Exp repository DB. We restarted Apache (HTTP server).
    The Oracle Apache HTTP web page successfully displays at http://bbbbb.oooo.com:3232/ .
    When trying to start the App Exp Aministrator at "http://bbbbb.oooo.com:3232/dsl/apex/apex_admin" we get "The page cannot be found" (HTTP 404 - File not found, Internet Explorer).
    The Apache error log "/Apache/Apache/logs>view error_log.1205496000" contains the following lines:
    [Fri Mar 14 15:21:31 2008] [error] [client 10.30.24.9] [ecid:  1205526091:10.9.8.244:5546130:0:485,0] File does not exist: /seamnt/prd203
    /u01/oracle/product/10_2_http_server/Apache/Apache/htdocs/dsl/apex/apex_admin
    Here is our dads.conf file contents (password hidden, but does work to login to APEX_PUBLIC_USER via SQL*plus):
    # ============================================================================
    # mod_plsql DAD Configuration File
    Alias /i/ "/u01/oracle/product/10_2_http_server/Apache/Apache/images/"
    AddType text/xml xbl
    AddType text/x-component htc
    <Location /pls/apex>
    Order deny,allow
    PlsqlDocumentPath docs
    AllowOverride None
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlDatabaseConnectString bbbbb.oooo.seagate.com:3232:okdedw1 ServiceNameFormat
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDefaultPage apex
    PlsqlDatabasePassword XXXXXXX
    Allow from all
    </Location>
    All the following conf files seem to contain the suggested references to other conf files:
    httpd.conf
    # Include the Oracle configuration file for custom settings
    include "/seamnt/prd203/u01/oracle/product/10_2_http_server/Apache/Apache/conf/oracle_apache.conf"
    "plsql.conf" 37 lines, 1722 characters
    include /seamnt/prd203/u01/oracle/product/10_2_http_server/Apache/modplsql/conf/dads.conf
    include /seamnt/prd203/u01/oracle/product/10_2_http_server/Apache/modplsql/conf/cache.conf
    "cache.conf" [Read only] 21 lines, 728 characters
    PlsqlCacheDirectory /seamnt/prd203/u01/oracle/product/10_2_http_server/Apache/modplsql/cache
    That directory "dsl" does NOT exist under the "htdocs" directory.
    Any ideas what's wrong ("File does not exist: .../Apache/Apache/htdocs/dsl/apex/apex_admin) ?
    That directory "dsl" does NOT exist under the "htdocs" directory.
    okdev9a#:/u01/oracle/product/10_2_http_server/Apache/Apache/htdocs>ls -la
    total 754
    drwxr-x--- 9 oracle dba 2048 Mar 13 15:04 .
    drwxr-x--- 16 oracle dba 1024 Mar 13 15:16 ..
    -rw-r----- 1 oracle dba 5927 Jan 22 2005 NFIntro.htm.de
    -rw-r----- 1 oracle dba 5864 Apr 26 2005 NFIntro.htm.en
    -rw-r----- 1 oracle dba 6049 Jan 22 2005 NFIntro.htm.es
    -rw-r----- 1 oracle dba 6049 Jan 22 2005 NFIntro.htm.es_ES
    -rw-r----- 1 oracle dba 5962 Jan 22 2005 NFIntro.htm.fr
    -rw-r----- 1 oracle dba 5962 Jan 22 2005 NFIntro.htm.fr_CA
    -rw-r----- 1 oracle dba 5864 Apr 26 2005 NFIntro.htm.htm
    -rw-r----- 1 oracle dba 5989 Jan 22 2005 NFIntro.htm.it
    -rw-r----- 1 oracle dba 5782 Jan 22 2005 NFIntro.htm.ja
    -rw-r----- 1 oracle dba 5902 Jan 22 2005 NFIntro.htm.ko
    -rw-r----- 1 oracle dba 5973 Jan 22 2005 NFIntro.htm.pt_BR
    -rw-r----- 1 oracle dba 5788 Jan 22 2005 NFIntro.htm.zh_CN
    -rw-r----- 1 oracle dba 5806 Jan 22 2005 NFIntro.htm.zh_TW
    -rw-r----- 1 oracle dba 5927 Jan 22 2005 OHSDemos.htm.de
    -rw-r----- 1 oracle dba 6708 Apr 26 2005 OHSDemos.htm.en
    -rw-r----- 1 oracle dba 6049 Jan 22 2005 OHSDemos.htm.es
    -rw-r----- 1 oracle dba 6049 Jan 22 2005 OHSDemos.htm.es_ES
    -rw-r----- 1 oracle dba 5962 Jan 22 2005 OHSDemos.htm.fr
    -rw-r----- 1 oracle dba 5962 Jan 22 2005 OHSDemos.htm.fr_CA
    -rw-r----- 1 oracle dba 6708 Apr 26 2005 OHSDemos.htm.htm
    -rw-r----- 1 oracle dba 5989 Jan 22 2005 OHSDemos.htm.it
    -rw-r----- 1 oracle dba 5822 Jan 22 2005 OHSDemos.htm.ja
    -rw-r----- 1 oracle dba 5902 Jan 22 2005 OHSDemos.htm.ko
    -rw-r----- 1 oracle dba 5973 Jan 22 2005 OHSDemos.htm.pt_BR
    -rw-r----- 1 oracle dba 5788 Jan 22 2005 OHSDemos.htm.zh_CN
    -rw-r----- 1 oracle dba 5806 Jan 22 2005 OHSDemos.htm.zh_TW
    drwxr-x--- 2 oracle dba 1024 Mar 13 14:57 Tab_files
    drwxr-xr-x 2 oracle dba 96 Mar 13 14:59 _pages
    drwxr-x--- 2 oracle dba 96 Mar 13 15:04 dav_public
    drwxr-x--- 2 oracle dba 1024 Mar 13 14:59 error_docs
    -rw-r--r-- 1 oracle dba 15326 Mar 13 15:04 index.html.de
    -rw-r--r-- 1 oracle dba 14643 Mar 13 15:04 index.html.en
    -rw-r--r-- 1 oracle dba 15724 Mar 13 15:04 index.html.es
    -rw-r--r-- 1 oracle dba 15724 Mar 13 15:04 index.html.es_ES
    -rw-r--r-- 1 oracle dba 15481 Mar 13 15:04 index.html.fr
    -rw-r--r-- 1 oracle dba 15481 Mar 13 15:04 index.html.fr_CA
    -rw-r--r-- 1 oracle dba 14643 Mar 13 15:04 index.html.html
    -rw-r--r-- 1 oracle dba 15199 Mar 13 15:04 index.html.it
    -rw-r--r-- 1 oracle dba 18542 Mar 13 15:04 index.html.ja
    -rw-r--r-- 1 oracle dba 17428 Mar 13 15:04 index.html.ko
    -rw-r--r-- 1 oracle dba 15472 Mar 13 15:04 index.html.pt_BR
    -rw-r--r-- 1 oracle dba 16961 Mar 13 15:04 index.html.zh_CN
    -rw-r--r-- 1 oracle dba 17134 Mar 13 15:04 index.html.zh_TW
    drwxr-x--- 2 oracle dba 1024 Mar 13 14:57 ohs_images
    drwxr-x--- 2 oracle dba 1024 Mar 13 14:57 sol
    drwxr-x--- 2 oracle dba 1024 Mar 13 14:57 win
    Any ideas what's wrong ("File does not exist: .../Apache/Apache/htdocs/dsl/apex/apex_admin) ?
    Thanks!!!
    Scott.
    Message was edited by: Scott McMillan
    user625897

    Your dads.conf says
    <Location /pls/apex>
    but you say
    "When trying to start the App Exp Aministrator at "http://okdev9a.okla.com:3232/dsl/apex/apex_admin" "
    Try http://okdev9a.okla.com:3232/pls/apex
    instead of dsl/apex..
    Cheers,
    Vidar

Maybe you are looking for

  • Elements 7 and camera RAW

    I have Elements 7 and a Nikon D90.  I have downloaded photos taken in RAW onto my Mac using iphoto.  My Mac doesn't have Elements on it; that's on our other Windows laptop.  I now want to create a panorama using Elements on the laptop, so I've put th

  • Exact import settings for .mov files via MPEG Streamclip?

    Ok, as I mentioned in this other thread , I'm looking to import some files recorded at an odd resolution into FCE. Resizing my 512x288 files to 720x480 looks like it works, as well as with my 640x480 ones (don't know how it'll ultimately mess with th

  • Where are my attachments in iCAL under iCloud

    I just switched on iCloud and noticed that all my attachments on previous iCAL entries are GONE.  Also, if I add a new entry in iCAL now, I cannot attach a file.  How can I get this back?  I have a lot of files (PDF) that are date sensative that were

  • I am unable to add icloud email to Outlook account help?

    If anyone can help with how to add an icloud email address in outlook it would be appreciated!  I get error messages when I try to do this and can also not sync calendars or contacts on my pc in outlook. Thanks!

  • BAPI to change maintenance plan(IP02)

    Is there any BAPI available to change maintenance plan(IP02).