Banner-zip not found

Hi there,
while building the app with v26 in the DPS app builder the issue "banner-zip not found" appears at the end. So I can´t produce the app. Does anyone knows, where the problem is?
Regards

Hi Neil,
I´ve done that several times. I´ve never uploaded a banner-zip before, we don´t have an entitlement server, but we´re enterprise.Accoirding to your held page, there is a possibilty to chose a Offline Banner Assets but i can´t find that option.

Similar Messages

  • Path in Classpath for file SapMetamodelWebdynproContent.zip not found.

    How to get rid of these warnings?
                   [Warning]: Path in Classpath for file SapMetamodelWebdynproContent.zip not found.          
    Warning               [Warning]: Version for file SapMetamodelWebdynproContent.zip not found.          
    Warning               [Warning]: Versions of 'SapDictionaryTypeServices.jar' have different prefix.          
    Warning               [Warning]: Versions of 'SapDictionaryTypesRuntime.jar' have different prefix.     
    thanks in advance.

    Hi,
    This is a common problem when you import projects to NWDS. Do like this.
    1.Change to Navigator tab in NWDS and delete gen_wdp folder.
    2.Switch to Web Dynpro Explorer. Select the Project -> Right click-> Select properties -> in the wizard select Java Build Path -> Select Libraries tab -> You will find jar files with warnings
    3.Remove the jar and add the jar file with same name to the project one by one.
    4.For each jar file repeat step 3.
    5.Save the project
    Or
    removed the read-only property from all folders / files of the project and it solved my problem.
    Hope this helps!!
    Thanks & Regards
    Vijay K

  • ADF Faces download zip not found

    http://www.oracle.com/technology/software/products/jdev/htdocs/adfjsf.html
    http://download.oracle.com/otn/java/jdeveloper/1013/adf-faces-ea13.zip
    Link is not found or invalid.

    Well, just as I posted the message, I went back and tried, and it's working now. doh!

  • Jdev1012_doc.zip not found

    The base installation for jdeveloper 10.2 says that I can install the documentaiton jdev1012_doc.zip from the site http://www.oracle.com/technology/products/jdev. I can't find it onthat page and a OTN-wide search provides no results on the file location. A browse of the Documentation link only offers html version. Where can I now find this file?
    Thanks

    Hi,
    You can find this file on the 10.1.2 download page. Go to http://www.oracle.com/technology/software/products/jdev/index.html and select the link for Oracle JDeveloper 10g, version 10.1.2.1. Alternatively you can access the documentation online from the main documentation page: http://www.oracle.com/technology/documentation/9i_jdev.html.
    Thanks
    Blaise

  • I get an error message 7-Zip file not found

    When I am trying to download Mozzila I keep getting an error message that states 7-Zip file not found and it won't let me download the browser.

    Hello psimonsen, you don't need 7-zip program to download official firefox, see: [https://support.mozilla.org/en-US/kb/install-firefox-windows Install Firefox on Windows]
    another official link : http://www.mozilla.org/en-US/firefox/all/
    thank you

  • The deployment package file (*.zip) was not found

    Hi,
    I was using my Visual Studio Online account and was pushing it to azure. The deployment failed and this was the result:
    Exception Message: The deployment package file (*.zip) was not found. Ensure that PackageAsSingleFile msbuild property is not set to False. (type FileNotFoundException)
    Exception Stack Trace:    at Microsoft.TeamFoundation.Deployment.Workflow.Activities.FindPackageAndParametersFile.Execute(CodeActivityContext context)
       at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager)
       at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
    Does anyone have a possible solution?
    I've contacted support and they suggested to turn the website off while deploying but that did not seem to resolve the issue.

    photon, you've had quite a few threads now in which you lead those willing to help you down all kinds of useless rabit trails.  Most of the problems have been "solved" with you giving a statement much like this last one that "I forgot to <do some basic step clearly outlined in the instructions>".
    We all make silly mistakes from time to time - but if you show a consistent pattern of failing to follow simple instructions, then I doubt arch is for you, and I doubt you will continue to get much leeway from this community.

  • 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

  • Page not found - after installing htmldb_2.0.zip

    On my W2000 PC installed XE ok and everything seemed fine on...
    http://127.0.0.1:8080/apex
    Then installed htmldb_2.0.zip and now nothing works...
    http://127.0.0.1:8080/apex
    The requested URL /apex/f was not found on this server
    http://127.0.0.1:8080/pls/htmldb
    The requested URL /pls/htmldb was not found on this server
    Any ideas?
    Thanks

    Hi
    Why do you install htmldb 2.0?
    It's already included (apex ist htmldb2.0)
    APEX use the integrated webserver from xdb.
    If you install htmldb you must install a external apache or configure a dad ("pls") in xdb.
    Greetings
    Sven

  • Plugin.xml not found on plugin.zip

    I was registering a plugin using the plugin utility and it threw this exception:
    plugin.xml not found in plugin zip
    However my plugin.xml IS there, my jar file is in the JavaTasks folder also. Has someone run into that as well?
    Thanks

    Hi,
    I think you first placed jar and plugin.xml in a folder and then zipped it.
    Instead, select your jar file and plugin.xml and then zip them together.
    Hope this helps. :)

  • HT201413 I am having a problem updating itunes to the latest version on my windows xp i get the error message 126 and the sign that says this application has failed because MSVCR80.dll was not found.

    I am having a problem updating itunes to the latest version on my windows xp i get the error message 126 and the banner that says this application has failed because MSVCR80.dll was not found. anyone have a fix suggestion? thanks

    Click here and follow the instructions.
    (98724)

  • Class not found in import

    I am new to the Java technology and am running into some problems getting started. Initially, I was getting the following error: Class javax.swing.JOptionPane not found in import. After realizing that I needed to unzip the src.zip file, I did so. I tried compiling again and got the same message. I came across a website that talked about setting the CLASSPATH. So I set the class path like so: set CLASSPATH=.;C:\;c:\j2sdk1.4.2_04\src;. Finally! I got passed the first error. However, what followed was quite depressing. 50 Errors! Looks like the compiler can not find any class I import that starts with "sun.". I looked where I can see the javax folder and there is no sun folder. Did I miss something in the installation? Is there a workaround for this? I thought I read somewhere that you shouldn't import sun.* classes, but what happens when it is in the delivered packages? TIA Ryan

    Well to start off... The file Src.zip only contains source files nothing compiled so it useless unless you want to look at the source code, the Java Class files are in a "Jar" file...
    Set your (system) path to c:\j2sdk1.4.2_04\bin
    your ClassPath should only point to the new class files that you created...
    ( I don't even have the ClassPath set on my computer)
    And this link deals with setting the classpath...
    http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/classpath.html
    That should take care of it... Here are some links for you to check out...
    The Java Tutorial
    http://java.sun.com/docs/books/tutorial/index.html
    Essentials of the Java Programming Language: A Hands-On Guide, Part 1 and 2
    http://java.sun.com/developer/onlineTraining/Programming/BasicJava1/
    http://java.sun.com/developer/onlineTraining/Programming/BasicJava2/
    Language Essentials Short Course
    http://java.sun.com/developer/onlineTraining/JavaIntro/contents.html
    Tutorial Index
    http://java.sun.com/developer/onlineTraining/index.html
    - MaxxDmg...
    - ' He who never sleeps... '

  • XML File not Found for the Container BC4J.cpx

    Hi,
    Have following error when I start a BC4J-JSP/Struts application (with Embedded and standalone OC4J) :
    500 Internal Server Error
    oracle.jbo.NoXMLFileException: JBO-26001: XML File not found for the Container BC4J.cpx
         oracle.jbo.mom.ContainerDefImpl oracle.jbo.mom.DefinitionManager.loadProjectDefinition(java.lang.String)
              DefinitionManager.java:751
         oracle.jbo.mom.ContainerDefImpl oracle.jbo.mom.DefinitionManager.loadProjectDefinition()
              DefinitionManager.java:793
         void oracle.jbo.mom.DefinitionManager.initManager()
              DefinitionManager.java:137
         void oracle.jbo.uicli.mom.JUMetaObjectManager.<init>()
              JUMetaObjectManager.java:57
         oracle.jbo.uicli.mom.JUMetaObjectManager oracle.jbo.uicli.mom.JUMetaObjectManager.getJUMom()
              JUMetaObjectManager.java:131
         oracle.jbo.common.ampool.SessionCookie oracle.jbo.http.HttpContainer.findSessionCookie(javax.servlet.http.HttpSession, java.lang.String, java.lang.String, java.util.Properties)
              HttpContainer.java:541
         boolean oracle.jbo.html.struts11.BC4JRequestProcessor.initPageFromPath(oracle.jbo.html.struts11.BC4JActionMapping, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              BC4JRequestProcessor.java:222
         org.apache.struts.action.ActionMapping oracle.jbo.html.struts11.BC4JRequestProcessor.processMapping(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
              BC4JRequestProcessor.java:124
         void org.apache.struts.action.RequestProcessor.process(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              RequestProcessor.java:234
         void org.apache.struts.action.ActionServlet.process(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              ActionServlet.java:1292
         void org.apache.struts.action.ActionServlet.doGet(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              ActionServlet.java:492
         void javax.servlet.http.HttpServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              HttpServlet.java:740
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpServlet.java:853
         void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              ServletRequestDispatcher.java:721
         void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
              ServletRequestDispatcher.java:306
         boolean com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.ApplicationServerThread, com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.EvermindHttpServletRequest, com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
              HttpRequestHandler.java:767
         void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(java.lang.Thread)
              HttpRequestHandler.java:259
         void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.run()
              HttpRequestHandler.java:106
         void EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run()
              PooledExecutor.java:803
         void java.lang.Thread.run()
              Thread.java:484
    Then I make a Reload and it's ok.
    I have a Workspace with two Projects :
    BC4J.jpr for Businnes Components
    Web.jpr for JSP Struts
    In /classes I have the file Web.cpx, but no BC4J.cpx.
    From which does this name come ? Can I change this name ?
    Thanks
    Yves

    I found this on Metalink...
    JBO-26001: NoXMLFileException
    Cause: Could not open the named XML file for read.
    The following is from Note 137429.1. Hope this helps.
    Raja.
    JBO-26001: NoXMLFileException
    Cause: Could not open the named XML file for read.
    Action: 1. Make sure that the file is present. In particular, if the file is to be found in a zip/jar file, make sure that the Zip/JAR file is included in the CLASSPATH.
    2. This error is also reported if the name of the XML file does not match the object Name specified in the XML file. If the file system support case insensitive file names (e.g., Windows NT), make sure that the file name matches the object Name in the XML file in case-sensitive fashion.
    3. For a .JPX file, this error is reported if the JPX file is missing the JboProject XML tag. Check the JPX file to make sure that the valid tag is in there.
    4. One XML file may be extending another XML file (specified by the Extends element in this XML file). This error is reported if the base XML file is not found.
    5. When loading the XML file for a package (JboPackage tag), this error is reported if some unexpected error occurs while loading a containee.
    In all of the above cases, a more descriptive message may be printed on Diagnostic. If you are not seeing Diagnostic messages, you can run your application with Diagnostic turned on, as in "java -Djbo.debugoutput=console ...", to see Diagnostic messages.

  • "application descriptor not found" when trying to create .ane file

    I have been trying to create a very simple native extention for the better part of a week now and I just can't seem to figure it out.
    Using tutorials and guides from the following sources:
    http://www.adobe.com/devnet/air/articles/extending-air.html
    http://www.adobe.com/content/dam/Adobe/en/devnet/devices/pdfs/DevelopingActionScriptExtens ionsForAdobeAIR.pdf
    http://custardbelly.com/blog/2011/09/21/air-native-extension-example-ibattery-for-ios/
    I managed to get up to the point where I need to create the ane file, but I am getting "application descriptor not found".
    So, here is the detailed explanation of everything I have done to date. Can someone tell me where I have gone wrong?
    1. On the mac, I created an xcode project, using the iBattery example code from the link above, I managed to create static library .a file. I am not going to discount the possiblity that there are many errors still in this file, but I am going to assume for the moment that my current problem is not related to any issues in this static library.
    2. Copied the static library "DaveExtention.a" to my PC where I have flash CS5.5 installed (yes, I know there is a typo in the name)
    3. In my app folder, I created a lib folder that now contains the following files:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\DaveExtension.fla
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\DaveExtension-app.xml
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\com\extensions\DaveExtension\DaveExtension.as
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\com\extensions\DaveExtension\BatteryStateEnum.as
    I set my project to compile an swc into the build folder and simply put the following code into my project:
    import com.extensions.DaveExtension.BatteryStateEnum;
    import com.extensions.DaveExtension.DaveExtension;
    var ext:DaveExtension = new DaveExtension;
    var batterystate:BatteryStateEnum;
    stop();
    I then publish the swc.
    4. Once the swc is created in the build folder, I copy the libDaveExtention.a to the build folder and create the extension.xml file, which looks like this:
    <extension xmlns="http://ns.adobe.com/air/extension/2.5">
      <id>com.extensions.DaveExtension</id>
      <versionNumber>1</versionNumber>
      <platforms>
        <platform name="iPhone-ARM">
            <applicationDeployment>
                <nativeLibrary>libDaveExtention.a</nativeLibrary>
                <initializer>ExtInitializer</initializer>
                <finalizer>ExtFinalizer</finalizer>
            </applicationDeployment>
        </platform>
      </platforms>
    </extension>
    5. I make a copy of the swc file and rename it to .zip... I then extract library.swf from it and delete the zip. My build folder now looks like this:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\DaveExtension.swc
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\extension.xml
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\libDaveExtention.a
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\library.swf
    6. I downloaded the flex 4.5.1.21328 sdk and the Air 3.0 sdk, which I copied into the flex sdk folder (which is located in "D:\SDKs\flex_sdk_4.5.1.21328")
    7. In my build folder, I create a simple batch file called buildane.bat with the following command:
    D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    8. I then open a command prompt to my build folder and run buildane.bat and this is my output:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>buildane.bat
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    application descriptor not found
    No matter what I try, I can't get passed this.
    Can anyone tell me what I am doing wrong?

    >>D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    Either its a typo or by mistake you wrote adl in yout bat file. Change it to adt since that is the file that will package your ane. adl is just used for debugging/running on Desktop.
    Hope this helps. let me know how it goes.
    Thanks,
    Meet

  • Quicktime gets a file not found error in running of set up.  tried downloading twice

    Quicktime gets a file not found error in running of set up.  tried downloading twice

    Hi Spex,
    I can import the VI Logger task OK (from another PC running VI Logger 2.0), but I can't run the task.  I've attached the file.  The "1 channel" task runs OK.  The "x-probe" task starts, takes 1 or 2 data points, then hangs for a few seconds, then pops up the "file not found" error. The data acquisition taks run OK, so I don't think they're the problem.
    This file I've attached includes 2 good data tasks ("1 channel" and xprobe"), 1 good VI Logger task ("1 channel"), and my non-working VI Logger task ("x-probe", which works fine on the PC it was exported from).
    I have also tried exporting the non-working VI Logger task on its own, and it still imports OK, but still doesn't run, and gives the same error.
    Thanks,
    Jake
    Attachments:
    configData1.zip ‏353 KB

  • "file not found" error in VI Logger when running an imported VI Logger task

    I'm having trouble getting all of my imported tasks to run in VI Logger.
    I'm using VI Logger 2.0, with an SCXI-1100.  The data acquisition tasks I import run fine.  One of the VI Logger tasks I've imported runs OK, but the other one gives an error:
    "Engine Error!
    Error Code = 7
    LabView: File not found.  The file may have been moved or deleted, or the file path might be incorrectly formatted for the OS."
    If I create a new VI Logger task, the new task works OK.  And my 1st VI Logger task to be imported works OK.  So I know my setup mostly works.  But our company has never been able to figure out importing tasks very well, so I'm looking for help.
    Question 1: What file is LabView looking for?  I've checked my Export path and database path, and they are identical in both the working task and the non-working task.
    Question 2: Where else might I look for the difference between the 2 VI Logger tasks?  Neither task uses any weird characters in the name, both have analog input channels and calculated channels.  And I've mixed and matched the data acquisition tasks with no change (the good VI Logger task will run with either data task, the bad VI Logger task won't run with either data task), so I'm pretty sure the problem is in the VI Logger task, and not the data task.  I've also tried importing the 2nd task on its own, as a separate import function, but that gave the same error.
    Thanks for the help in advance,
    Jake

    Hi Spex,
    I can import the VI Logger task OK (from another PC running VI Logger 2.0), but I can't run the task.  I've attached the file.  The "1 channel" task runs OK.  The "x-probe" task starts, takes 1 or 2 data points, then hangs for a few seconds, then pops up the "file not found" error. The data acquisition taks run OK, so I don't think they're the problem.
    This file I've attached includes 2 good data tasks ("1 channel" and xprobe"), 1 good VI Logger task ("1 channel"), and my non-working VI Logger task ("x-probe", which works fine on the PC it was exported from).
    I have also tried exporting the non-working VI Logger task on its own, and it still imports OK, but still doesn't run, and gives the same error.
    Thanks,
    Jake
    Attachments:
    configData1.zip ‏353 KB

Maybe you are looking for

  • Unable to connect SQL State=S1000 [Oracle][ODBC][Ora]ORA-12170:

    Hi all, I have an Windows XP OS with SP3. I have installed the Oracle 11g server. On trying to connect to the ODBC connection, i get the following error message: Unable to connect SQL State=S1000 [Oracle][ODBC][Ora]ORA-12170: TNS: Connect timeout occ

  • Updating resource in planned order using reference characteristics

    hi, Please let me know the table and field to be used to map corresponding field (PLPOD - ARBPL) in ECC. I am trying to update work center in planned order using reference char. Regards, Yogesh

  • Filter Gallery - Halftone Filter Unpredictable

    I've deleted my PS preferences and restarted, and I cannot get this filter to do what is was just doing a day earlier. It doesn't matter what the foreground/background colors are, nor does it matter what the resolution of the file is.  I've experimen

  • Please Help Setting Up RAID!

    I currently own a LaCie Bigger Disk Extreme 2TB external drive, and it's almost full with data from video editing projects. I wish to purchase another identical drive and set them up as a Mirrored RAID so that I will always have an automatic, real-ti

  • 'Repeat Subform for Each Data Item' is greyed out

    Hi there, I need to make a certain subform repeatable but the 'Repeat Subform for Each Data Item' is greyed out.  It's parent subform is not greyed out so I can make this repeatable but this is not the requirement. Is there another setting that preve