Urgent error - unable to find certs file

Hi ,
I am new to SSL programming
I have the following code
and getting the error
======================================================
IO Exception java.io.FileNotFoundException: certs (The system cannot find the file specified)
Unable to listen on 443.
java.security.KeyStoreException: Uninitialized keystore
======================================================
          ks = KeyStore.getInstance("jks");               
               try
                    kmf = KeyManagerFactory.getInstance("SunX509");
                    File keyStoreFile=new File("certs");
                    InputStream is = new FileInputStream(keyStoreFile);
                    System.out.println(ks.toString());
                    ks.load(is,KEYSTOREPW);
Please help

Got the solution for this. The program was not identifying the Keystore that was present in "C:\j2sdk1.4.2_07\jre\lib\security". So moved the Keystore to the same location where the .java file was
But I have one question that makes we wonder
====================================================
System.out.println("javax.net.ssl.trustStore = " + trustStore);
======================================================
The output of this statement gives me null.
Please let me know if there is any way to set the path for javax.net.ssl.trustStore as "C:\j2sdk1.4.2_07\jre\lib\security";
Thanks

Similar Messages

  • Win8繁体装lv打包的程序出错fatal error unable to find initialization file

    win8繁体装lv打包的程序出错fatal error unable to find initialization file

    我的labview是2012简体版本,在win7简体系统上开发

  • Unable to find configuration file: jdk.conf

    When i try to use sqldeveloper in lunix show this error
    Unable to find configuration file: jdk.conf
    Working directory is /u02/sqldeveloper/jdev/bin
    Exception in thread "main" java.lang.NoClassDefFoundError: java/lang/StringBuilder
    at oracle.ide.performance.PerformanceHandler.getPropertyObject(PerformanceHandler.java:41)
    at oracle.ide.performance.PerformanceHandler.getFormatter(PerformanceHandler.java:31)
    at oracle.ide.performance.PerformanceHandler.<init>(PerformanceHandler.java:25)
    at oracle.ide.performance.PerformanceLogger.<init>(PerformanceLogger.java:66)
    at oracle.ide.performance.PerformanceLogger.get(PerformanceLogger.java:94)
    at oracle.ideimpl.Main.main(Main.java:21)
    I NEED HELP
    what can i do??

    This error looks like you are not using jdk 1.5+
    -kris

  • Unable to find/read file META-INF/ra.xml

    When using the oc4j_admin_client to deploy an ear to a oas cluster I get this error, but only sometimes. I cannot find anything on the web that explains what might be causing this to occur. I'm guessing it might be with the configuration of OAS but even so I have no idea where to look. If anyone out there can give some advice it would help. Thanks,
    [Summary] There are total 1 instances in the operation.
    [Summary] Operation failed on applicationServerName/instanceName
    [Summary] Operation on cluster FAILED since 1 instanced failed!
    FINE: CoreRemoteMBeanServer.release call release on CoreRemoteMBeanServer: oracle.oc4j.admin.management.mejb.MEjb@5c1ae90c
    FINE: CoreRemoteMBeanServer.release Call remove on MBeanServer EJB
    FINE: CoreRemoteMBeanServer.release Call close on RMI Context: javax.naming.InitialContext@1629ce8c
    SEVERE: J2EEDeploymentManager.deploy Deploy error: Operation failed with error:
    Unable to find/read file META-INF/ra.xml in D:\oracle\u01\oas\10.1.3\j2ee\instanceName\connectors\AppName\AppName archive (IO Error: D:\oracle\u01\oas\10.1.3\j2ee\instanceName\connectors\AppName\AppName (The system cannot find the pat
    h specified))
    oracle.oc4j.admin.deploy.api.J2EEDeploymentException: Operation failed with error:

    Hi forum-hog,
    I think this is due to a known product defect. The patch is available and can be downloaded and installed.
    Please try the following:
    1) Download and apply patch 9073284
    2) Perform the deployment again
    Hope this helps.
    Thanks,
    Cris

  • Getting error can not find xsl file at esb:///esb_projects/...

    Hi,
    I have one esb project 'A' that is invoking another esb 'B' that contains transformation. Routing rules are defined from server deployed service no soap service call. So in esbsvc file it puts xsl url as esb:///esb_projects/....
    When i deploy A and test it, i get error unable to find xsl file in path esb:///esb_projects/...
    I tried to look into this issue, it looks like all files are stored under temp_xxx_localhost directory.
    did any one find solution for it?
    Note: this issue will come only if you have transformation at B service.

    Have you checked the logs in enterprise manager on deployment?
    Can you run esb B independently? Again via the em choose the web service end point to test.
    I have not had a problem with a missing xsl. You can create test cases for xsl transformations within JDeveloper which will enable to test the validity of you transformation. But, it sound like you are already beyond this point.

  • Getting error can not find xsl file esb:///ESB_PROJECTS/...

    Hi,
    I have one esb project 'A' that is invoking another esb 'B' that contains transformation. Routing rules are defined from server deployed service no soap service call. So in esbsvc file it puts xsl url as esb:///esb_projects/....
    When i deploy A and test it, i get error unable to find xsl file in path esb:///esb_projects/...
    I tried to look into this issue, it looks like all files are stored under temp_xxx_localhost directory.
    did any one find solution for it?
    Note: this issue will come only if you have transformation at B service.

    Have you checked the logs in enterprise manager on deployment?
    Can you run esb B independently? Again via the em choose the web service end point to test.
    I have not had a problem with a missing xsl. You can create test cases for xsl transformations within JDeveloper which will enable to test the validity of you transformation. But, it sound like you are already beyond this point.

  • SQLJ: unable to find input file null   (Error while building EJB.jar file)

    Hi,
    I am working on open SQL/SQLJ with the following details
    Name:Employee application(adding an employee to MAXDB through SQLJ connection)
    FRONT-END:JSP/SERVLET
    Middle:Stateless bean with DAO(DB connection) coming from SQLJ
    Back-end:MAXDB
    I have following in abc.sqlj file
    #sql public context Connx with (dataSource = "java:comp/env/jdbc/SAPTSTDB")
    and creating instance and adding to DB in another say xyz.sqlj file
              Connx con = null;
              try{
                   con = new Connx();
                        #sql [con] {insert into TMP_DB1(EMPLOYEE_ID, FIRST_NAME, LAST_NAME, EMAIL)
                        values(:(employeeDTO.getEmployeeId()),
                                 :(employeeDTO.getFirstName()),
                                 :(employeeDTO.getLastName()),
                                 :(employeeDTO.getEmail()))};
    My build has no errors..but while building EJB archive with above sqlj files, am getting following error
    "SQLJ: unable to find input file null" for both sqlj files.
    Anybody faced this kind of issue, pls reply back.
    Thanks
    parveen

    Hi,
    I am working on open SQL/SQLJ with the following details
    Name:Employee application(adding an employee to MAXDB through SQLJ connection)
    FRONT-END:JSP/SERVLET
    Middle:Stateless bean with DAO(DB connection) coming from SQLJ
    Back-end:MAXDB
    I have following in abc.sqlj file
    #sql public context Connx with (dataSource = "java:comp/env/jdbc/SAPTSTDB")
    and creating instance and adding to DB in another say xyz.sqlj file
              Connx con = null;
              try{
                   con = new Connx();
                        #sql [con] {insert into TMP_DB1(EMPLOYEE_ID, FIRST_NAME, LAST_NAME, EMAIL)
                        values(:(employeeDTO.getEmployeeId()),
                                 :(employeeDTO.getFirstName()),
                                 :(employeeDTO.getLastName()),
                                 :(employeeDTO.getEmail()))};
    My build has no errors..but while building EJB archive with above sqlj files, am getting following error
    "SQLJ: unable to find input file null" for both sqlj files.
    Anybody faced this kind of issue, pls reply back.
    Thanks
    parveen

  • Backint failed "ERROR: unable to find file "

    Hello
    I try to backup Oracle database 10.2 with netbackup tools on Redhat 2.6.18-53
    I got errror:
    BR0231E Backup utility call failed
    ERROR: unable to find file /oracle/BWP/sapdata4
    Can u help me
    Regards
    Fethi

    This is the backup logfile:
    BR0477I Oracle pfile /oracle/BWP/102_64/dbs/initBWP.ora created from spfile /oracle/BWP/102_64/dbs/spfileBWP.ora
    BR0101I Parameters
    Name                           Value
    oracle_sid                     BWP
    oracle_home                    /oracle/BWP/102_64
    oracle_profile                 /oracle/BWP/102_64/dbs/initBWP.ora
    sapdata_home                   /oracle/BWP
    sap_profile                    /oracle/BWP/102_64/dbs/initBWP_sapdata_offline.sap
    backup_mode                    ALL
    backup_type                    offline
    backup_dev_type                util_file
    util_par_file                  /oracle/BWP/102_64/dbs/initBWP_sapdata_offline.utl
    system_info                    orabwp/orabwp hpbwpdb2 Linux 2.6.18-53.1.19.el5 #1 SMP Tue Apr 22 03:01:10 EDT 2008 x86_64
    oracle_info                    BWP 10.2.0.2.0 8192 30 88160883 hpbwpdb2 WE8DEC UTF8
    sap_info                       700 SAPSR3 BWP S1329078236 R3_ORA 0020159289
    make_info                      linuxx86_64 OCI_102 Feb  8 2008
    command_line                   brbackup -c force -p initBWP_sapdata_offline.sap
    BR0116I ARCHIVE LOG LIST before backup for database instance BWP
    Parameter                      Value
    Database log mode              No Archive Mode
    Automatic archival             Disabled
    Archive destination            /oracle/BWP/oraarch/BWParch
    Archive format                 %t_%s_%r.dbf
    Oldest online log sequence     27
    Next log sequence to archive   30
    Current log sequence           30               SCN: 88160883
    Database block size            8192             Thread: 1
    Current system change number   88168768         ResetId: 655409152
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize  BlkSize
    PSAPBWP        ONLINE*    ONLINE+   /oracle/BWP/sapdata4/BWM.data1                      17498636288    4       64785  NOLINK  FILE   34359721984    104857600     8192
    PSAPBWP        ONLINE*    ONLINE+   /oracle/BWP/sapdata4/BWM.data2                      16450060288    5       64785  NOLINK  FILE   34359721984    104857600     8192
    PSAPBWP        ONLINE*    ONLINE+   /oracle/BWP/sapdata4/BWM.data3                      15820914688    6       64785  NOLINK  FILE   34359721984    104857600     8192
    PSAPBWP700     ONLINE*    ONLINE+   /oracle/BWP/sapdata2/BWM700.data1                   15128862720   11       64784  NOLINK  FILE   34359721984    104857600     8192
    PSAPBWP700     ONLINE*    ONLINE+   /oracle/BWP/sapdata4/BWM700.data2                    4132511744   12       64785  NOLINK  FILE   34359721984         8192     8192
    PSAPBWPDIM     ONLINE*    ONLINE+   /oracle/BWP/sapdata1/BWMdim.data1                    4202700800    7       64770  NOLINK  FILE   10485760000     20971520     8192
    PSAPBWPFACT    ONLINE*    ONLINE+   /oracle/BWP/sapdata1/BWMfact.data1                   6719283200    8       64770  NOLINK  FILE   34359721984     20971520     8192
    PSAPBWPODS     ONLINE*    ONLINE+   /oracle/BWP/sapdata2/BWMods.data1                   19868426240    9       64784  NOLINK  FILE   34359721984     20971520     8192
    PSAPBWPUSR     ONLINE*    ONLINE+   /oracle/BWP/sapdata1/BWMusr.data1                     239083520   10       64770  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3USR     ONLINE+    ONLINE+   /oracle/BWP/sapdata4/sr3usr_1/sr3usr.data1            134225920   20       64785  NOLINK  FILE   10485760000     20971520     8192
    PSAPTEMP       ONLINE#    ONLINE+   /oracle/BWP/sapdata1/temp_1/temp.data1              10485768192   -1       64770  NOLINK  FILE   34358689792     20971520     8192
    PSAPUNDO       ONLINE-    ONLINE+   /oracle/BWP/sapdata1/undo_1/undo.data1               1073750016    2       64770  NOLINK  FILE   34359721984     20971520     8192
    SYSAUX         ONLINE*    ONLINE+   /oracle/BWP/sapdata1/sysaux_1/sysaux.data1            671096832    3       64770  NOLINK  FILE   10485760000     20971520     8192
    SYSTEM         ONLINE*    SYSTEM+   /oracle/BWP/sapdata1/system_1/system.data1            838868992    1       64770  NOLINK  FILE   10485760000     20971520     8192
    BR0119I Redo log files
    File                                                Size  Group     Device  Status    Link    Type
    /oracle/BWP/origlogA/log_g11m1.dbf              52429312    1        64774  INUSE     NOLINK  FILE
    /oracle/BWP/mirrlogA/log_g11m2.dbf              52429312    1        64776  INUSE     NOLINK  FILE
    /oracle/BWP/origlogB/log_g12m1.dbf              52429312    2        64775  INUSE     NOLINK  FILE
    /oracle/BWP/mirrlogB/log_g12m2.dbf              52429312    2        64777  INUSE     NOLINK  FILE
    /oracle/BWP/origlogA/log_g13m1.dbf              52429312    3        64774  INUSE     NOLINK  FILE
    /oracle/BWP/mirrlogA/log_g13m2.dbf              52429312    3        64776  INUSE     NOLINK  FILE
    /oracle/BWP/origlogB/log_g14m1.dbf              52429312    4        64775  INUSE     NOLINK  FILE
    /oracle/BWP/mirrlogB/log_g14m2.dbf              52429312    4        64777  INUSE     NOLINK  FILE
    BR0120I Control files
    File                                                Size   Id.      Device  Link    Type
    /oracle/BWP/origlogA/cntrl/cntlrBWP.dbf         34979840    0        64774  NOLINK  FILE
    /oracle/BWP/origlogB/cntrl/cntrlBWP.dbf         34979840    0        64775  NOLINK  FILE
    /oracle/BWP/sapdata1/cntrl/cntrlBWP.dbf         34979840    0        64770  NOLINK  FILE
    BR0616I Tablespaces in table TSORA for SAP owner SAPSR3:
    PSAPBWP, PSAPBWP700, PSAPBWPDIM, PSAPBWPFACT, PSAPBWPODS,
    PSAPBWPUSR
    BR0280I BRBACKUP time stamp: 2008-05-23 15.59.26
    BR0057I Backup of database: BWP
    BR0058I BRBACKUP action ID: bdxzgdlt
    BR0059I BRBACKUP function ID: aff
    BR0110I Backup mode: ALL
    BR0077I Database files for backup:
    /oracle/BWP/origlogA/log_g11m1.dbf
    /oracle/BWP/origlogB/log_g12m1.dbf
    /oracle/BWP/origlogA/log_g13m1.dbf
    /oracle/BWP/origlogB/log_g14m1.dbf
    /oracle/BWP/origlogA/cntrl/cntlrBWP.dbf
    BR0061I 19 files found for backup, total size 108250.510 MB
    BR0143I Backup type: offline
    BR0130I Backup device type: util_file
    BR0109I Files will be saved by backup utility
    BR0134I Unattended mode with 'force' active - no operator confirmation allowed
    BR0280I BRBACKUP time stamp: 2008-05-23 15.59.26
    BR0307I Shutting down database instance BWP ...
    BR0280I BRBACKUP time stamp: 2008-05-23 15.59.33
    BR0308I Shutdown of database instance BWP successful
    BR0280I BRBACKUP time stamp: 2008-05-23 15.59.33
    BR0229I Calling backup utility with function 'backup'...
    BR0278I Command output of '/usr/sap/BWP/SYS/exe/run/backint -u BWP -f backup -i /oracle/BWP/sapbackup/.bdxzgdlt.lst -t file -p /oracle/BWP/102_64/dbs/initBWP_sapdata_offline.utl -c':
    WARNING: unknown parameter: print_log_flag 1
    WARNING: sort_backup_type not specified in .utl file
    WARNING: default sort_backup_type to <size> for restore
    Program:                /usr/sap/BWP/SYS/exe/run/backint 5.1
    Input File:             /oracle/BWP/sapbackup/.bdxzgdlt.lst
    Profile:                /oracle/BWP/102_64/dbs/initBWP_sapdata_offline.utl
    Function:               BACKUP
    Backup Type:            BACKUP_FILE
    ERROR: unable to find file /oracle/BWP/sapdata4/BWM.data1
    ERROR: unable to find file /oracle/BWP/sapdata4/BWM.data2
    ERROR: unable to find file /oracle/BWP/sapdata4/BWM.data3
    ERROR: unable to find file /oracle/BWP/sapdata2/BWM700.data1
    ERROR: unable to find file /oracle/BWP/sapdata4/BWM700.data2
    ERROR: unable to find file /oracle/BWP/sapdata1/BWMdim.data1
    ERROR: unable to find file /oracle/BWP/sapdata1/BWMfact.data1
    ERROR: unable to find file /oracle/BWP/sapdata2/BWMods.data1
    ERROR: unable to find file /oracle/BWP/sapdata1/temp_1/temp.data1
    BR0280I BRBACKUP time stamp: 2008-05-23 15.59.33
    BR0279E Return code from '/usr/sap/BWP/SYS/exe/run/backint -u BWP -f backup -i /oracle/BWP/sapbackup/.bdxzgdlt.lst -t file -p /oracle/BWP/102_64/dbs/initBWP_sapdata_offline.utl -c': 2
    BR0232E 0 of 19 files saved by backup utility
    BR0280I BRBACKUP time stamp: 2008-05-23 15.59.33
    BR0231E Backup utility call failed
    BR0280I BRBACKUP time stamp: 2008-05-23 15.59.35
    BR0304I Starting and opening database instance BWP ...
    BR0280I BRBACKUP time stamp: 2008-05-23 15.59.42
    BR0305I Start and open of database instance BWP successful
    BR0056I End of database backup: bdxzgdlt.aff 2008-05-23 15.59.33
    Thank you
    Regards

  • ERROR: Unable to find AL_JobService.pid file in $LINK DIR/bin directory

    Hi,
        We have a recent issue and could not find an appropiate reason, we have been running jobs in the linux server for almost 5 months now and we never had an issue.
                     Today the jobs wouldnt start - a blank trace log so we decided to check the DS job server and found it to be running fine. When i try to stop the job server it shows this error
    Job Service Executable Path                           Status
    /opt/apps/rapidmart/businessobjects/dataservices/bin/AL_JobService      Running
    s: Start Job Service       o: Stop Job Service       q: Quit
    Enter Option: o
    Waiting for Job Service to terminate. This will take several seconds.
    Please Wait!!!
    ERROR: Unable to find AL_JobService.pid file in $LINK_DIR/bin directory.
    Please help
    Thanks
    AJ

    Hi Manoj,
    I have found your reply very helpful. Thanks for this.
    I was also experiencing the same error. While stopping the Job server I have interrupted it by control +c. so I was getting the same error. "ERROR: Unable to find AL_JobService.pid file in $LINK_DIR/bin directory"
    Solution:-
    First I have executed the command you shared to get the PID of AL_JobService
    ps -aef | grep -i al_job
    then I have executed another command to kill all the running instances of AL_Job
    kill -15 <pid of AL_JobService.exe>
    Then used regular command of Job Server utility.
    ./svrcfg
    It worked.

  • Keep getting archive errors.  "ERROR: E_FILE unable to find md file: /Volume....

    We have a Final Cut Server setup where after two weeks assets will automatically be archived to tape. Every so often I am getting error messages that state something similar to the following:
    Job 404117 Archiving 214452_upload.mov needs attention. Please login and troubleshoot.
    The error that occurred was:
    "ERROR: E_FILE Unable to find md file: /Volumes/xsan/MEDIA/devices/video.bundle/3dd/00000000000203dd_md No such file or directory"
    Naturally I will look at the directory path and will not see the file. When I search for that particular asset it will show up as online, but the "original media" is grayed out. Then there will be an exclamation point over the file cabinet (which says the file is online). So the media is missing. When I look at the log of the file, there will also be an email that was sent out to the creator saying that the file was ready for editing.
    Any thoughts are greatly appreciated.
    Eddie

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • ERROR: Unable to open TUXCONFIG file

    Hi,
    I installed and installed the following software successfully on Windows XP
    Oracle WebLogic Server 11gR1 (10.3.1) Microsoft Windows
    PeopleSoft Enterprise PeopleTools 8.50
    PeopleSoft Enterprise Human Resources Management System 9.1 - Revision 2
    Tuxedo 10gR3 for MS Windows Server 2003 w/MS VS 2005 (32-bit x86, AMD64/EM64T x64) 32-bit
    i am at the point of installing the Application Server. Domain created sucessfully but i got boot errors as shown below.
    I searched for the TUXCONFIG file but could not find it in the tuxedo installation folder.
    I read that i have to create the TUXCONFIG,if missing, using tmloadcf.exe and the ubbconfig file, but the only UBBCONFIG file is located in "\samples\atmi\rpcsimp\" folder.
    How do i create the TUXCONFIG file?
    Did i miss something with the installation? What location should this file exist after your tuxedo installation?
    thanks
    K
    BOOT ERRORS:
    PeopleSoft Domain Boot Menu
    Domain Name: hrms
    1) Boot (Serial Boot)
    2) Parallel Boot
    q) Quit
    Command to execute (1-2, q) [q]: 1
    Attempting to boot bulletin board...
    tmadmin - Copyright (c) 2007-2008 Oracle.
    Portions * Copyright 1986-1997 RSA Data Security, Inc.
    All Rights Reserved.
    Distributed under license by Oracle.
    Tuxedo is a registered trademark.
    No bulletin board exists. Entering boot mode.
    115818.SU1491!PSWATCHSRV.5832.6140.-2: LIBTUX_CAT:1519: ERROR: TUXCONFIG value (C:\Documents an
    d Settings\klondon\psft\pt\8.50\appserv\hrms\PSTUXCFG) is longer than the allowed length of 64
    115818.SU1491!PSWATCHSRV.5832.6140.-2: LIBTUX_CAT:588: ERROR: Unable to open TUXCONFIG file
    115818.SU1491!PSWATCHSRV.5832.6140.-2: LIBTUX_CAT:6272: ERROR: Unable to get bulletin board par
    ameters
    115818.SU1491!tmboot.2652.1488.-2: CMDTUX_CAT:825: ERROR: Process PSWATCHSRV at SU1491 failed w
    ith /T tperrno (TPESYSTEM - internal system error)
    115818.SU1491!tmboot.2652.1488.-2: tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; init
    iating user error handler
    115821.SU1491!BBL.2956.4352.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    115825.SU1491!PSADMIN.3088: End boot attempt on domain hrms
    Edited by: user2932595 on Apr 17, 2010 1:17 PM
    Edited by: user2932595 on Apr 17, 2010 1:21 PM

    Hi
    The TUXCONFIG file normally is created automatically when you create your domain.
    In this case I think you ran into trouble because the path of installation is too long!
    Note the error in your log:
    115818.SU1491!PSWATCHSRV.5832.6140.-2: LIBTUX_CAT:1519: ERROR: TUXCONFIG value (C:\Documents and Settings\klondon\psft\pt\8.50\appserv\hrms\PSTUXCFG) is longer than the allowed length of 64
    Your path is 69 chars long!
    I would suggest that you re-try the configuration with a shorter tuxedo and PS_HOME: perhaps in the root directory (c:\PSHOME)
    In the past I've also noticed that installations have problems with paths that have spaces - ex: 'Documents and settings' , so I would avoid that as well.
    Edited by: Alternate on Apr 19, 2010 2:00 AM

  • Error: Unable to read footer file

    Hoping someone out there can help me. I get this error on
    everypage in my site and have no idea how to stop it.
    Error: Unable to read footer file
    The error does not show up when I preview inside dreamweaver
    but only rears its ugly head after I post the site up on the
    internet. I have searched for hours through the Dreamweaver menus
    and can not find these elusive footers and have no idea where they
    are coming from or what footer file it is trying to read.. Please
    help. This probably has a simple solution and I am just not able to
    understand it. Thank you.

    sdrouillard wrote:
    > This probably has a simple solution and I am just not
    able to understand
    > it.
    Possibly, but without a URL we can't comment. Post it, and
    we'll see.
    At a guess, sounds like an include file is missing. Are you
    on some sort of
    free hosting plan where the host puts some adverts in the
    footer? If that
    file is removed from your site directory you might get the
    error you've
    mentioned (at least, that was the case on the only other time
    I've seen this
    error)
    Regards,
    Pete.
    Peter Connolly
    http://www.acutecomputing.co.uk
    Derby
    UK
    Skype ID: acutecomputing

  • [SOLVED] ERROR: Unable to determine the file system type of /dev/root:

    :: Running Hook [udev]
    :: Triggering uevents...done
    Root device '804' doesn't exist.
    Creating root device /dev/root with major 8 and minor 4.
    error: /dev/root: No such device or address
    ERROR: Unable to determine the file system type of /dev/root:
    Either it contains no filesystem, an unknown filesystem,
    or more than one valid file system signature was found.
    Try adding
    rootfstype=your_filesystem_type
    to the kernelcommand line.
    You are now being dropped into an emergency shell.
    /bin/sh: can't access tty; job control turned off
    [ramfs /]# [ 1.376738] Refined TSC clocksource calibration: 3013.000 MHz.
    [ 1.376775] Switching to clocksource tsc
    That's what I get when I boot my Arch system. It worked fine for quite a while, but suddenly it ran into an error where the SCSI driver module was corrupt. I fixed it by reinstalling util-linux-ng and kernel26, however, I run into this issue now. http://www.pastie.org/2163181 < Link to /var/log/pacman.log for the month of July, just in case. Yes, I bought a new ATI/AMD Radeon HD 5450 this Saturday, but it seemed to work fine till this broke and it works fine on Ubuntu too, so I suppose we can rule it out.
    Last edited by SgrA (2011-07-05 20:45:36)

    Autodetection failed on your first image, in both your previous kernel installs:
    [2011-07-04 16:14] find: `/sys/devices': No such file or directory
    Which means that sysfs was not mounted. You should be able to boot from the fallback image, which does not use autodetect. Figure out why /sys isn't mounted, as well, and fix that.
    This is also a somewhat crappy bug in mkinitcpio that lets you create an autodetect image that's useless. It'll be fixed in the next version of mkinitcpio that makes it to core.
    Last edited by falconindy (2011-07-04 17:41:19)

  • Exception in thread "main" java.lang.Error: Unable to find named traits: org.puremvc.as3.multicore.p

    Hi all,
    i try  to  use  pfi with a  project that i did with  air  in flash builder.
    I make my swf with ant  task
        <target name="releasecompile" depends="init">
        <echo>
                  Ant Task :: releaseCompile
        </echo>
            <java jar="${MXMLC.JAR}" fork="true" failonerror="true">
               <arg value="-debug=false"/>
                <arg value="+flexlib=${SDK_HOME}frameworks"/>
                <arg value="+configname=air"/>
                <arg value="-file-specs=${MAIN_SOURCE_FILE}"/>
                <arg value="-output=${build}/${APP_ROOT_FILE}"/>
            <arg value="-external-library-path+=${APP_ROOT}/libs/PureMVC_AS3_MultiCore_1_0_5.swc" />
            </java>
        </target>
    i have a swf in result  and i play  pfi like this
    ./pfi -package -target ipa-ad-hoc -provisioning-profile /Users/stef/Desktop/PROJECT/PROJECT_Config-2.mobileprovision -storetype pkcs12 -keystore /Users/stef/Desktop/PROJECT/Certificats2.p12 -storepass mypass /Users/stef/Desktop/PROJECT/PROJECTConfig.ipa /Users/stef/Documents/Adobe\ Flash\ Builder\ 4/PROJECT/src/PROJECTConfigurateur-app.xml -C /Users/stef/Desktop/PROJECT/ PROJECTConfigurateur.swf  Default.png icons/Icon57.png icons/Icon29.png icons/Icon512.png
    Exception in thread "main" java.lang.Error: Unable to find named traits: org.puremvc.as3.multicore.patterns.facade::Facade
    at adobe.abc.Domain.resolveTypeName(Domain.java:195)
    at adobe.abc.Domain.resolveTypeName(Domain.java:112)
    at adobe.abc.GlobalOptimizer$InputAbc.resolveTypeName(GlobalOptimizer.java:274)
    at adobe.abc.GlobalOptimizer$InputAbc.readInstance(GlobalOptimizer.java:837)
    at adobe.abc.GlobalOptimizer$InputAbc.readAbc(GlobalOptimizer.java:388)
    at adobe.abc.GlobalOptimizer$InputAbc.readAbc(GlobalOptimizer.java:280)
    at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:160)
    at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcode(AOTCompiler.java:329)
    at com.adobe.air.ipa.AOTCompiler.GenerateMacBinary(AOTCompiler.java:600)
    at com.adobe.air.ipa.IPAOutputStream.compileRootSwf(IPAOutputStream.java:196)
    at com.adobe.air.ipa.IPAOutputStream.finalizeSig(IPAOutputStream.java:366)
    at com.adobe.air.ADTPackager.createPackage(ADTPackager.java:65)
    at com.adobe.air.ipa.IPAPackager.createPackage(IPAPackager.java:165)
    at com.adobe.air.ADTEntrypoint.parseArgsAndGo(ADTEntrypoint.java:132)
    at com.adobe.air.ipa.PFI.parseArgsAndGo(PFI.java:152)
    at com.adobe.air.ADTEntrypoint.run(ADTEntrypoint.java:68)
    at com.adobe.air.ipa.PFI.main(PFI.java:112)
    do you have some  ideas about this ?
    Regards
    Stef

    Ok,
        <target name="releasecompile" depends="init">
        <echo>
                  Ant Task :: releaseCompile
        </echo>
            <java jar="${MXMLC.JAR}" fork="true" failonerror="true">
               <arg value="-debug=false"/>
                <arg value="+flexlib=${SDK_HOME}frameworks"/>
                <arg value="+configname=air"/>
                <arg value="-file-specs=${MAIN_SOURCE_FILE}"/>
                <arg value="-output=${build}/${APP_ROOT_FILE}"/>
            <arg value="-external-library-path+=${APP_ROOT}/libs/PureMVC_AS3_MultiCore_1_0_5. swc" />
            </java>
        </target>
    I mistake  this line
      <arg value="-external-library-path+=${APP_ROOT}/libs/PureMVC_AS3_MultiCore_1_0_5. swc" />
    must be
    <arg value="-library-path+=${APP_ROOT}/libs/PureMVC_AS3_MultiCore_1_0_5.swc" />
    for  include the content in the swf.
    Regards
    Stef

  • Unable to find source file

    I had a error message "Unable to Find Source File" when I used JDeveloper debugger.
    The debugger has finished stepping, but it cannot find the source file.
    Unable to find source file for package oracle.e1.bssv....
    Project xxxxxx.jpr has already been searched
    * Look for the file in Project
    * Let me find the file myself with the open file dialog
    * Don't ask me about this file again
    The above 3 options are available
    I checked and found previous posting for use 'Step Over' to bypass this problem. I tried and it did not work either.
    Please let me know if anybody has similar problem and know the solution. Thanks
    JDeveloper 10.1.3.4.0

    You see this dialog because you stepped into a statement which requires source code which is not part of your project (or you don't have). If you have the sources you can browse for them, if you don't have them answer the dialog with the third option.
    You should try 'step out' instead of step over. Once you see this message it's to late to step over the statement (pointing to source you don't have available). You may need to set out a couple of times to get back to code you have sources from.
    Timo

Maybe you are looking for

  • 8230 Flip - want it to make a sound when I open it and close it.

    This is purely a personalization question, but the last clamshell phone I owned was Windows-based and I was able to customize the sounds that it made when I opened it and closed it.  Pretty minor and geeky, but I loved having it make the old school S

  • Docked iPod only outputs sound during video to TV

    I have a 5G iPod in an Apple dock, connected to my TV using a Monster audio cable and an S-Video cable. For some reason, it only outputs sound during videos or a photo slide show - not at all for music only playback. I'm baffled! Any idea why? It's a

  • Which is better API Frame work or WebServices

    Dear All, We are planning to make a design for Open architecture to communicate four of our products which are previously designed independently. So we need to establish an interaction between one product with the other project up on their requiremen

  • Logic crashes when I try to access Preferences

    Logic Express 8 freezes up and crashes when I click on Preferences or Settings. I have tried reinstalling Logic, deleting Logic preferences in the Application Support folder, removing all of my third party audio unit plugins, and removing my rewire f

  • How do I purge my Mac desktop after opening SCAM EMAIL?

    I accidentally opened 2 SCAM EMAILS and now need to purge my iMac.  I need VERY simple, step by step instructions, as I'm definitely not tech savvy.  Apple won't help me unless I pay $20 because even my extended coverage is ended