Blank workspace, cannot find waveform

Adobe audition 5.5 on Windows 7 64 bit.
I can load wavefile but cannot see the waveform.

Hmm... whole display looks wrong. Try reinstalling the software.

Similar Messages

  • I actually need help but cannot find the answer. Please.......Lately when open a new tab it does not open with a blank page. I don't want to set my homepage as

    I actually need help but cannot find the answer.
    Please.......Lately when open a new tab it does not open with a blank page. I don't want to set my homepage as blank as when I first open Firefox, it automatically loads my hotmail page. But then if I open other pages I don't get a blank page. Help, please?
    Thank you.
    ''[Personal information removed by moderator. Please read [[Forum and chat rules and guidelines]], thanks.]''

    hello, please refer to [[New Tab Page – show, hide and customize top sites]] in order to switch the feature off.

  • Cannot find new instances in the workspace

    I use BPM Standalone 10g and Studio 10g.
    I create a process without a global creation activity and deploy as well as publish it in the BPM Standalone.
    The process just has one activity named Interactivejcooper. Its main task is set to Method.
    I also create a JAVA PAPI to create new instances of this process. It can create new instances.
    However, I cannot find all new instances created by PAPI in the workspace.
    The following code is in the PAPI.
    --------------------code------------------------
    package piic;
    import fuego.lang.ConnectionPassport;
    import java.util.Properties;
    import fuego.papi.Arguments;
    import fuego.papi.CommunicationException;
    import fuego.papi.InstanceInfo;
    import fuego.papi.ProcessService;
    import fuego.papi.ProcessServiceSession;
    import fuego.papi.OperationException;
    import java.util.Properties;
    public class Class1 {
    public Class1() {
    public static void main(String[] args) throws CommunicationException, OperationException {
    Class1 class1 = new Class1();
    Properties configuration = new Properties();
    configuration.setProperty(ProcessService.DIRECTORY_ID, "default");
    configuration.setProperty(ProcessService.DIRECTORY_PROPERTIES_FILE, "D:\\BPM_HOME_standalone\\webapps\\papiws\\WEB-INF\\directory.xml");
    configuration.setProperty(ProcessService.WORKING_FOLDER, "/tmp");
    ProcessService processService = ProcessService.create(configuration);
    ConnectionPassport passport = processService.createPassport("jcooper");
    passport.setPassword("welcome1");
    passport.fillPassport();
    ProcessServiceSession session = processService.createSession(passport, "localhost");
    for (String processId : session.processesGetIds()) { 
    System.out.println("\n ProcessID: " + processId);
    String processId = "/Processwithoutglobalstart";
    String argumentName = "MyArgument";
    Object argumentValue = new Object();
    Arguments arguments = Arguments.create();
    arguments.putArgument(argumentName, argumentValue);
    session.processCreateInstance(processId, arguments);
    System.out.println("49-----------");
    for (String processId2 : session.processesGetIds()) { 
    System.out.println("\n ProcessID: " + processId2);
    for (InstanceInfo instance : session.processGetInstances(processId2)) {
    System.out.println(" instance.getId()-> " + instance.getId());
    System.out.println(" activity.getActivityId()-> " +instance.getActivityId());
    System.out.println(" activity.getActivityName()-> " +instance.getActivityName());
    session.close();
    processService.close();
    ----------------------println----------------------------------
    E:\Jdeveloper10131_20090318\jdk\bin\javaw.exe -client -classpath E:\Jdeveloper10131_20090318\jdev\mywork\PAPInewInstancewithoutCreation\Project1\classes;D:\BPM_HOME_standalone\client\papi\lib\b1util.jar;D:\BPM_HOME_standalone\client\papi\lib\b1oracle.jar;D:\BPM_HOME_standalone\client\papi\lib\b1base.jar;D:\BPM_HOME_standalone\client\papi\lib\fuegopapi-client.jar piic.Class1
    Creating connector [fuego:SQL]
    Creating ProcessService with id 'oracle/2009-03-31 18:08:47+08:00'.
    Creating local folder: /tmp\system\Schema3387192-1796619082\catalogs
    Loading catalogs from local folder: /tmp\system\Schema3387192-1796619082\catalogs
    0 jars found locally.
    [CatalogMgrCache] =======================
    Registering CatalogMgr [oracle/2009-03-31 18:08:47+08:00] ...CatalogManagerCache 1465214:
    Managers:
    Counters:
    [CatalogMgrCache] =======================
    CatalogMgr [oracle/2009-03-31 18:08:47+08:00] REGISTERED!CatalogManagerCache 1465214:
    Managers:
    {oracle/2009-03-31 18:08:47+08:00=fuego.util.LocalCatalogManager@1d0d124}
    Counters:
    ProcessService 'oracle/2009-03-31 18:08:47+08:00' created successfully.
    ProcessID: /InvokeJava2#Default-1.0
    ProcessID: /Process#Default-1.0
    ProcessID: /ProcessB#Default-1.0
    ProcessID: /Processwithoutglobalstart#Default-1.0
    ProcessID: /Testprocess#Default-1.0
    Unreachable Engine Tolerance (seconds):
    by default: 0
    to be used: 0
    This papi client will not cache exceptions which imply that an engine could not be reached.
    Adding local catalog for project: 163
    Processing the synchronization information, instance '163:247:0' was created.
    49-----------
    ProcessID: /InvokeJava2#Default-1.0
    instance.getId()-> /InvokeJava2#Default-1.0/242/0
    Adding local catalog for project: 162
    activity.getActivityId()-> /InvokeJava2#Default-1.0/tojava
    activity.getActivityName()-> tojava
    ProcessID: /Process#Default-1.0
    ProcessID: /ProcessB#Default-1.0
    ProcessID: /Processwithoutglobalstart#Default-1.0
    instance.getId()-> /Processwithoutglobalstart#Default-1.0/243/0
    activity.getActivityId()-> /Processwithoutglobalstart#Default-1.0/Interactivejcooper
    activity.getActivityName()-> Interactivejcooper
    instance.getId()-> /Processwithoutglobalstart#Default-1.0/244/0
    activity.getActivityId()-> /Processwithoutglobalstart#Default-1.0/Interactivejcooper
    activity.getActivityName()-> Interactivejcooper
    instance.getId()-> /Processwithoutglobalstart#Default-1.0/247/0
    Session 'jcooper7676692326836000001' has been closed.
    activity.getActivityId()-> /Processwithoutglobalstart#Default-1.0/Interactivejcooper
    activity.getActivityName()-> Interactivejcooper
    instance.getId()-> /Processwithoutglobalstart#Default-1.0/246/0
    activity.getActivityId()-> /Processwithoutglobalstart#Default-1.0/Interactivejcooper
    activity.getActivityName()-> Interactivejcooper
    instance.getId()-> /Processwithoutglobalstart#Default-1.0/245/0
    activity.getActivityId()-> /Processwithoutglobalstart#Default-1.0/Interactivejcooper
    activity.getActivityName()-> Interactivejcooper
    ProcessID: /Testprocess#Default-1.0
    [CatalogMgrCache] =======================
    Unregistering CatalogMgr [oracle/2009-03-31 18:08:47+08:00] ...CatalogManagerCache 1465214:
    Managers:
    {oracle/2009-03-31 18:08:47+08:00=fuego.util.LocalCatalogManager@1d0d124}
    Counters:
    {oracle/2009-03-31 18:08:47+08:00=1}
    [CatalogLoaderMgr] unregisterCatalogMgr freeing resources of LocalCatalogManager
    [CatalogMgrCache] =======================
    CatalogMgr [oracle/2009-03-31 18:08:47+08:00] UNREGISTERED!CatalogManagerCache 1465214:
    Managers:
    Counters:
    Process exited with exit code 0.

    I don't know what happens. It works after I restart BPM studio in 2 hours.

  • I would like my "ruler"/axis to show on my workspace however I cannot find show to make it visible.

    I would like my "ruler"/axis to show on my workspace however I cannot find show to make it visible.

    View > Rulers?
    Could you please post a screenshot to illustrate the issue?

  • Murder on the Airport Express (AE 1st Gen cannot find Wireless while plugged in in the same room as the modem, router and Time Capsule

    First, the reason for my compounded frustration:
    I wrote a lengthy, comprehensive post on this late last night.  I submitted it and received a notice at this URL:
    https://discussions.apple.com/___sbsstatic___/maintenance.html?start=0&tstart=0
    It gave a message:  "A yellow sticky bearaing the words, "We'll be back soon."  and a typed message reading, "We are busy updating Apple Support Communities for you and will be back shortly."  Needless to say, it never came back.  This morning as I began trying to reconstruct the very detailed post I wrote last night, the Communities system offered me an opportunity to restore the post from last night.  Sadly, it contained only a portion of the first line.
    I'm going to try it again.  The problem inherent in putting it all in words last night, is that I no longer remember the exact wording of the error messages.
    I've never gotten this Airport Express (1st gen, purchased mid 2010) to work.  I thought it was working, but working poorly.  A green light on the device is, apparently, NOT an indication of connection to the wireless.  It wasn't workingl.
    Description of devices which use the network:
    I have a Broadband network with a modem. 
    It is connecteed to my 2T Timecapsule (purchased mid 2010). 
    Connected to that is a 24 port Cisco Router. 
    Not connecting to that, though showing a solid green light, is my Airport Express (1st Generation, purchased mid 2010)
    Connected to the router are many ethernet cables giving hard-wired access to:
    Printers (HP 8600 Pro purchased 2012))
    MacBook Pro (purchased mid 2010) and
    IMAC (purchased mid 2010).
    3 Apple TV devices (1st generation purchased early 2011)
    1 Apple TV device (2nd generataion purchased August 2012)
    Connecting to the Wireless Network are IOS devices (current IOS versions on all)
    iPad 2nd generation (purchased the day it was available) 
    iPad 3rd generation (purchased the day it was available)
    iPod (mid 2010)
    iPhones (4S)
    Description of Layout of Network/House
    My home is approximately 70 feet by 25 feet. 
    All Networking hardware is at one end of the house, the south side.
    Airport Express (1st Gen, 2010) has been placed in the middle of the house to boost the wireless access at the north end of the house.
    Ethernet cables are installed under flooring with cable ends extending up through flooring, and are availble to all devices with Ethernet ports..
    Description of Problem
    Investigation of the wireless access dysfunction with the iPad (2nd generation, mid 2010)  revealed no connection to the Wireless Network, in spite of glowing green light on Airport Express and Airport Utility screen.
    Description of actions taken to correct the problem
    Loaded Airport Utility on MacBook Pro.
    Airport Express shows green light on screen.
    Double clicked on Airport Express Icon
    Message that Airport Express was unable to extend the network
    Message changes suddenly to something about not finding the Airport Express
    Airport Utility searches Airport Express, attempting to read its settings
    Message appears:  Device not found.  Airiport Express was previously part of the network, and offers to let me "forget" the base station.
    I exit the error message.
    A yellow triangle bearing an exclamation point sits to the left of the Airport Express' Description
    Airport Express shows green light (as always)
    Clicking the link, "Other AirPort Base Stations" indicates no base stations can be found.
    Moved Airport Express to the room at the south end of the house containing all network devices
    Plugged it in with clear, completely unobstructed view of Time Capsule.
    Light on Airport Express flashes yellow and then turns solid green (like always)
    Bring Mac into the room at the south end of the house containing all network devices and the Airport Express with the green light
    Close Airport Utility on Mac
    Reboot Mac
    Open Airport Utility on Mac
    Airport Express still shows as it did in 1.1.7. above.
    Attempts to check Airport Express' access to Wireless network:
    Unplugged Airport Express HEY!  THE GREEN LIGHT WENT OUT!!!  ;0)
    Disconnected all Ethernet cables.
    Tested ALL devices for Wireless access.
    All devices access the Wireless network extremely well (dot and three curved bars) EXCEPT
    IOS Devices tested at the north end of the house. These devices show a blank where the wireless bars should be, and intermittently show a dot.
    Followed instructions contained in a similar discussion about Airport Express not functioning:
    Unplugged all Networking Hardware
    Powered off all Equipment which access the Internet in any possible way.
    Powered up all Networking Hardware, one at a time, in the order described in that discussion.
    Powered up all Equipment which access the internet, one at a time.
    Tested ethernet cablingAll equipment functioning.
    Tested Wireless access:
    Removed all ethernet cabling
    All devices, including IOS devices, access the Wireless Network perfectly EXCEPT any placed in the north end of the house.  Those perform exactly as they did in step 3.3.2.
    Connected all ethernet cabling.
    Plugged Airport Express into socket in the Network Hardware room at the south end of the house.  I get exactlyt the same results as before.  The lovely green light glows on the Airport Express.  Airport Utility reports Airport Express cannot find the Wireless network and also says there are no base stations connected to the internet.
    Still in Network Hardware room, I attempt to find other base stations by cabling the Airport Express to the MacBook Pro
    Airport Utility shows Airport Express with a green light
    I double click the Airport Express Icon
    Box says connection is average and status is (green light) Extended Network.
    I click Edit
    I go through each tab.  I note that in the Wireless tab, the Network Mode is as I had set it, "Extend a wireless network".
    Under the Network tab I note that "Enable Access Control" is as it should be, NOT selected. 
    Under the AirPlay tab, I note that "Enable airPlay" is selected.
    I click cancel and leave the Edit screens.
    Curious to know if Airport Express can find the Wireless network now that the device claims to be functioning as an extended wireless network, I disconnect the ethernet cable from the Airport Express.
    I watch the Airport Utility screen closely.  Nothing is happening.
    With bated breath, I double click on the Airport Express icon.
    The popup box shows "extended wireless network"
    I click on edit and we start the whole mess over again.  (See 1.1-9. above)
    Curious to know if cabling the Airport Express to the iMac (almost to middle of house) will offer hope and prosperity to IOS devices at north end, I unplug the Airport Express and carry its now-exhausted little body to the iMac, ethernet cable in hand.
    As I unplug the iMac from its ethernet access, I'm informed by Cranky Boy that no way is he going to accept that as a reasonable solution to his problem.  He will not live wireless while even one ethernet cable is poking up through a floorboard.
    Cranky Boy is reassured when informed that, though the Airport Utility shows the Airport Express connected, merely double clicking on the icon produces the same result as laboriously described in 1.1-9. above.
    After quieting Cranky Boy by reconnecting the iMac to the Ethernet, I return the Airport Express to the Network Hardware room.
    Again, curious to know ...  I reconnect the Airport Express to the MacBook Pro. I want to know if it will exrtend the Wireless network from its position one foot from the Wireless Network.
    I close and reopen Airport Utility (as I always do, but forgot to write)
    I click on the Airport Express icon (which bears a little green light like the other big boys).
    BUT THIS TIME, when I click on the Airport Express icon, the pop-up box says my connection is Excellent, the green light status shows, "Extended Network" and clicking on "Extended Network" produces the same old `Airport Express was unable to extend the Wireless Connection. 
    I click on the Edit option. 
    I buzz through all the tabs.  I cancel instead of update, leaving everything as it was (as I did the first time)
    I decide to go back into edit and select "Internet Options" under the "Internet" tab.
    Since I have no idea whatsoever as to what IPV6 is and what it governs, I decide to configure IPV6 to Automatically Connect and then, with a whole new set of opportunities, I leave IPV6 Mode set to "Tunnel" and then I learn that I will get to see what happens when  "Enable IPV6 Connection Sharing" is enabled.
    I check the other tabs to see if anything has changed in their menus
    Jesus Saves and so did I. 
    Apple updates and so did I.
    I am warned that my device and its network services will be temporarily unavailable if I continue. 
    It seems unaware that I am laughing uncontrollably at the suggestion that my device and its services will be TEMPORARILY AVAILABLE.  What?  An improvement in performance is warned?
    Life continues and so do I.
    I breathe deeply to decrease my adrenaline.
    Airport Utility flashes a red warning next to the Airport Express Icon and then quickly rethinks the matter and decides to show it as connected.
    I click on the Airport Express Icon.  This time my connection is only "good".
    I click on Extended Network. With a new-found consistency it informs me that my device is unable to extend the Wireless network and it chats with me about using the same Wireless password for my device that is used for the Wireless network access.  I did.  It is.
    I change my settings back to the way they once were, I save like Jesus and Update like Apple
    I decide to go back into Edit and modify the settings under the Wireless tab, changing from "Extend Wireless Network" to "Join Wireless Network".
    I save.
    I click on the Airport Express Icon.  My connection has degraded further to "Average"
    I click on edit just to see what will happen, but no further information is forthcoming.  Settings are as I left them.
    I wonder if the Airport Express would extend itself now that it has joined the Wireless Network.
    I click the Airport Express Icon.
    I click Edit
    I change the Network Mode from "Join a Wireless Network" to Extend a Wireless Network. Unfortunately, there was no option for "don't forget where the Wireless Network is!"
    I am still "unable to extend the Wireless network"
    I disconnect the Airport Express from my MacBook Pro.
    After closing and opening Airport Utility, I sit and stare at the Airport Express Icon.
    It has no light or error messages
    It has a yellow triangle with exclamation point
    It has no light or error message
    It has a yellow triangle with exclamation point
    I finally decide to see what THIS error messages says.  It says Device Not Found.  Patti Harada's AirPort Express was previously part of your network.  Check that it is still in range of your network and is plugged into a power outlet.  Click Forget to remove this base station from this network."
    I click "Forget".  Airport Utility has forgotten the Airport Express ever existed.  It has also forgotten how to find it again.
    I, however, am unable to forget how much I shelled out for this POS and fear I will never recover from working this intensely and tediously on documenting something so hideously inconsistent in its test results.
    I wonder if I should recable the Airport Express to my MacBook Pro
    I decide I've had about enough.
    I document this ad nauseum in the hopes that someone can read it THOROUGHLY and offer me a solution to my problem.  What is my problem?  I am so busy fighting off Alligators that I forgot I only came in to drain the swamp!  Ah, but I remember now:  Cranky Boy can't watch Netflix on his iPad (2nd generation) in the north end of the house.
    Any solution that works will do.  I'll buy another piece of whatever kind of equipment you think best.

    Well, aren't you all that and a bag of chips!!!!
    Oh what a relief!  What a RELIEF!  
    That just cleaned up my life.  And Cranky Boy is actually smiling!!!
    Houston, we've got dots AND BARS!!!
    P.S.  All my firware and software are always current.  If I spent as much time looking for a reset button as I spend checking for software updates, I mighta not needed to work at this!!!!
    P.P.S.  Airport Utility shows Cranky Boy's iPad as the Airport Express' Wireless Client!!!   Who knew?
    Thank you so much, m'Lord.  I am in your debt.  What would you have me do?
    Patti in Tucson AZ

  • Java.lang.Error: java.util.zip.ZipException: The system cannot find the fil

    I got maven 221 installed
    i got jdk 1.6 and 1.5 installed (have tested both)
    I have a strange error. All my co-workers can build but I cant. The only thing I can find is that I dont have installed BEA Weblogic but I dont want to have that installed. It should be able to run anyway.
    Could someone tell me what is wrong? If you need pom.xml I got that one as well.
    process-classes:
    [copy] Copying 4 files to C:\hudson\jobs\albpm_ip-identity-asserter_-_Build\workspace\target\mbean-content
    [mkdir] Created dir: C:\hudson\jobs\albpm_ip-identity-asserter_-_Build\workspace\target\mbean-jar
    [java] Creating an MJF from the contents of directory C:\hudson\jobs\albpm_ip-identity-asserter_-_Build\workspace\target\mbean-content...
    [java] Compiling the files...
    [java] Creating the list.
    [java] Doing the compile.
    [java] WLMaker-SubProcess: : Exception in thread "main" java.lang.Error: java.util.zip.ZipException: The system cannot find the file specified
    [java] WLMaker-SubProcess: :      at weblogic.management.commo.BeanGenDriver.getManagementTempDir(BeanGenDriver.java:93)
    [java] WLMaker-SubProcess: :      at weblogic.management.commo.BeanGenDriver.main(BeanGenDriver.java:117)
    [java] WLMaker-SubProcess: : Caused by: java.util.zip.ZipException: The system cannot find the file specified
    [java] WLMaker-SubProcess: :      at java.util.zip.ZipFile.open(Native Method)
    [java] WLMaker-SubProcess: :      at java.util.zip.ZipFile.<init>(ZipFile.java:203)
    [java] WLMaker-SubProcess: :      at java.util.jar.JarFile.<init>(JarFile.java:132)
    [java] WLMaker-SubProcess: :      at java.util.jar.JarFile.<init>(JarFile.java:97)
    [java] WLMaker-SubProcess: :      at weblogic.management.commo.BeanGenDriver.getManagementTempDir(BeanGenDriver.java:90)
    [java] WLMaker-SubProcess: :      ... 1 more
    [java] WLMaker-SubProcess: : Stopped draining WLMaker-SubProcess:
    [java] WLMaker-SubProcess: : Stopped draining WLMaker-SubProcess:
    [java] BeanGen code generation failed
    [HUDSON] Archiving C:\hudson\jobs\albpm_ip-identity-asserter_-Build\workspace\pom.xml to C:\hudson\jobs\albpmip-identity-asserter_-Build\modules\dk.skat.ip.integration.albpm$ip-identity-asserter\builds\2010-11-2213-41-28\archive\dk.skat.ip.integration.albpm\ip-identity-asserter\1.2\pom.xml
    [INFO] ------------------------------------------------------------------------

    from my experience, using weblogic jars can be a pain if the full install is not on the local box.
    Note that you dont have to 'install' it. Just copy the directory.
    Reason is that the jar files have manifests with relative classpaths.
    For an example of horror take a look at the weblogic.jar MANIFEST's classpath entry.
    -Fred

  • "Windows cannot find the microsoft software license terms" Windows 8.1 Installation Error - Parallels

    I'm trying to install Windows 8.1 via Parallels on my Macbook Pro.
    I create a new VM and use the .ISO file and get the error: "Windows cannot find the microsoft software license terms. Make sure the installation sources are valid and restart the installation."
    I found this question was answered here: http://social.technet.microsoft.com/Forums/windows/en-US/b1021d66-9774-4b5b-b50b-ad860c5ecc89/windows-8-enterprise-rtm-installation-error?forum=w8itproinstall
    However, following the steps of the solution did not work for me. I created a blank VM and chose Windows 8.1. After this, it asks me to insert the installation disc. I cannot figure out how to use the .ISO as the source at this point. I tried copying and
    pasting the path to the file and dragging the file to the VM, but no luck.
    If there is a way I can install this without this error message or by somehow getting the path to the .ISO that'd be perfect.

    Hi,
    According to your description, I would like to confirm if you have unchecked the Express installation box.
    Be sure to uncheck 'Express Installation' when installing, otherwise Windows setup will fail with an error "cannot find license terms" and get stuck in a reboot cycle.
    I suggest you refer to the following link to use Parallels Desktop to install Windows 8.1.
    Using Parallels Desktop to install Windows and the dev tools on your Mac:
    http://msdn.microsoft.com/en-us/library/windows/apps/jj945424.aspx
    Regards,
    Kelvin hsu
    TechNet Community Support

  • On my 1st visit to a certain website, Firefox _very briefly_ asked whether to remember my username and password. I was too slow: the dialog bar disappeared and now, I cannot find where to enter that logon info for my daily returns to that site.

    On only the very first visit to a website, Firefox _very briefly_ shows a "Do you want Firefox to remember this password?" dialog bar at top right of screen.
    The first time that I used Firefox to access this particular, and very often visited site, I missed that dialog bar. It disappeared before I had a chance to mark any one of the three boxes and now, I must enter my log-in information anew at every log-on to that site.
    There _must_ be a way to get Firefox to give me a second chance for entering this info, but I cannot find how.
    Can someone please help?

    After first closing the site's browser window, I cleared the cookies with no problem.
    Next, I opened up the page that is causing my problem. The Microsoft Security window opened up as it should and it was blank.
    The option of whether I was using a public or a private
    computer was blinking on 'public' as it should and I changed that to 'private'.
    The lines for 'Domain/Username' and 'Password" were blank, as they should be at this time.
    I entered whatever I had to on these two lines, then clicked on "log In". At no time, however, did the Firefox toolbar at top of screen (picture file attached) appear and ask whether to remember that password. Yes, the page now opened - and we are back to Square One.
    I am aware that when entering the URL in the address box, a dropdown box opens and contains quite a few URLs identical to the one I am entering just now, or at least connected to pages of the same site.
    I am wondering whether that is what's messing me up? But how can I clear these entries of "websites visited in the past from Firefox's memory?
    In case you would want to see exactly what it is I am talking about, you might go to https://support.ataretail.com

  • The system cannot find the path specified - Problems

    I am having an issue that I am hoping someone can help figure out for me.
    I am currently learning Java, and am working with the Beginning Programming with Java for Dummies book second edition. I have downloaded and am running the Java 6 program and am using the JCreator 3.5Pro that was recommended to run the Practice files for the Dummies book.
    I have the practice files here:
    C/Program Files/Xinox Software/JCreatorV3/My Projects
    While trying to compile one of the practice files, I get this error message:
    --------------------Configuration: MyNewProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    javac: file not found: src_mynewproject.txt (The system cannot find the path specified)
    Process completed.
    **When I try to execute, I get this error message:**
    --------------------Configuration: MyNewProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    java.lang.NoClassDefFoundError: EchoLine
    Caused by: java.lang.ClassNotFoundException: EchoLine
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Could not find the main class: EchoLine. Program will exit.
    Exception in thread "main"
    Process completed.
    When I set up the new file, and the new class, I confirmed the file path.
    I know most people will ask if I am absolutely certain I put in the code in properly, and yes I did. It was a matter of copying word for word, and punctuation. I did it 100% correctly. About 12 times. I have NO idea what this means, but I would REALLY REALLY appreciate any help on this.
    Please keep in mind, I am slightly clueless, and really need to have any help dumbed down a bit. Lol.
    As a side note, this isn't my first project, and I haven't had this problem before now.
    thanks in advance. =)

    So I wanted to clarify what I've done a bit more since I decided to redownload the dummies programs for the program and try again.
    I will try to list my steps in order of what I did and see if I've gone wrong somewhere along the line.
    I downloaded my project files from here: http://ca.dummies.com/store/product/Beginning-Programming-with-Java-For-Dummies-2nd-Edition.productCd-0764588745,navId-322469,descCd-DOWNLOAD.html
    I unzipped them this time here: C:\Program Files\Java\jdk1.6.0_21\MyProjects\
    I opened JCreator 3.5 and starting fresh, with all previous projects deleted and clicked on "Open Workspace". I chose "MyWorkspace.jcw". Right clicked MyWorkspace and chose "Add new Project" and then chose "Empty Project". As per the books instruction for the first project, I named it "MyFirstProject". My file path was: C:\Program Files\Java\jdk1.6.0_21\MyProjects\MyFirstProject. Which is where I upzipped the files. I added it to current workspace and clicked finish.
    I then added a new class. As per the books instructions, I right clicked "MyFirstProject" and selected Add New Class. For the name, I used MyFirstJavaClass, which is what the book told me to do. My locations are the exact same as above. and I clicked on Generate new Method, as it told me to. Which it doesn't in the next few lessons, so I know this has nothing to do with it. For that and a few other reasons. Lol.
    I clicked on Finish.
    All I had to do was replace a single line of code. Not type it all in this time.
    Here is what shows up on the screen:
    class MyFirstJavaClass {
         * Method main
         * @param args
         public static void main(String[] args) {
              // TODO: Add your code here
    I need to change the : // TODO: Add your code here
    with the line:
    System.out.println.("Chocolate, royalties, sleep");
    When I do this, and compile project, I get this:
    --------------------Configuration: MyFirstProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    javac: file not found: src_myfirstproject.txt (The system cannot find the path specified)
    Process completed.
    AGAIN! But it worked a few days ago.
    And when I execute, I get this:
    --------------------Configuration: MyFirstProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    java.lang.NoClassDefFoundError: MyFirstJavaClass
    Caused by: java.lang.ClassNotFoundException: MyFirstJavaClass
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Could not find the main class: MyFirstJavaClass. Program will exit.
    Exception in thread "main"
    Process completed.
    I really hope the extra info helps someone help me!
    thank you!
    Edited by: MissPamela on Jul 19, 2010 3:23 PM

  • Xmlreader schema validation error: Cannot find the declaration of element

    I have multiple schemas with namespaces but I would like to validate an xml document without namespaces. The schemas all have elementFormDefault="unqualified" in the root element.
    I am encountering error below in my validation using xmlreader:
    ERROR:
    Cannot find the declaration of element 'NewTradenetDeclaration'.
    my code is:
    xmlReader = XMLReaderFactory.createXMLReader("org.apache.xerces.parsers.SAXParser");
    xmlReader.setFeature(VALIDATION_FEATURE_ID, true);
    xmlReader.setFeature(SCHEMA_VALIDATION_FEATURE_ID, true);
    xmlReader.setFeature(SCHEMA_FULL_CHECKING_FEATURE_ID, true);
    xmlReader.setFeature(SCHEMA_NAMESPACE_FEATURE_ID, true);
    xmlReader.setProperty(JAXP_SCHEMA_LANGUAGE, XMLConstants.W3C_XML_SCHEMA_NS_URI);
    String schemaURI = "NewTradenetDeclaration.xsd";
    // ive tried all of the ff but throws the same error
    //xmlReader.setProperty(EXTERNAL_SCHEMA_LOCATION, "urn:crimsonlogic:tn:schema:xsd:NewTradenetDeclaration NewTradenetDeclaration.xsd");
    //xmlReader.setProperty(EXTERNAL_SCHEMA_LOCATION, schemaURI);
    xmlReader.setProperty(JAXP_SCHEMA_SOURCE, schemaURI);
    // set entity resolver to resolve xsd locations
    MyResolver resolver = new MyResolver();
    xmlReader.setEntityResolver(resolver);the entity resolver has:
    public InputSource resolveEntity (String publicId, String systemId) {
      String filename =  "c:/workspace/TXParser/schema/"+ systemId.substring(systemId.lastIndexOf("/")+1);
      File f = new File(filename);
      InputSource source = null;
      try {
        source = new InputSource(new FileReader(f));
      } catch(Exception e) {
      System.out.println("InputSource exception: " + e.getMessage());                 
      return source;
    }Help please. Thanks.

    I fight with the same error, it is curious that the schema from schemaLocation can not be validated. If i set the schema manually through an attribute it works. What i try to do is overwriting the resolveEntity in the handler to get the schema from another location and validate the xml against the schema specified in the attribute schemaLocation rather than setting it manually :-(

  • Cannot start HP Pavilion laptop due to Winlogon.dll error cannot find SHLWAPI.dll

    Hello,
    We are getting a winlogon.dll error that it cannot find shlwapi.dll.
    First off, we do not have recover CDs, we do not want to reboot with a complete recovery as we have data we need on this computer.
    We cannot logon at all, it gives the error and then you have to say okay and it stays at a black screen. We have tried repairing from the start up menu, we have tried recovering a previous start up point, we can get to the f8 c prompt but the different commands offered from other website forum tech supports are not recognizable.
    At this point, we are dead in the water. If there were some way to start the computer, get into our pictures, files, etc. to just download and save those then fine we can do a complete new installation.
    Please help.
    Thank you,
    Kelly

    Hi Kelly,
    You need to download and install ImgBurn first.  Then download the Image ( ISO ) for Ubuntu.  When done, use ImgBurn to write the Ubuntu ISO to a blank CD and then just follow the rest of the guide.
    Try the following links for these Two downloads.
    ImgBurn.
    Ubuntu
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Cannot find PDL type for output device LOCL in J1INCRT

    Dear all
    I am getting error in PRD system. When I am running J1INCRT (Customizing for Certificate Printing)  the error
    cannot find PDL type for output device LOCL
    we are using ECC6 ,oracle 10g  and windows 2003
    Kernel release    701
    Please suggest how to solve 
    Regards,
    Kumar

    Hello
    It looks like that you had not installed the ADS(Adobe Document server) for the PDF type reports. Please check with your basis team if you want to configure ADS.
    If you need the output as a sapscript then please do the sollowing steps:
    (1) Execute transaction SM30
    (2) Enter 'Table/View' as V_T5F99OCFT
    (3) Select 'Maintain' option.
    (4) Select 'New Entries' option from the Application Too
    (5) Enter following entries:
         Logical Form Name    = HR_IN_EPF12A_99M
         Form Variant         = (Leave this field blank)
         End Date             = 31.12.9999
         Start Date           = 01.01.1990
         Form Type            = SAP Script (SSC)
         Def. Type            = (This field should be checke
         PDF Form Name        = HR_IN_EPF12A_99M
         SAP Script Form Name = HR_IN_EPF12A_99M
         Smart Form Name      = (Leave this field blank)
    (6) Save the entries
    The above example I have given you is only for the form 12A.
    You have to make entries for all the reports sapscript in this table.
    Please goto SE71 -> F4 -> Payroll -> Payroll India here you will find
    all the sapscripts you require.
    Regards
    Ramana

  • App Module Tester - JBO-33001: Cannot find the configuration file

    I have a custom main function for my application module. Launching the tester is fine
    launchTester("a.b.c.user_mnt.datamodel", "user_mntServiceLocal" );but if I comment out that line and add custom code:
    String amDef = "a.b.c.user_mnt.datamodel";
    String config = "user_mntServiceLocal";
    ApplicationModule am = Configuration.createRootApplicationModule(amDef,config);I get the following error:
    Diagnostics: (BC4J Bootstrap) Routing diagnostics to standard output
    (use -Djbo.debugoutput=silent to remove)
    [00] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
    [01] CommonMessageBundle (language base) being initialized
    [02] Configuration.loadFromClassPath() failed
    [03] Stringmanager using default locale: 'en_US'
    [04] oracle.jbo.ConfigException: JBO-33001: Cannot find the configuration file
    /a/b/c/user_mnt/common/bc4j.xcfg in the classpathBut the bc4j.xcfg exists in
    /a/b/c/user_mnt/datamodel/common/bc4j.xcfgIs there a way to change where Jdev is looking for that file?
    Thank you,
    Brian

    Completely new workspace doesn't fix the problem.
    If I move the common folder to where jdev is looking it runs fine (I get a runtime error, but it runs none-the-less).
    Any help?
    Brian

  • JboException: JBO-33001: Cannot find the configuration file /common/bc4j.xc

    Hello,
    i'm new on this board and found it while i was searching for an solution of my problem.
    I would like to apologize about my english, i try my best.
    Now lets come to my problem.
    I have 1 workspace with 2 projects.
    in project 1 there are entity objects, view objects and an application object.
    in project 2 there are jsp's action classes and form beans (i try to use Struts).
    in one jsp i try this:
    <jbo:ApplicationModule id="am" configname="*.*.*.bc4j.ReportingModule" releasemode="Stateful" />
    <jbo: DataSource id="ds" appid="am" viewobject="*.*.*.bc4j.HilfeTexteView" />
    <select name="TEXT" size="1">
    <option value="-1" selected>sonstiges</option>
    <jbo:RowsetIterate datasource="ds" changecurrentrow="true">
    <option value="<jbo:ShowValue datasource="ds" dataitem="TEXT"></jbo:ShowValue>">
    <jbo:ShowValue datasource="ds" dataitem="AUTOR"></jbo:ShowValue>
    </option>
    </jbo:RowsetIterate>
    </select>
    <jbo:ReleasePageResources releasemode="Stateful" appid="am" />
    compilation finish successful, but when i try to run this jsp, there appear an error like:
    oracle.jbo.JboException: JBO-33001: Cannot find the configuration file /common/bc4j.xcfg in the classpath
    i think it dont work, because the configuration file bc4j.xcfg is in project 1 folder and i try to take it out of projeck 2 folder
    I hope you know what i try to tell you
    i will be very happy, when somebody could help me.
    greetings
    Rene

    Please refer to other posts for the JboException.
    JBO-33001: Cannot find the configuration file /model/common/bc4j.xcfg
    Accessing BC4J ApplicationModule from another Project

  • BUG: JBO-33001: Cannot find the configuration file bc4j.xcfg

    Hi,
    I get the exception JBO-33001: Cannot find the configuration file com\trivadis\adf\demos\login\model\common\bc4j.xcfg in the classpath
    after I have edited the file outside of JDev9052. Why? Because I followed the instructions of the help document "Modifying the JClient Login Dialog for JDBC". To get the JCLoginDialog you have to remove some lines in the bc4j.xcfg file.
    I have deleted the classes directory, rebuild the complete workspace, but I still get the exception.
    Any comments?
    Thanks,
    Markus
    Complete stacktrace:
    oracle.jbo.JboException: JBO-33001: Cannot find the configuration file com\trivadis\adf\demos\login\model\common\bc4j.xcfg in the classpath
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:369)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:272)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:473)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.findOrCreateSessionCookie(DataControlFactoryImpl.java:135)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:220)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:97)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:612)
         at com.trivadis.adf.demos.login.view.FormDeptView1.main(FormDeptView1.java:325)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-33000: Cannot find the configuration file registerConnectionsFromDocument
         at oracle.jbo.client.Configuration.registerConnectionsFromDocument(Configuration.java:1052)
         at oracle.jbo.client.Configuration.loadFromStream(Configuration.java:264)
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:352)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:272)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:473)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.findOrCreateSessionCookie(DataControlFactoryImpl.java:135)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:220)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:97)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:612)
         at com.trivadis.adf.demos.login.view.FormDeptView1.main(FormDeptView1.java:325)
    ## Detail 0 ##
    java.lang.NullPointerException
         at oracle.jbo.client.Configuration.registerConnectionsFromDocument(Configuration.java:1026)
         at oracle.jbo.client.Configuration.loadFromStream(Configuration.java:264)
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:352)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:272)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:473)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.findOrCreateSessionCookie(DataControlFactoryImpl.java:135)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:220)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:97)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:612)
         at com.trivadis.adf.demos.login.view.FormDeptView1.main(FormDeptView1.java:325)

    Repost.
    The original post date was Sep 05 2004, not Aug 17 2001. :-)

Maybe you are looking for