Help - error message when trying to run a program....

Getting this error message - been trying to load and get jforge going, but I'm sure this is a standard problem.
I'm trying to run this on WindowsXP Pro. Could this be an issue? Do I need any sort of plud-in for XP?
D:\software\jforge\jforge3j2>set CLASSPATH=D:\software\jforge\jforge3j2\jforge.jar;D:\software\jforge\jforge3j\public.jar;D:\software\jforge\jforge3j2\calpahtml.jar;;.
D:\software\jforge\jforge3j2>java com.tektools.jforge.JForgeMain
Exception in thread "main" java.lang.NoClassDefFoundError: javax/swing/JFrameBea
nInfo
at com.tektools.beaninfo.proxies.JDialogProxyBeanInfo.getIcon(JDialogPro
xyBeanInfo.java)
at com.tektools.jforge.loadedbeans.DefaultLoadedBean.<init>(DefaultLoade
dBean.java)
at com.tektools.jforge.loadedbeans.DefaultLoadedBeansManager.a(DefaultLo
adedBeansManager.java)
at com.tektools.jforge.loadedbeans.DefaultLoadedBeansManager.readBeansFi
le(DefaultLoadedBeansManager.java)
at com.tektools.jforge.JForgeMain.g(JForgeMain.java)
at com.tektools.jforge.JForgeMain.a(JForgeMain.java)
at com.tektools.jforge.JForgeMain.main(JForgeMain.java)

Those slashes in the first line of the error message suggest to me that maybe you referred to a class incorrectly in your source code.

Similar Messages

  • Unable to update itunes. help. error message when trying to update to latest version of itunes. "the installer has encountered an unexpected error installing this package. this may indicate a problem with this package. error code 2721"

    unable to update itunes. help. error message when trying to update to latest version of itunes. "the installer has encountered an unexpected error installing this package. this may indicate a problem with this package. error code 2721"

    Hello chae84swangin,
    I recommend following the steps in the article below when getting an error message trying to install iTunes:
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Error Message when trying to run Applications Module in OA Framework

    Below is the message that I received when trying to run my Applicaitons Module in test mode. When I click the error message I navigate to "public class TpcApBanksEOImpl extends OAEntityImpl". I was told to put "abstract" before "class" and to run it. It did compile after that, but I was wondering if anyone could tell me why.
    Error(12,8): class test_xxtpc.bc4j.TpcApBanksImpl should be declared abstract; it does not define method setLastUpdateLogin(oracle.jbo.domain.Number) in class oracle.apps.fnd.framework.server.OAEntityImpl

    User,
    Basically, an abstract method is a method in a class where just the signature is defined, and no implementation is provided. What you are being told by the compiler is that the method setLastupdateLogin is abstract, meaning that neither TpcApBanksImpl nor OAEntityImpl nor any of it's parents implement that method; therefore, your TpcApBanksImpl must be declared abstract.
    Hope this Helps,
    John

  • Mscorsvw error message when trying to run Exchange 2013 CU 8

    I'm getting this error when trying to run CU 8 on our Exchange 2013 server.
    How to make it not happen??
    Is there any way to find out how/where this process is running so it can be closed??
    Thank you, Tom

    Hi,
    How are things going?
    Mscorsvw.exe is a component of Windows, and is otherwise known as the .NET Framework Optimization Service. It optimizes your machine to launch apps faster. Once it's done, it will go away.
    Resolution:
    By using sevices.msc, verify that no service is in “Starting pending” state.
    More information about mscorsvw.exe
    http://blogs.msdn.com/b/dotnet/archive/2013/08/06/wondering-why-mscorsvw-exe-has-high-cpu-usage-you-can-speed-it-up.aspx
    Best Regards.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Lynn-Li
    TechNet Community Support

  • Getting "java.lang.NullPointerException" error message when trying to run an OATS OpenScript file from Eclipse to Create a record in Oracle EBS

    Hello,
    I'm trying to run a simple OpenScript script in Eclipse that creates a record (a Supplier in this case) in Oracle E-Business Suite. So I copied the the script file from OpenScript and created it as a Class in Eclipse.  Then I created a main class to call the methods within the script class but no matter what method I call (initialize, run or finalize) I'm getting the java.lang.NullPointerException message. The error doesn't seem to be related with any specific line in the script but with the way that I'm calling it.
    Should I call the OpenScript class from my main class in a different way? (see my examples below)
    BTW, all external .jar files coming with OATS have been added to my project in Eclipse.
    1) Here's the main class I created to call the OpenScript method (Eclipse auto-corrected my main class adding a Try and Catch around the method call):
    public class Test {
        public static void main(String[] args) {
            nvscript nvs = new nvscript();
            try {
                nvs.initialize();
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
    2) Here's the script from OpenScript (the actual script has more steps but I'm just using the first one for a proof of concept):
    import oracle.oats.scripting.modules.basic.api.*;
    import oracle.oats.scripting.modules.browser.api.*;
    import oracle.oats.scripting.modules.functionalTest.api.*;
    import oracle.oats.scripting.modules.utilities.api.*;
    import oracle.oats.scripting.modules.utilities.api.sql.*;
    import oracle.oats.scripting.modules.utilities.api.xml.*;
    import oracle.oats.scripting.modules.utilities.api.file.*;
    import oracle.oats.scripting.modules.webdom.api.*;
    import oracle.oats.scripting.modules.formsFT.api.*;
    import oracle.oats.scripting.modules.applet.api.*;
    public class nvscript extends IteratingVUserScript {
        @ScriptService oracle.oats.scripting.modules.utilities.api.UtilitiesService utilities;
        @ScriptService oracle.oats.scripting.modules.browser.api.BrowserService browser;
        @ScriptService oracle.oats.scripting.modules.functionalTest.api.FunctionalTestService ft;
        @ScriptService oracle.oats.scripting.modules.webdom.api.WebDomService web;
        @ScriptService oracle.oats.scripting.modules.applet.api.AppletService applet;
        @ScriptService oracle.oats.scripting.modules.formsFT.api.FormsService forms;
        public void initialize() throws Exception {
            this.getSettings().set("formsft.useformsonly",true);
            browser.launch();
        public void run() throws Exception {
            beginStep(
                    "[1] E-Business Suite Home Page Redirect (/ebs12cloud.winshuttle.com:8000/)",
                    0);
                web.window(2, "/web:window[@index='0' or @title='about:blank']")
                        .navigate("http://ebs12.xxxxxxx.com:8000/");
                web.window(4, "/web:window[@index='0' or @title='Login']")
                        .waitForPage(null);
                    think(4.969);
                web.textBox(
                        7,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:input_text[@id='usernameField' or @name='usernameField' or @index='0']")
                        .setText("winshuttle_user");
                    think(2.0);
                web.textBox(
                        8,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:input_password[@id='passwordField' or @name='passwordField' or @index='0']")
                        .click();
                    think(1.109);
                web.textBox(
                        9,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:input_password[@id='passwordField' or @name='passwordField' or @index='0']")
                        .setPassword(deobfuscate("kjhkjhkj=="));
                    think(1.516);
                web.button(
                        10,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:button[@id='SubmitButton' or @value='Login' or @index='0']")
                        .click();
            endStep();
        public void finish() throws Exception {       
    3) Here's the error messages I'm getting based on the method I call from my main class:
    3.a) when calling Initialize():
    java.lang.NullPointerException
        at oracle.oats.scripting.modules.basic.api.IteratingVUserScript.getSettings(IteratingVUserScript.java:723)
        at nvscript.initialize(nvscript.java:22)
        at Test.main(Test.java:9)
    3 b) when calling Run():
    java.lang.NullPointerException
        at oracle.oats.scripting.modules.basic.api.IteratingVUserScript.beginStep(IteratingVUserScript.java:260)
        at nvscript.run(nvscript.java:30)
        at Test.main(Test.java:9)
    Any help and/or constructive comment will be appreciated it.
    Thanks.
    Federico.

    UPDATE
    Compiling from command line I found out that the class definition for oracle.oats.scripting.modules.basic.api.IteratingVUserScript is missing. Do you know what .jar file contains this class?
    Thanks.
    Fede.

  • Please Help - Error message when trying to open itunes

    Hi
    Can someone help pls? I was in the middle of upgrading my version of itunes and my computer crashed. Now when I try to open itunes I get an error message as follows: 'iTunes has encountered a problem and needs to close. We are sorry for the inconvenience'.
    I don't know what to do! I am worried I have lost all of my music!?

    hiya!
    'Quick time failed to initialize. Error # - 2095. Please make sure QuickTime is properly installed on this computer'.
    okay, let's try a careful standalone QT reinstall:
    download and save a copy of the QT 7.1 standalone installer to your hard drive. (we'll run the install from there rather than online.) switch off antivirus and antispyware applications prior to the install.
    Quicktime 7.1 Standalone Installer
    if that install goes through okay, does your itunes launch properly again?
    (if you get an error message on the QT standalone reinstall, let us know what it says. include error message numbers if you're getting any.)
    love, b

  • Internal Error message when trying to run adobe reader 9

    I downloaded and installed the new adobe reader 9. When I run it I get 'internal error' error message and now can't access any of my documents and my assignments were due in today.
    I was hoping that version 9 would have fixed the peculiarities around a. column reading (it doesn't recognise them and reads as if they are a single line) b. the enforced change in font when moving between 400% AND 800% magnification where it suddenly changes from my proportional font (Times New Roman) to a fixed font which makes reading impossible.
    Hey adobe please make your software accessible to ALL people so I can complete re-training via my post graduate diploma and become a tax payer again!!
    I am running on a 17" MacBook Pro 2.5 GHz Intel Core 2 Duo with 2GB RAM. Mac OS 10.5.4 and I also had a copy of version 8 installed.
    Anyone come across this issue and found out what's happening and a work around??
    kind regards
    Elaine

    Elaine,
    As a professor, I'd like to say that you shouldn't wait for the last
    minute---but I won't since it is not helpful. As a mac user, you have
    the Apple Preview program that will open most pdf files with no issue.
    In terms of column reading, unless a document is appropriately tagged,
    Reader has no method of knowing that the document has columns or where
    they are.
    Reader never changes font when the magnification is changed. Something
    else is going on.
    It sounds as if you need to remove Reader and try to re-install. If that
    doesn't work, perhaps there is a preference file problem. You can check
    this possibility by running as a different user.
    Mike

  • Error message when trying to run the Upgrade for Itunes

    I got a new laptop and to transfer my Itunes I downloaded the latest version of Itunes from the website (v7)
    When I try to run the upgrade on my new laptop I get the error message - *This installation package could not be opened. Verify that the package exists and is accessible, or contact the application vendor to verify that this is a valid Windows Installer package.*
    Can anyone help me and give me advice on how to get my itunes upgraded!!!!! I miss my tunes!

    Did you ever figure out the problem? "Contact Software Manufacturer"?? That sounds ominous... I've got the same issue and I'm pretty durn aggravated right about now....
    Thanks!

  • Java Web Start error message when trying to run vSphere1.2 compliance checker

    It installed fine but a javaws usage message displayed when attempting to run. Seems like this might be some kind of Java environment problem on the Windows 7 Pro desktop. Not very familiar with Microsoft, any ideas and/or suggestion?.

    Thanks for your suggestions, I will look into them.
    One assumption I made is since the install completed without incident the program was able to locate any needed resources.
    Another assumption is since I received an error message from javaws then itself was being located - just lacking something else it needed.
    Ran javaws from command prompt, received same usage message. Apparently using 64 bit 1.7.0_13, didn't see a Java folder in the 32 bit Program Files so would that be the problen? That 32 bit Java version is needed to run this?  Java Web State 10.13.3.20-fcs.
    I'm the administrator of the system, so privilege is not an issue
    In Properties/Shortcut, verified that the .jar file was pathed correctly
    Target ->  "C:\Program Files\Java\jre7\bin\javaws.exe" -jar "C:\Program Files (x86)\VMware\VMware Compliance Checker for vSphere\vmcc.jar"
    Start in -> "C:\Program Files (x86)\VMware\VMware Compliance Checker for vSphere\"

  • Error message when trying to run

    Error message
    Hi,
    I just downloaded and installed Java 2 SDK 1.3.1 a few days ago.
    From the online tutorial>Your First Cup of Java, I read and did the first application
    HelloWorldApp create, compile and run, it worked.
    Then I did the applet HelloWorld and it worked. (though when I first ran appletviewer I got a message "Warning: Can't read AppletViewer properties file: C:\WINDOWS\Profiles\Lisa001\.hotjava\properties Using defaults." But haven't got the message since. It's working fine.)
    The next day when I went to run the program C:\java>java HelloWorldApp
    it wouldn't run. I keep getting an error message "Error opening registry key 'Software\JavaSoft\Java Runtime Environment'
    Error: could not find java.dll
    Error: could not find java 2 Runtime Environment."
    I don't know what to do. Any suggestions?

    Do you mean reinstall jdk? I was thinking of that, but the files are on my computer I looked them up under files and folders. And the program did run 2 days ago.

  • Error message: When trying to run iTunes

    I've just installed iTunes and I'm trying to run it, but every time i 'Agree' to the iTunes Software Liscence Agreement, I get an error that states,
    "The folder "iTunes" cannot be found or created, and is required. The default location for this folder is inside the "My Music" folder.
    I've tried making a folder inside my My Music folder, named iTunes, but the problem still persists.

    Did you ever figure out the problem? "Contact Software Manufacturer"?? That sounds ominous... I've got the same issue and I'm pretty durn aggravated right about now....
    Thanks!

  • Getting error message when trying to run Shockwave Player Setup

    Can not get a proper installation.  This is my error message.  What should I do?  My system has all the necessary requirements.

    Moving this discussion to the Macromedia Shockwave Player forum.  In addition Kolya22 the image you tried to include is not visible.

  • Error message when trying to run Apache Web Server from OSX 10.3.9

    Hi there
    I accidently deleted the index.html file, and upon replacing it, I get the message "Forbidden
    You don't have permission to access /~fourdcmac/ on this server.
    Apache/1.3.33 Server at 4.local Port 80"
    I have tried repairing permissions using Disk Utility, and manuall checking the permissions on the file against the same file on other machines.
    Any ideas anyone??
    Thanks
    Macfool

    I think the problem is that typically in Apache if you don't have an index.html file then the server will display a listing of files in its directory. This is controlled by having an "Options Indexes" directive in the configuration file httpd.conf.
    If your permissions on the folder in question don't allow you to read the folder contents, then if your index.html is missing this error may come up.
    Also, if you don't have an index.html file, and you have "Options -Indexes" then you will not be allowed to browse the folder.
    Your best bet is to create a new index file.

  • Error message when trying to run free developer edition of ColdFusion

    When I try to run the free developer edition, I get an a window that say: Please select another location to extract the installer to.  When I click on Choose and choose a folder, I'm sent back to this same window. 
    Help me install the free developer edition of ColdFusion.  Thx.

    You're asking your question in the wrong forum. This is the CFBuilder forum.
    You should ask your question in the CF Getting Started forum:
    http://forums.adobe.com/community/coldfusion/coldfusion_getting_started
    Or perhaps the CF Admin forum, if you get no answer there:
    http://forums.adobe.com/community/coldfusion/coldfusion_administration
    /charlie

  • Error message when trying to run check device credential job

    unable to run check device credintial job. says to check cda.log:

    You're seeing CSCte49301.
    Symptom:
    The EssentialsDM daemon hangs in a Waiting to initialize state (as seen in the output of the pdshow command).  Additionally, one might see "Error connecting to JRM" in Resource Manager Essentials applications.
    Conditions:
    This occurs on Windows servers after the patch for KB968930 is installed, and only if the Windows Remote Management service was started prior to starting CiscoWorks Daemon Manager.
    Workaround:
    Shutdown CiscoWorks Daemon Manager with the following command from the server's command prompt:
    net stop crmdmgtd
    Delete the following two files:
    NMSROOT\MDC\tomcat\webapps\rme\WEB-INF\lib\ctmregistry
    NMSROOT\MDC\tomcat\webapps\rme\WEB-INF\lib\ctmregistry.backup
    Restart CiscoWorks Daemon Manager with the following command:
    net start crmdmgtd
    If that does not work, then the Windows Remote Management service must be stopped, and disabled.  Then, CiscoWorks Daemon Manager must be restarted.

Maybe you are looking for