File not found Exception when zipping a file

Hello I seem to have run into a problem when trying to zip a directory.
I get the error:
java.io.FileNotFoundException: C:\Users\dojo\Documents\Programming\compress (Access is denied)
at java.io.FileOutputStream.open(Native Method)
at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
at java.io.FileOutputStream.<init>(FileOutputStream.java:70)
at ZipUtility.zip(ZipUtility.java:31)
at ZipUtility.main(ZipUtility.java:21)
when i run the code
import java.io.File;
import java.io.FileOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
import java.io.*;
public class ZipUtility {
     public ZipOutputStream cpZipOutputStream = null;
     public String strSource = "";          
     public String strTarget = "";          
     public static long  size          = 0;     
     public static int   numOfFiles    = 0;          
     public static void main(String args[]) {
          ZipUtility udZipUtility = new ZipUtility();                    
          udZipUtility.strSource = "C:\\Users\\dojo\\Documents\\Programming\\compress\\restoreDump"; //args[0];          
          udZipUtility.strTarget = "C:\\Users\\dojo\\Documents\\Programming\\compress"; //args[1];          
          udZipUtility.zip();          
     public void zip(){                    
          try          {                              
               File cpFile = new File (strSource);                                             
               if (!cpFile.isFile() && !cpFile.isDirectory() ) {                                   
                    System.out.println("\nSource file/directory Not Found!");                                   
                    return;                         
               FileOutputStream fos = new FileOutputStream(strTarget);               
               cpZipOutputStream = new ZipOutputStream(fos);                         
               cpZipOutputStream.setLevel(9);                         
               zipFiles( cpFile);                         
               cpZipOutputStream.finish();                         
               cpZipOutputStream.close();                         
               System.out.println("\n Finished creating zip file " + strTarget + " from source " + strSource);                         
               System.out.println("\n Total of  " + numOfFiles +" files are Zipped " );               
               System.out.println("\n Total of  " + size  + " bytes are Zipped  ");          
          }     catch (Exception e){                                   
               e.printStackTrace();                    
     public void  zipFiles(File cpFile) {                    
          int byteCount;
          final int DATA_BLOCK_SIZE = 2048;     
          FileInputStream cpFileInputStream;
          if (cpFile.isDirectory()) {                              
               if(cpFile.getName().equalsIgnoreCase(".metadata")){ //if directory name is .metadata, skip it.                         
                    return;               
               File [] fList = cpFile.listFiles() ;                              
               for (int i=0; i< fList.length; i++){                                        
                    zipFiles(fList) ;                              
          else {                              
               try {          
                    if(cpFile.getAbsolutePath().equalsIgnoreCase(strTarget)){
                         return;
                    System.out.println("Zipping "+cpFile);                    
                    size += cpFile.length();                    
                    //String strAbsPath = cpFile.getAbsolutePath();                                        
                    numOfFiles++;                    
                    String strAbsPath = cpFile.getPath();                    
                    String strZipEntryName = strAbsPath.substring(strSource.length()+1, strAbsPath.length());                                        
                    //byte[] b = new byte[ (int)(cpFile.length()) ];
                    cpFileInputStream = new FileInputStream (cpFile) ;                                                                           
                    ZipEntry cpZipEntry = new ZipEntry(strZipEntryName);
                    cpZipOutputStream.putNextEntry(cpZipEntry );
                    byte[] b = new byte[DATA_BLOCK_SIZE];
                    while ( (byteCount = cpFileInputStream.read(b, 0, DATA_BLOCK_SIZE)) != -1)
                         cpZipOutputStream.write(b, 0, byteCount);
                    //cpZipOutputStream.write(b, 0, (int)cpFile.length());
                    cpZipOutputStream.closeEntry() ;
               } catch (Exception e) {                                        
                    e.printStackTrace();                              
I really have no idea why its saying access denied if anyone can help that would be great.

son_goku
Read the stack trace from the bottom up. It's telling you that the error, or exception arose
at ZipUtility.zip(ZipUtility.java:21)
which is udZipUtility.zip();This line called the zip() method which threw an exception
at ZipUtility.main(ZipUtility.java:31)
which is FileOutputStream fos = new FileOutputStream(strTarget);What is the value of strTarget?"C:\\Users\\dojo\\Documents\\Programming\\compress"This is a folder, isn't it?
Read the javadoc for public FileOutputStream(String name)
       throws FileNotFoundException
If the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason then a FileNotFoundException is thrown.
Regards, Darryl

Similar Messages

  • File not found error when opening .JPG files in Photoshop CC

    uninstalled and reinstalled photoshop CC and cannot resolve this issue.
    any time i open a .jpg file in photoshop, I get a "Could not complete your request because the file was not found."
    the file is obviously there, so i'm assuming its missing some sort of plugin, which i thought would be resolved when reinstalling photoshop.
    very frustrated and not sure how to fix this.
    running OSX mavericks
    please help

    used bridge, didn't work.
    tried right-click, double click..open in program.
    same error.
    files work in other adobe products.....
    only way to get a jpg in there is to "paste" it in.

  • Java File not Found Exceptions and other errors?

    Hello experts, an issue on our Portal has caught my attention. Every time the J2EE Engine is restarted, a large amount of errors are written on our Trace files. When looking at the trace files, I see that most errors are Java IO File not Found Exceptions. For example:
    [EXCEPTION]
    #1#java.io.FileNotFoundException: ./log/system/database.1.log (No such file or directory (errno:2))
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.archiveTask(ArchivingThread.java:77)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:40)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5 #0012799E98F6000F0000001800003A9E00044A5F2B9CCDEC#1207672520886#com.sap.engine.services.log_configurator.archive.ArchivingThread##com.sap.engine.services.log_configurator.archive.ArchivingThread######c3cfd920058911dd8ace0012799e98f6#SAPEngine_System_Thread[impl:5]_24##0#0#Error##Java###./log/system/server.1.log (No such file or directory (errno:2))
    [EXCEPTION]
    #1#java.io.FileNotFoundException: ./log/system/server.1.log (No such file or directory (errno:2))
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.archiveTask(ArchivingThread.java:77)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:40)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5 #0012799E98F6000F0000001900003A9E00044A5F2B9CE7BC#1207672520893#com.sap.engine.services.log_configurator.archive.ArchivingThread##com.sap.engine.services.log_configurator.archive.ArchivingThread######c3cfd920058911dd8ace0012799e98f6#SAPEngine_System_Thread[impl:5]_24##0#0#Error##Java###./log/system/security.1.log (No such file or directory (errno:2))
    [EXCEPTION]
    #1#java.io.FileNotFoundException: ./log/system/security.1.log (No such file or directory (errno:2))
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.archiveTask(ArchivingThread.java:77)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:40)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5 #0012799E98F6000F0000001D00003A9E00044A5F2BE5C172#1207672525667#com.sap.engine.services.log_configurator.archive.ArchivingThread##com.sap.engine.services.log_configurator.archive.ArchivingThread######c3cfd920058911dd8ace0012799e98f6#SAPEngine_System_Thread[impl:5]_24##0#0#Error##Java###./log/applications.1.log (No such file or directory (errno:2))
    [EXCEPTION]
    #1#java.io.FileNotFoundException: ./log/applications.1.log (No such file or directory (errno:2))
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.archiveTask(ArchivingThread.java:77)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:40)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    In summary, the system cannot find the files server.1.log, security.1.log, database.1.log and applications.1.log. I tried manually adding these files (I created them on my computer and left them empty) on the path written, but it did not work, for some reason they are deleted.
    Another error that is happening during restart of the engine is the following:
    #1.5 #0012799E98F6001B0000002000003A9E00044A5F2BCC28D7#1207672523990#com.sap.tc.logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]######c3c3f240058911dd9ed80012799e98f6#SAPEngine_System_Thread[impl:5]_10##0#0#Warning##Java###Attempting to change a formatter on active log ./log/system/httpaccess/responses.trc. reset() method must be called first.#1#java.lang.Exception: Attempting to change a formatter on active log ./log/system/httpaccess/responses.trc. reset() method must be called first.
         at com.sap.tc.logging.FileLog.setFormatter(FileLog.java:448)
         at com.sap.engine.services.log_configurator.admin.LogConfigurator.adjustConfiguration(LogConfigurator.java:795)
         at com.sap.engine.services.log_configurator.admin.LogConfigurator.applyConfiguration(LogConfigurator.java:1535)
         at com.sap.engine.services.log_configurator.LogConfiguratorContainer.prepareStart(LogConfiguratorContainer.java:545)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:223)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareLocal(StartTransaction.java:176)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesLocal(ApplicationTransaction.java:365)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:132)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesLocalAndWait(ParallelAdapter.java:250)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationLocalAndWait(DeployServiceImpl.java:4450)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationsInitially(DeployServiceImpl.java:2610)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.clusterElementReady(DeployServiceImpl.java:2464)
         at com.sap.engine.services.deploy.server.ClusterServicesAdapter.containerStarted(ClusterServicesAdapter.java:42)
         at com.sap.engine.core.service630.container.ContainerEventListenerWrapper.processEvent(ContainerEventListenerWrapper.java:144)
         at com.sap.engine.core.service630.container.AdminContainerEventListenerWrapper.processEvent(AdminContainerEventListenerWrapper.java:19)
         at com.sap.engine.core.service630.container.ContainerEventListenerWrapper.run(ContainerEventListenerWrapper.java:102)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    Any ideas?

    Nothing really seemed to work when trying to solve this problem, just suddenly it stopped appearing. It might have been our installation of SPS 15, since it was around that time that the error went away.

  • File not found exception....in jboss

    how to access a .properties file in jboss web application....as when running the jsp code from jboss which in turn invokes the java class file which is using the .properties file we get the file not found exception with respect to the properties file though it is not posing any exceptions while executing the java code from the command line..please feel free to provide any useful answers.

    the jsp file has been used to create an object of the
    java file that contains the processing logic...Yes, and given all I know about good application design, this doesn't sound like something a JSP should be doing.
    absolutely fine on command line no hassels....An application server is not a command-line environment. It imposes a huge bunch of restrictions and implications.
    Did you try what I told you?

  • CTIOS 8.5(2) Agent Desktop fails to start - file not found exception

    I can run the CTIOS 8.0(1) Agent Desktop OK against my 8.5(2) system, but when I install 8.5(2) SR on the client machine (running XP SP3), the app will not start. (Actually trace shows it starts a little bit but debugging doesn't point out the problem).
    It pops up a Windows Message wanting to send a report to Microsoft (yeah, we know where that goes) and I can see it say something about a file not found exception.
    I uninstall CTIOS 8.5(2) and it works perfectly.
    Makes you wonder how this passed QC testing. I have tried on two different machines.
    Anyone have the workaround that establishes the file it's looking for?
    Regards,
    Geoff

    I still have my TAC case open but I also have a workaround that seems to work.  As Chad described above he had a machine that the 8.5.2 upgrade originally did not launch on but then magically started working on.  I also came across that case. Once I had one working machine I could upgrade it and downgrade successfully without issues.   Seeing that the 8.5.2 installer examines the system to be upgraded I figured it's checking the registry and/or the installation files. I then did the following:
    Working system
    1) Downgrade working 8.5.2 system to 8.0.1
    2) Export the Cisco Systems Inc key from this 8.0.1 system
    3) Copy the CTIOS Client and CTIOS Silent Monitor directories for the 8.0.1 system
    Non working System
    4) Stop the CTIOS Silent Monitor system
    5) Delete the Cisco System Inc key from the reg
    6) Import the Cisco Systems Inc key from the working system
    7) delete the existing CTIOS Client and CTIOS Silent Monitor directories
    8) Copy in the CTIOS Client and CTIOS Silent Monitor directories from the working system
    9) Run the 8.5.2 installer
    Reboot - and run the agent/supervisor desktop
    I did this on several test machines and it worked every time.  I have upgraded about 5-6 supervisors and they all say it's working fine as well.
    Carlos

  • Why am I getting File not Found alert when I type into my browser?

    Why do I keep getting a File not Found alert when I type into my browser?
    I have been using firefox for about 4 yrs now with very few problems. The problem I am having is that when ever I go to type in anything into my browser I keep receiving this message:
    (Scroll down to see the rest)
    File not found
    Firefox can't find the file at jar:file:///C:/Program Files (x86)/Mozilla Firefox/omni.jar!/chrome/en-US/locale/browser-region/region.propertieschronic+fatigue+syndrome.
    I recently installed Firefox 5.0 and this keeps happening. It happened with the 4.0 version a couple of days ago but mostly it is the 5.0 version that I am having problems with. When ever I want to do a search I have to manually type in google.com. Is there a solution to fix this?

    The NuGet is a dll that was built with 4.0.0.0.  The easiest thing to fix problem is target you VS project to use Net 4.0.  You could get a new version of NuGet, but if you do make sure you rebuild your entire project.  The dependencies in
    the VS compiler doesn't always recognize updated libraries.  So I normally rename the bin folder in the project and then delete the bin folder.  VS will create a new bin folder and then rebuild all the source files.  If your project contains
    multiple projects then remember to delete the bin from all projects.
    jdweng

  • "File not found" error when I try to render an animated menu (on mac) Encore CS4

    I'm making a dvd with at least 2 animated menus. It means that I have a 1 movie in the background of each menu. Over my background, I have 3 thumbnail buttons which contain a small piece of movie animated movie too. When I try to to view my menus, in order to see the animation in the background and in the thumbnails I need to render the animation through File - Render - Motion menus.
    The problem is that it works for the first menu but then when I continue my navigation to the second menu that has animation in background and thumbnails too, if I choose Render Motion menus,after 3/4 of the rendering it says "file not found" even if all the files are well in place in their folders.
    Does anyone would have an idea of how to resolve this stupid problem that prevents me to burn my project on a DVD since the same errors will appear during the burning process (I use a mac with Encore CS4). Is it a bug? What are the solutions? Thanks for answering.
    Steven.

    SteveDVD,
    The use of the .WMV was because that was part of the Library .EM template. I would not anticipate problems with other formats, so long as they are supported and the same for all of your Menus in the Project.
    If you have done several Motion Menu Renderings, you might want to clear Encore's Media Cache, just in case it is still referencing previous Render files.
    And yes, the re-Importation should yield the same result as Linking/re-Linking.
    Unfortunately, I do not have CS4, so I can't test this for you. There do seem to be a few real Bugs in the various CS4 programs, and maybe this is one?
    That "File Not Found" rings a bell in my feeble brain. Seems that there was a post on that, but I do not remember it being related to Motion Menus. Maybe search will yield something of use.
    Good luck,
    Hunt

  • Get file not found error when I try to sync

    I get file not found error when I try to sync Iphone.

    SteveDVD,
    The use of the .WMV was because that was part of the Library .EM template. I would not anticipate problems with other formats, so long as they are supported and the same for all of your Menus in the Project.
    If you have done several Motion Menu Renderings, you might want to clear Encore's Media Cache, just in case it is still referencing previous Render files.
    And yes, the re-Importation should yield the same result as Linking/re-Linking.
    Unfortunately, I do not have CS4, so I can't test this for you. There do seem to be a few real Bugs in the various CS4 programs, and maybe this is one?
    That "File Not Found" rings a bell in my feeble brain. Seems that there was a post on that, but I do not remember it being related to Motion Menus. Maybe search will yield something of use.
    Good luck,
    Hunt

  • Javax.servlet.Filter, throw file not found exception

    I want to use a url which is not exists to let the filter run.
    In the method doFIlter(), if the URL is this one, I will return and do not run chain.doFilter
    Why throw FIle not found exception? Will the fileter check the url whether exist or not?

    I use the URL to let the filter run, but do not want to go to the URL.What should happen if someone requests the URL from the server ?
    Nothing is not possible.
    One possibilty is to send the HTTP Response Code 204 - No Content
    The server has fulfilled the request but does not need to return an entity-body, and might want to return updated metainformation. The response MAY include new or updated metainformation in the form of entity-headers, which if present SHOULD be associated with the requested variant.
    If the client is a user agent, it SHOULD NOT change its document view from that which caused the request to be sent. This response is primarily intended to allow input for actions to take place without causing a change to the user agent's active document view, although any new or updated metainformation SHOULD be applied to the document currently in the user agent's active view.
    The 204 response MUST NOT include a message-body, and thus is always terminated by the first empty line after the header fields.
    (RFC 2616 Fielding, et al.)

  • Class not found exception when launching opencounterslogger.bat

    PORTAL_HOME=D:\bea\alui\ptportal\10.3.0
    Expected PORTAL_HOME=D:\bea\alui\ptportal\10.3.0
    claspath is D:\bea\alui\ptportal\10.3.0\lib\java\jakarta-oro-2.0.7.jar;D:\bea\alui\ptportal\10.3.0\lib\java\openfoundation.jar;D:\bea\alui\ptportal\10.3.0\lib\java\openlog-framework.jar;D:\bea\alui\ptportal\10.3.0\lib\java\openconfig.jar;D:\bea\alui\ptportal\10.3.0\lib\java\openkernel.jar;D:\bea\alui\ptportal\1
    0.3.0\lib\java\pmb.jar;D:\bea\alui\ptportal\10.3.0\lib\java\opencounters.jar
    Exception in thread "Main Thread" java.lang.NoClassDefFoundError: com/plumtree/openkernel/impl/counters/adaptor/logger/PTRemoteCounterLoggerMain
    Press any key to continue . . .
    The class PTRemoteCounterLoggerMain is not in any of the jars in the classpath. Also opencountersconsole.bat is not to be seen is the installation

    Hi Mark,
    I have seen your two posts and there are something you need to notice:
    Where the ClassNotFound exception you got? From deployment tool or
    application server kjs process?
    Of course, you need not to add supporting classes to each ejb jars or ears.
    1. If you use deployment tool to package your application, I'm sure you'll
    fail to resovle your classes without supporting classes added to jars.
    Please select Edit->Preference,in Classpath entry, enter the supporting
    classes(packaged to jar files) location. This should work.
    2. After deploy to ias, please edit the registry using kregedit which you
    described in your posts.
    Regards,
    Johnson
    "Mark Priest" <[email protected]> wrote in message
    news:9s6h33$[email protected]..
    When I deploy EJBs to the iPlanet app server I find that I need to include
    all supporting classes in each ejb jar file. According to the
    Administrator's manual I should be able to modify the kjs classpath bydoing
    the following:
    On Windows
    a.. Open iPlanet Registry Editor.
    (See About iPlanet Registry Editor)
    b.. Open the following key:
    SOFTWARE\iPlanet\Application Server\6.0\Java\
    c.. Modify the class path and restart the server for the change to take
    effect.
    However, when I add my supporting classes to a jar in this directory Istill
    get a class not found exception when I run the deployment tool.
    Adding the classes to each EJB jar is redundant and introduces lots of
    problems. How should I configure iPlanet so I only need to put my
    supporting classes in one place?
    Thanks,
    Mark

  • PXE T01 file not found PXE E3B TFTP Error file not found error

    Hi,
    I was trying to deploy OS through SCCM . i have made DHCP server and  SCCM PC one PCst when i am trying to boot from client to DHCP by f12 i am getting following error. so that i have been completed following steps
    TFTP
    PXE-T01: File not found
    PXE:E3B: TFTP Error- File not found
    1)Removed WDS service and reconfigured
    2)PXE role removed and re assigned
    3)renamed temp folder
    4)DP updated
    suppose if i am trying to access the port throgh telnet
    i am getting
    C:\Documents and Settings\Administrator>telnet 192.168.1.65 60
    Connecting To 192.168.1.65...Could not open connection to the host, on port 60:
    Connect failed
    C:\Documents and Settings\Administrator>telnet 192.168.1.65 67
    Connecting To 192.168.1.65...Could not open connection to the host, on port 67:
    Connect failed
    C:\Documents and Settings\Administrator>telnet 192.168.1.65 66
    Connecting To 192.168.1.65...Could not open connection to the host, on port 66:
    Connect failed
    C:\Documents and Settings\Administrator>telnet 192.168.1.65 65
    Connecting To 192.168.1.65...Could not open connection to the host, on port 65:
    Connect failed
    SCCM PXEsetup.log
    ====================================================================
    <05-17-2011 22:02:14> SMSPXE Setup Started....
    <05-17-2011 22:02:14> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-17-2011 22:02:14> Installing Pre Reqs for SMSPXE
    <05-17-2011 22:02:14>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-17-2011 22:02:14> Found 2 Pre Reqs for Role SMSPXE
    <05-17-2011 22:02:14> Pre Req MSXML60 found.
    <05-17-2011 22:02:14> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-17-2011 22:02:14> Pre Req MSXML60 is already installed. Skipping it.
    <05-17-2011 22:02:14> Pre Req Wimgapi found.
    <05-17-2011 22:02:14> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-17-2011 22:02:14> Pre Req Wimgapi is already installed. Skipping it.
    <05-17-2011 22:02:14>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-17-2011 22:02:14> Installing the SMSPXE
    <05-17-2011 22:02:14> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-17-2011 22:02:14> Error - WDS is not installed. Installation cannot continue
    <05-17-2011 23:02:35> ====================================================================
    <05-17-2011 23:02:35> SMSPXE Setup Started....
    <05-17-2011 23:02:35> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-17-2011 23:02:35> Installing Pre Reqs for SMSPXE
    <05-17-2011 23:02:35>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-17-2011 23:02:35> Found 2 Pre Reqs for Role SMSPXE
    <05-17-2011 23:02:35> Pre Req MSXML60 found.
    <05-17-2011 23:02:35> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-17-2011 23:02:35> Pre Req MSXML60 is already installed. Skipping it.
    <05-17-2011 23:02:35> Pre Req Wimgapi found.
    <05-17-2011 23:02:35> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-17-2011 23:02:35> Pre Req Wimgapi is already installed. Skipping it.
    <05-17-2011 23:02:35>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-17-2011 23:02:35> Installing the SMSPXE
    <05-17-2011 23:02:35> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-17-2011 23:02:35> Error - WDS is not installed. Installation cannot continue
    <05-17-2011 23:38:26> ====================================================================
    <05-17-2011 23:38:26> SMSPXE Setup Started....
    <05-17-2011 23:38:26> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-17-2011 23:38:26> Installing Pre Reqs for SMSPXE
    <05-17-2011 23:38:26>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-17-2011 23:38:26> Found 2 Pre Reqs for Role SMSPXE
    <05-17-2011 23:38:26> Pre Req MSXML60 found.
    <05-17-2011 23:38:26> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-17-2011 23:38:26> Pre Req MSXML60 is already installed. Skipping it.
    <05-17-2011 23:38:26> Pre Req Wimgapi found.
    <05-17-2011 23:38:26> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-17-2011 23:38:26> Pre Req Wimgapi is already installed. Skipping it.
    <05-17-2011 23:38:26>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-17-2011 23:38:26> Installing the SMSPXE
    <05-17-2011 23:38:26> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-17-2011 23:38:26> WDS Service is installed.
    <05-17-2011 23:38:26> No versions of SMSPXE are installed.  Installing new SMSPXE.
    <05-17-2011 23:38:26> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-17-2011 23:38:26> Installing C:\Program Files\Microsoft Configuration Manager\bin\i386\pxe.msi CCMINSTALLDIR="C:\Program Files\SMS_CCM" PXEENABLELOGGING=TRUE PXELOGLEVEL=1 PXELOGMAXSIZE=1000000 PXELOGMAXHISTORY=1
    <05-17-2011 23:39:47> pxe.msi exited with return code: 0
    <05-17-2011 23:39:47> Installation was successful.
    <05-18-2011 22:20:04> ====================================================================
    <05-18-2011 22:20:04> SMSPXE Setup Started....
    <05-18-2011 22:20:04> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /deinstall /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-18-2011 22:20:04> Deinstalling the SMSPXE
    <05-18-2011 22:20:04> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-18-2011 22:20:04> Deinstalling SMSPXE, with product code {C63C1FBD-C9C8-469D-8ADE-12387FB5EA75}
    <05-18-2011 22:20:15> SMSPXE deinstall exited with return code: 0
    <05-18-2011 22:20:15> Deinstallation was successful.
    <05-18-2011 22:20:15> Removing PXE Registry.
    <05-18-2011 22:23:18> ====================================================================
    <05-18-2011 22:23:18> SMSPXE Setup Started....
    <05-18-2011 22:23:18> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-18-2011 22:23:18> Installing Pre Reqs for SMSPXE
    <05-18-2011 22:23:18>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-18-2011 22:23:18> Found 2 Pre Reqs for Role SMSPXE
    <05-18-2011 22:23:18> Pre Req MSXML60 found.
    <05-18-2011 22:23:18> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-18-2011 22:23:18> Pre Req MSXML60 is already installed. Skipping it.
    <05-18-2011 22:23:18> Pre Req Wimgapi found.
    <05-18-2011 22:23:18> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-18-2011 22:23:18> Pre Req Wimgapi is already installed. Skipping it.
    <05-18-2011 22:23:18>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-18-2011 22:23:18> Installing the SMSPXE
    <05-18-2011 22:23:18> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-18-2011 22:23:18> WDS Service is installed.
    <05-18-2011 22:23:18> No versions of SMSPXE are installed.  Installing new SMSPXE.
    <05-18-2011 22:23:18> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-18-2011 22:23:18> Installing C:\Program Files\Microsoft Configuration Manager\bin\i386\pxe.msi CCMINSTALLDIR="C:\Program Files\SMS_CCM" PXEENABLELOGGING=TRUE PXELOGLEVEL=1 PXELOGMAXSIZE=1000000 PXELOGMAXHISTORY=1
    <05-18-2011 22:24:11> pxe.msi exited with return code: 0
    <05-18-2011 22:24:11> Installation was successful.
    <05-18-2011 22:31:06> ====================================================================
    <05-18-2011 22:31:06> SMSPXE Setup Started....
    <05-18-2011 22:31:06> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-18-2011 22:31:06> Installing Pre Reqs for SMSPXE
    <05-18-2011 22:31:06>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-18-2011 22:31:06> Found 2 Pre Reqs for Role SMSPXE
    <05-18-2011 22:31:06> Pre Req MSXML60 found.
    <05-18-2011 22:31:06> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-18-2011 22:31:06> Pre Req MSXML60 is already installed. Skipping it.
    <05-18-2011 22:31:06> Pre Req Wimgapi found.
    <05-18-2011 22:31:06> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-18-2011 22:31:06> Pre Req Wimgapi is already installed. Skipping it.
    <05-18-2011 22:31:06>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-18-2011 22:31:06> Installing the SMSPXE
    <05-18-2011 22:31:06> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-18-2011 22:31:06> WDS Service is installed.
    <05-18-2011 22:31:06> SMSPXE already installed (Product Code: {C63C1FBD-C9C8-469D-8ADE-12387FB5EA75}).  Upgrading/Reinstalling SMSPXE
    <05-18-2011 22:31:06> New SMSPXE is the same product code.  This is a minor upgrade.
    <05-18-2011 22:31:06> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-18-2011 22:31:06> Installing C:\Program Files\Microsoft Configuration Manager\bin\i386\pxe.msi REINSTALL=ALL REINSTALLMODE=vmaus CCMINSTALLDIR="C:\Program Files\SMS_CCM" PXEENABLELOGGING=TRUE PXELOGLEVEL=1 PXELOGMAXSIZE=1000000 PXELOGMAXHISTORY=1
    <05-18-2011 22:35:43> pxe.msi exited with return code: 0
    <05-18-2011 22:35:43> Installation was successful.
    <05-18-2011 23:41:19> ====================================================================
    <05-18-2011 23:41:19> SMSPXE Setup Started....
    <05-18-2011 23:41:19> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /deinstall /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-18-2011 23:41:19> Deinstalling the SMSPXE
    <05-18-2011 23:41:19> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-18-2011 23:41:19> Deinstalling SMSPXE, with product code {C63C1FBD-C9C8-469D-8ADE-12387FB5EA75}
    <05-18-2011 23:41:33> SMSPXE deinstall exited with return code: 0
    <05-18-2011 23:41:33> Deinstallation was successful.
    <05-18-2011 23:41:33> Removing PXE Registry.
    <05-19-2011 00:38:50> ====================================================================
    <05-19-2011 00:38:50> SMSPXE Setup Started....
    <05-19-2011 00:38:50> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-19-2011 00:38:50> Installing Pre Reqs for SMSPXE
    <05-19-2011 00:38:50>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-19-2011 00:38:50> Found 2 Pre Reqs for Role SMSPXE
    <05-19-2011 00:38:50> Pre Req MSXML60 found.
    <05-19-2011 00:38:50> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-19-2011 00:38:50> Pre Req MSXML60 is already installed. Skipping it.
    <05-19-2011 00:38:50> Pre Req Wimgapi found.
    <05-19-2011 00:38:50> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-19-2011 00:38:50> Pre Req Wimgapi is already installed. Skipping it.
    <05-19-2011 00:38:50>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-19-2011 00:38:50> Installing the SMSPXE
    <05-19-2011 00:38:50> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-19-2011 00:38:50> WDS Service is installed.
    <05-19-2011 00:38:50> No versions of SMSPXE are installed.  Installing new SMSPXE.
    <05-19-2011 00:38:50> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-19-2011 00:38:50> Installing C:\Program Files\Microsoft Configuration Manager\bin\i386\pxe.msi CCMINSTALLDIR="C:\Program Files\SMS_CCM" PXEENABLELOGGING=TRUE PXELOGLEVEL=1 PXELOGMAXSIZE=1000000 PXELOGMAXHISTORY=1
    <05-19-2011 00:39:15> pxe.msi exited with return code: 0
    <05-19-2011 00:39:15> Installation was successful.

    I have similar issue same above error but this error i am getting intermittent  keeping trying 2 or 3 times i get F12 option to boot the network services 
    TFTP
    PXE-T01  The specified file not found 
    PXE-E3B TFTP Error : File not found 
    Our environment have DHCP configured In Inflobox and the Primary site server and PXE DP server located in Same Subnet and configured 2008 R2 sp1 and configured  SCCM2012 in VM environment 
    I tried all the Options uninstall and re-install no luck and i have tried to increase Tramsmiit and recive Buffer size in lan card but the issue is not resolved.
    Capture smspxe log when it found boot image the pxe working ,when it not found getting TFTP error.
    SMSPxe log says no errors but getting client Pxe TFTP error file not found  (Since its not looking Image throw out TFTP error)
    Client boot action reply: <ClientIDReply><Identification Unknown="0" ItemKey="16777230" ServerName="" ServerRemoteName=""><Machine><ClientID>GUID:49D9F374-7606-4277-8AE9-FEE608FFB01E</ClientID><NetbiosName/></Machine></Identification><PXEBootAction
    LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="SGP20001" OfferIDTime="6/25/2012 11:09:00 AM" PkgID="SGP00009" PackageVersion="" PackagePath="http://XXX.company.com/SMS_DP_SMSPKG$/SGP00004" BootImageID="SGP00004" Mandatory="0"/></ClientIDReply>
    Client Identity: 9c7f0d6a-58dd-4cda-a4f0-3f66316067fb
    PXE::CBootImageManager::FindMatchingArchitectureBootImage
    Set media certificate in transport
    Set authenticator in transport
    SMSPxe log says no errors t i can able to do pxe Log found Boot image 
    Client boot action reply: <ClientIDReply><Identification Unknown="0" ItemKey="16777230" ServerName="" ServerRemoteName=""><Machine><ClientID>GUID:49D9F374-7606-4277-8AE9-FEE608FFB01E</ClientID><NetbiosName/></Machine></Identification><PXEBootAction
    LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="SGP20001" OfferIDTime="6/25/2012 11:09:00 AM" PkgID="SGP00009" PackageVersion="" PackagePath="http://xxx.company.com/SMS_DP_SMSPKG$/SGP00004" BootImageID="SGP00004" Mandatory="0"/></ClientIDReply>
    Client Identity: 9c7f0d6a-58dd-4cda-a4f0-3f66316067fb
    PXE::CBootImageManager::FindMatchingArchitectureBootImage
    PXE::CBootImageManager::FindBootImage: SGP00004
    Looking for bootImage SGP00004
    PXE::CBootImageCache::FindImage
    PXE::CBootImageInfo::UpdateAccessTime
    Appreciate if you could provide some solution 
    Ksrini

  • File Not found error when calling Form Post Method to a JSP from JSP Portlet

    I have built a set of JSP forms using post method to call other JSPs. Normally, the code looks like
    <form name="MyForm" action="MyJsp.jsp" method="post">
    I migrated the calling form containing this code to a portlet, but not the MyJsp.jsp. When I submit the form, I get a file not found in Jserv.log
    Exception:javax.servlet.ServletException: java.io.FileNotFoundException: D:\servlet\RegisterCompany.jsp (The system cannot find the file specified)
    [14/06/2001 13:59:59:679 PDT] JspServlet: unable to dispatch to requested page: Exception:javax.servlet.ServletException: java.io.FileNotFoundException: d:\oracle\isuites\apache\apache\MyJsp.jsp (The system cannot find the file specified)
    I notice that launching the calling jsp from a portlet, my opriginal context that uses ../Apache/Apache/htdocs is not being searched for the JSp. Why is this? Moreover, I try to set up an Alias in httpd.conf file to the this director and use it with the jsp in the action tag, but still get an error that my jsp servlets/Myjsp can't be found. Why is it insiting on looking at servlets context instead of htdocs.
    I have none of these issues outside of Portal30 using IAS.
    regard

    Initially, I couldn't do this unless I moved tghe jsp's up to the root directory of IAS, i.e ../Apache/Apache. Nomrally, htdocs is my doc directory for IAS. I could not do http:\\myUrl\htdocs\myJsp. If I tgried this, I got an error in Apache error logg that said can't find file ..\htdocs\htdocs\MyJsp.jsp.
    If I just tried the the URL http:\\myUrl\MyJsp.jsp with Jsp file in htdocs, I would get an error in the Jserve log that file d:\oracle\isuites\apache\apache\MyJsp.jsp could not be found. Once I moved the file MyJsp to Apache/Apache directory, it could be found using http:\\myUrl\MyJsp.jsp. Later, I delted these files and kept the ones in htdocs and they continued to work.
    I'm confused why launching pages through portal isn't consistant with Apache Standards. Where is the documentation that tells me how to configure context and aliases for pages launched from portal pages?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Sue Vickers ([email protected]):
    David,
    Passing information using Portal is different than just using Apache/Jserv. Does it work in portal if you use the absolute path?
    <form name="MyForm" action="http://host.domain/MyJSP.jsp" method="post">
    Portal will not be on the same relative path as your Apache, so you may need to adjust your action somehow.
    Thanks,
    Sue<HR></BLOCKQUOTE>
    null

  • File not found error when Downloading Crystal Reports 2008

    Hi,
    I am trying to download a trial version of Crystal Reports 2008. I get the error "file not found" both times when I downloaded the zip file and opened it first from the Free trial link and next from the Diamond community page link.  Can anyone help pls. ? Thanks AC

    New location to download: http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • File not Found error when synching Ipod

    I have a fairly new Ipod and synced successfully for months, but now iTunes says it cant synch because of a "File not Found error" (no error number or other clues). I'm running the latest iTines and Ipod software, and I've reset USB drivers but still no luck. I cant reset the iPod itself becase I then got a "1418 error", which is why I then reset USB. I'm stuck, has anyone seen this before?
    The Ipod itself plays fine and Itunes recgnises it OK, albeit very slowly, even thought I'm using USB 2.
    One other piece of info; when this first happened, the sync must have first deleted the songs I no longer wanted, prior to unsuccesfully adding new ones. Those old songs show up on the iPod but are skipped when I try to play them.

    Its on the same thread as this one ("connecting iPod nano (second Generation ) to Windows"). Scroll through the authors, you will find it.

  • File not found error when tried to open Document ID settings page

    Hi
    when i open sitesettings>site collection administratin >Document
    ID settings
    it shows
    file not found error
    adil

    Hi,
    first we need to figure out the error. change the web.config so that you can see the error on browser
    1) Obtain the complete call stack instead of the default error page:
    <SafeMode MaxControls="200" CallStack="false"/>
    to
    <SChangeafeMode MaxControls="200" CallStack="true"/>
    2) CustomeErrors mode value (in the system.web section) is set to Off:
    <customErrors mode="On">
    to
    <customErrors mode="Off">
    Change these value in "c:\inetpub\wssroot"  CA dirctory web.config and
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\web.config .
    now again try to do the action. you will get the error on screen.
    Whenever you see a reply and if you think is helpful,Vote As Helpful! And whenever you see a reply being an answer to the question of the thread, click Mark As Answer

Maybe you are looking for

  • Problem with zone installation on solaris 08/07

    Hello :) I need some help I install solaris 10 08/07 on my x2100 M2.Everything is ok. Then I try to install non-global zone named web-zone with the following commands: # mkdir /export/web-zone # chmod 700 /export/web-zone # zonecfg -z web-zone web-zo

  • From DVD-Video to FCP

    I'm trying to get uncopyrighted video from DVD to Final Cut. I've found some ways to do it, but they seem a little sloppy and I want to make sure I convert things the best way. I've used "MPEG Streamclip" with some success - but the audio always need

  • Conecting a V880 to a EVA8000 san

    Hello all, I'm trying to connect a V880 running solaris8 to our new EVA8000 san using HBA qlogic cards, currently the v880 is connectted to our old HSG80 san trought two JNI cards these are the steps I've done so far:- 1) Install HBA into server 2) R

  • If you had mismatched MEID and serial numbers, look here!!

    My issue has finally been solved by Verizon for my mismatched MEID and Serial numbers.  The tech support guy was just about to fill out the DOA form to get a new phone when he asked me if they tried switching the MEIDs in the system.  I gave him the

  • New Apple keyboard and the keyboard shortcut tab in prefpane ?

    Hi. So I bought a new Apple "slim" kayboard, I'm pretty happy with it. The only thing I don't get is that I can't access the "keyboard shortcut" tab in the Keyboard and mouse prefpane. When I click it, the tab turns grey but I can't enter. Is it norm