Why console jar program does not run?

Hi,
I built a console application on windows. It works fine when I run it on JBuilder. It has a timer to run the Socket Connection with another server and exchange data for every minute.
I built the archives - both native executable jar file and console exe file.
I run it in console window. It can display the first print line of the program: "Starting Data Exchange ..."
However, I did not see the data updating in both servers.
The console program seems running from connecting to local DB till printing out Starting Data Exchange ...
I am not sure whether the code insides the timertask has run or not. It is ok when I run it in JBuilder.
So, is it the timer bug or the classpath issue?
What may be the deployment problems?
Thanks for any kind advice.
public class DataEx {
   private static ConnectionPool C;
   static {
       C = PoolManager.getPoolInstance();
   public static void main(String args[])
       System.out.println("Starting Data Exchange ...");
       java.util.Timer clock = new java.util.Timer(true);
       clock.scheduleAtFixedRate(new java.util.TimerTask()
          public void run() {
            DataEx main = null;
            try {
               main = new DataEx();
            } catch (IOException e) {
                 System.out.println("Exception initialising DataEx " + e);
            main.DBConnection(); // Check new data from local DB
            if (!Vector.isEmpty()) {
              System.out.println("There are " + Vector.size() + " numbers of update data.");
              main.dataexchange(); // Connect to remote server to check new data and update
            else {
              System.out.println("There is no update data.");
        },0,60000); //run now for 60 seconds interval
}

Hi,
I modified the code and found where is the bug. When I run the jar program in console window.
The pop up ConfirmDialog box displayed and the console window printed:
Starting Data Exchange ...
New an instance. //able to new an instance
Prepare to connect DB. //able to call the DBConnection method.
Prepare to get connection pool. //prepare get connection with the pool
It does NOT show "Got connection pool." and print the following error:
java.lang.NullPointerException
java.util.Timer@141b571
I used MSSQL 2000 JDBC driver and it does not has problem when I run the program in JBuilder.
Did it lose the DataEx main object or it is the thread problem? What are the potential problems and how can I debug it?
Thanks for any kind advice.
Here is the updated code:
public class DataEx {
   private static ConnectionPool C;
   static {
       C = PoolManager.getPoolInstance();
   public static void main(String args[])
       System.out.println("Starting Data Exchange ...");
       java.util.Timer clock = new java.util.Timer(true);
       clock.scheduleAtFixedRate(new java.util.TimerTask()
          public void run() {
            DataEx main = null;
            try {
               main = new DataEx();
            System.out.println("New an instance.");
            } catch (IOException e) {
                 System.out.println("Exception initialising DataEx " + e);
            main.DBConnection(); // Check new data from local DB
         System.out.println("Connect DB Successfully.");
            if (!Vector.isEmpty()) {
              System.out.println("There are " + Vector.size() + " numbers of update data.");
              main.dataexchange(); // Connect to remote server to check new data and update
            else {
              System.out.println("There is no update data.");
        },0,60000); //run now for 60 seconds interval
     int nothing = JOptionPane.showConfirmDialog(null, "");
        System.out.println(clock);
    private void DBConnection(){
      System.out.println("Prepare to connect DB.");
      java.sql.Connection con = null;
      Statement stmt = null;
      try {
        System.out.println("Prepare to get connection pool.");
        con = C.getConnection();
        stmt = con.createStatement();
     System.out.println("Got connection pool.");
        String SqlStr = "select id,mdata from recordone";
        ResultSet rs = stmt.executeQuery(SqlStr);
     System.out.println("Created recordset object.");
          if (rs != null) {
            while (rs.next()) {
           VectorObj.setId(String.valueOf(rs.getInt("id")));
              VectorObj.setMData(rs.getString("mdata"));
              Vector.addElement(VectorObj);
            rs.close();
         System.out.println("Close recordset.");
     catch (java.sql.SQLException SQLE) {
        System.out.println(SQLE.getLocalizedMessage());
    }

Similar Messages

  • Why a bdc program does not run background

    <b>why a bdc program does not run background</b>
    Thanks.

    HI,
    BDC programs can run in the background, If you use the Functionmodules which is Uplpoad a file from Presentation server or Upload from presentation server then we can not use the Program in the Background processing. if the BDC program does not have these function modules then we can use the program in Background
    Regards
    Sudheer

  • My Firefox version is 13.0.1, I use Windows Seven 64-bit, when I click on Firefox, but the program does not run! But Firefox is seen in the list of Windows proc

    My Firefox version is 13.0.1, I use Windows Seven 64-bit, when I click on Firefox, but the program does not run! But Firefox is seen in the list of Windows processes, while Firefox does not run.
    I manually deleted Firefox from the list once I have Windows processing.
    And when I clicked on Firefox, Firefox will open quickly and easily.
    Firefox process in Windows Processes names list called "firefox.exe * 32" is.
    Please try to solve my problem, my problem is how to solve?

    Hi, are you saying that you start Firefox and it stalls -- you can see it in the Task Manager but it never displays -- but if you kill that process and start Firefox again it starts up properly that second time?
    If you look at the statistics available in the Task Manager's processes tab such as bytes read or other bytes, can you see whether Firefox is doing anything at all? ''Note: You might need to add columns if your Processes tab isn't set up to display statistics. You can do that from the View menu.''
    You might already have seen these troubleshooting articles. If not, does anything here help:
    * [[Firefox won't start - find solutions]]
    * [[Firefox hangs or is not responding - How to fix]]

  • After i have downloaded firefox 9.1 and tried to open it, i get the sentence : it couldn't be prepared properly (default 0xc0150004) and the program does not run

    after i have downloaded firefox 9.1 and tried to open it, i get the sentence : it couldn't be prepared properly (default 0xc0150004) and the programm does not run

    I couldn't find anything on the error text you posted but I did find lots of google hits on [http://www.google.com/search?q=%22The+application+failed+to+initialize+properly%22+0xc0150004 "The application failed to initialize properly" 0xc0150004]. Is that the error?
    In any case, did you try a clean reinstall of Firefox? If not, open the C:\Program Files folder and delete the '''Mozilla Firefox''' folder, if it's there. Next, go to mozilla.org/firefox click the green download button and install a new copy.

  • Why my program does not run on?

    I am writing a java project, a little big, to analyze a forum. The tasks I have to complete are:
    *(1) Register all threads (the post begins a new thread just like this post) existed in the forum during a period of time (for example 2 weeks) in the database.*
    *(2) After recorded every thread, crawl each thread to record the information of all the posts after (belong to) it (including the beginning post). These information include post author, posting time and post content. The author and time information will be stored in database and all the post content of a thread will be written into a unique .txt file, which means for each thread there will be a .txt file to record all the text posted to it.*
    The (1) is completed as I crawled the thread list pages of the forum for 2 weeks. And then write a text parser to extract all the thread item information into database. Now I have a table in the database which records all the threads that existed in the forum in the past 2 weeks. I can read thread url, posting time, thread author, thread title and thread id from the table.
    Then I plan to do the second job. I write a project in this way
    Begin
    HashMap threadUrl_threadID(10000), threadUrl_threadTitle(10000)
    ArrayList authorList(150000), threadAnalyzedUrlList(10000);
    Read from database to initialize the above instances
         Iterator iterator=threadUrl_threadID.keySet().iterator();
         while(iterator.hasNext)
              threadUrl=iterator.next();
              if(!threadAnalyzedUrlList.contains(threadHplink))
                   StringBuffer wpBuffer=webPage2Buffer(threadUrl);
                   // The Parser analyze the webpage and extract the information needed and has not been recorded
                   Parser.analyze(wpBuffer) and write to database
                   // If a thread has many posts, it may spread to many pages. Also crawl those pages.
                   while(nextPageExisted)
                        Read and parse next page.
                   Write all the post content to a local .txt file
                   update all ArrayList instances such as authorList and so on.
    EndI try to avoid recording duplicate information and querying database too often.
    Thus at the beginning of the program, I read all the items I will need from the database.
    And then update them to avoid query database. I think it's efficient but not too sure.
    This project works not bad when the volume of the threads (thread means the first post
    that opens a topic) is around 1000. But after I run the project on the practical database which
    stores almost 10000 threads. At the beginning it runs well, but always after 30 minutes the program
    seems suspended on its own. No exception is thrown out. In the console window of eclipse, it shows the program
    is still running (after 30 minutes). But no .txt file which stores thread content is produced
    and no new items are added into the database. Windows taskManager shows the cpu is used at a very low rate.
    I can't figure out what is wrong. I doubt maybe those ArrayList instances grow too large to
    exceed some tolerated limits.
    Can anyone offer some suggestions?
    See you tomorrow~

    Thanks paul. I let the program run all night last night. Actually nothing is wrong. The problem is some threads are so long that it needs almost 1 HOUR to complete it and generate the .txt file. I write no output info during this process. Thus sometimes it looks suspended but in fact the program is still running.
    Thank your reply very much!

  • Why the weather program does not recognize my site?

    لماذا لا تعترف برنامج الطقس على موقعي؟

    wildbill43
    What version of Premiere Elements are you using and on what computer operating system is it running?
    Assuming for now you are aiming at DVD-VIDEO on DVD disc and not AVCHD on DVD disc.
    We can try at least 3 different approaches to restore Premiere Elements burner location recognition for your DVD/CD burner (assumed not Blu-ray DVD burner).
    For now, I am going to assume Premiere Elements 12 on Windows 7, 8, or 8.1 64 bit.
    1. Delete the Adobe Premiere Elements Prefs file and, if necessary, the whole 12.0 Folder in which it exists.
    Local Disk C
    Users
    Owner
    AppData
    Roaming
    Adobe
    Premiere Elements
    12.0
    and in the 12.0 Folder is the Adobe Premiere Elements Prefs file that you delete. If that does not work, then you delete the whole 12.0 Folder in which the Adobe Premiere Elements Prefs file exists. Be sure to be working with Folder Option Show Hidden Files, Folders, and Drives active so that you can see the complete path cited.
    2. Deactivate the program from within the opened project - in version 12, Expert workspace Help Menu/Sign Out. Then uninstall the program via the usual Control Panel route. Next do a ccleaner run through (regular cleaner and registry cleaner parts) to get rid of leftovers from incomplete uninstalls and reinstalls.
    CCleaner - PC Optimization and Cleaning - Free Download
    Finally reinstall the program with the antivirus and firewall(s) disabled.
    3. Refresh the DVD drivers.
    CD, DVD drive not recognized after Adobe application install | Windows
    We will be watching for your results.
    Thanks.
    ATR
    Add On...at the onset, please assure that the issue still exists with the antivirus and firewall(s) disabled.

  • Program does not run correctly

    I purchased 2 CS6 programs for our charity via the CTX project
    one version runs perfectly the other one does not and never has.
    The problem is that it works for the first 6-10 images but then crashes and will not come back until you close down the computer.
    Or when you open images in the RAW window where the image should be there is no image and you can see the background through the gap.
    I have tried re-downloading the program again via [email protected], but it will not recognize my signin password, and no password email comes to our email.
    I have a license key in the email we originally were sent by adobe but I cannot get to the point where I can use it
    I know we got this at a charitable rate but it is absolutely useless
    What can I do

    download the installation file(s) and re-install.  if you need more help, indicate what adobe program(s) are problematic
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.4 (win) 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • On board program does not run the motor to new positions yet commands to state of digital I/O in the same program line.

    I am controlling a stepper motor position via a PIC-7342 board. This part of the program has worked in the past. I have another program that does almost the same thing and it works as always. 
    The program sets the speed and accelerations, then sets a position and tell the motor to run to the position. Then it sets a communication bit through the MCS register. Then it sets a new position and command the motor to run to the new position. It then delays a short time and commands an output to turn on. Then it sets a new position and commands the motor to run to the new position. After each command to run there is a wait for motion complete.  The code used to work correctly.  Now the motor runs to the first position and proceeds no further.  The finial position is sometimes a couple of steps past the setpoint, which is very unusual. The digital output is fired like the second position has been reached, even though the motor has not moved to the position. The actual path for the motor is clear, so there is not mechanical reason for the problem.  How would you troubleshoot an on board program?

    ITElearner,
    What has changed since you last ran your system?  Can you move the motor in Measurement & automation explorer?  Are you getting any errors?  Is this program written in LabVIEW?  You may also find the following useful:
    Configuring a Motion Control System
    http://zone.ni.com/devzone/cda/tut/p/id/3126
    Configure and Test a Stepper Motor
    http://digital.ni.com/public.nsf/allkb/9675C83F037​811F68625727C0002A4A5?OpenDocument
    Regards,
    Sam K
    Applications Engineer
    National Instruments
    www.ni.com/support

  • AIR 3 Sidecar Installs but Program does not run

    Hi there AIR Heads!
    After an install of both AIR 3 and our AIR program am getting an AIR error window: "This installation of this application is corrupted."
    Trying to figure out issue through the installer log.
    Have doen several reinstalls with updated files, get same error window each time.
    Looking at Console system.log the only error message I see is this:
    CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Any ideas if this is causing the issue?
    Thanks for any help on this,
    robert
    HERE IS FULL INSTALL LOG:
    Wednesday, October 12, 2011 10:25:50 AM America/Los_Angeles
    Oct 12 10:26:22 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/MacOS/Adobe AIR Installer[204]: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.6.8 x86
    Oct 12 10:26:22 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/MacOS/Adobe AIR Installer[204]: Commandline is: -psn_0_102425
    Oct 12 10:26:22 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/MacOS/Adobe AIR Installer[204]: No installed runtime detected
    Oct 12 10:26:22 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/MacOS/Adobe AIR Installer[204]: Found sidecar config file at /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/.airinstall. cfg
    Oct 12 10:26:22 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/MacOS/Adobe AIR Installer[204]: Read Secret_Composer.air from sidecar file.
    Oct 12 10:26:22 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/MacOS/Adobe AIR Installer[204]: Using /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret_Compo ser.air as input file
    Oct 12 10:26:23 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/MacOS/Adobe AIR Installer[204]: Invoking Application Installer for combined install
    Oct 12 10:26:23 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/MacOS/Adobe AIR Installer[204]: Launching subprocess with commandline /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks" -withRuntime -url file:///Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secre t_Composer.air
    Oct 12 10:26:25 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Application Installer begin with version 3.0.0.4080 on Mac OS 10.6.8 x86
    Oct 12 10:26:25 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Commandline is: -runtime "/Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks" -withRuntime -url file:///Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secre t_Composer.air
    Oct 12 10:26:25 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: No installed runtime detected
    Oct 12 10:26:27 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Unpackaging file:///Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secre t_Composer.air to /var/folders/V0/V0j7rjMBFfuuWSC1K0dJok+++TI/-Tmp-/FlashTmp.eVDu3r
    Oct 12 10:27:25 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Application signature verified
    Oct 12 10:27:25 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Unpackaging/validation complete
    Oct 12 10:27:41 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Converting unpackaged application to a native installation package in /var/folders/V0/V0j7rjMBFfuuWSC1K0dJok+++TI/-Tmp-/FlashTmp.ehpdtL
    Oct 12 10:27:48 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Native installation package creation succeeded
    Oct 12 10:27:48 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Launching subprocess with commandline /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu file:///Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secre t_Composer.air
    Oct 12 10:27:48 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Relaunching with elevation
    Oct 12 10:27:48 creative-ny70 SecurityAgent[183]: system.privilege.admin|2011-10-12 10:27:48 -0700
    Oct 12 10:27:53 creative-ny70 WindowServer[81]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Oct 12 10:27:53 creative-ny70 com.apple.WindowServer[81]: Wed Oct 12 10:27:53 creative-ny70.local WindowServer[81] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Oct 12 10:27:54 creative-ny70 authexec[214]: executing /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
    Oct 12 10:27:55 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Application Installer begin with version 3.0.0.4080 on Mac OS 10.6.8 x86
    Oct 12 10:27:55 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Commandline is: -runtime "/Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu file:///Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secre t_Composer.air
    Oct 12 10:27:55 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: No installed runtime detected
    Oct 12 10:27:55 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Unpackaging file:///Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secre t_Composer.air to /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Tmp-/FlashTmp.yQCQk7
    Oct 12 10:28:07 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Application signature verified
    Oct 12 10:28:07 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Unpackaging/validation complete
    Oct 12 10:28:07 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Converting unpackaged application to a native installation package in /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Tmp-/FlashTmp.uk4vs5
    Oct 12 10:28:12 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Native installation package creation succeeded
    Oct 12 10:28:12 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/Shared/Library/Application Support/Adobe"
    Oct 12 10:28:12 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Launching subprocess with commandline /usr/sbin/chown -hfRP creativity "/Users/creativity/Library/Application Support/Adobe"
    Oct 12 10:28:12 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/creativity/Library/Application Support/Adobe"
    Oct 12 10:28:12 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Launching subprocess with commandline /usr/sbin/chown -hfRP creativity "/Users/creativity/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin"
    Oct 12 10:28:12 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Starting silent combined runtime and app install.\n Installing runtime version 3.0.0.4080.\n Installing app 10101 version 1.1 to /Applications using the source file at file:///Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secre t_Composer.air
    Oct 12 10:28:16 creative-ny70 mdworker[175]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Oct 12 10:28:32 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Registering /Applications/Utilities/Adobe AIR Application Installer.app/Contents/Info.plist
    Oct 12 10:28:32 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Library/Frameworks/Adobe AIR.framework"
    Oct 12 10:28:32 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Subprocess chown succeeded
    Oct 12 10:28:32 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Application Installer.app"
    Oct 12 10:28:32 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Subprocess chown failed (-1)
    Oct 12 10:28:32 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Uninstaller.app"
    Oct 12 10:28:32 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Subprocess chown succeeded
    Oct 12 10:28:37 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/SECRET COMPOSER - Scholastic Edition.app"
    Oct 12 10:28:37 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Subprocess chown succeeded
    Oct 12 10:28:37 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Launching subprocess with commandline /bin/chmod -R ugo+rx "/Applications/SECRET COMPOSER - Scholastic Edition.app"
    Oct 12 10:28:37 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Subprocess chmod succeeded
    Oct 12 10:28:39 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[214]: Application Installer end with exit code 0
    Oct 12 10:28:39 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Elevated install completed
    Oct 12 10:28:39 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Launching subprocess with commandline /Applications/SECRET COMPOSER - Scholastic Edition.app
    Oct 12 10:28:41 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[210]: Application Installer end with exit code 0
    Oct 12 10:28:41 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/MacOS/Adobe AIR Installer[204]: Subprocess app installer succeeded
    Oct 12 10:28:41 creative-ny70 /Volumes/MACOSX_Secret_Composer_Scholastic/Secret_Composer_MACOSX_Scholastic/Secret Composer Installer.app/Contents/MacOS/Adobe AIR Installer[204]: Runtime Installer end with exit code 0

    Hi Robert,
    I apologize for the delayed response.  If you're still running into this issue could you try the following steps, they've helped others with this error in the past.
    Delete the following folders:
    [user]/Library/Application Support/Adobe/AIR
    [user]/Library/Caches
    Also removed any references to the app, (original name & renamed), in:
    [user]/Library/Preferences
    Thanks,
    Chris

  • The program does not run

    Hello! I have a MacBook and a XCode installed ( latest version from App World for Mac ), but when I write a programm and click "Run", I have an empty window without the text. What's the problem. I tried more code examples.

    It's a simple programm, that does calculate the sum of two numbers and display the result on the screen.
    The code:
    How can you see - there is no data in the console.

  • Deployment status sucess but program does not run in client machine

    Hello Guys,
    I have created a package program to Run a batch script Install.bat
    Program Properties:
    Command Line: Install.bat
    Run: Normal
    After Running: No action required.
    Run Mode: Run with administrative rights (Allow interact with users)
    When i deploy this package i see Success in deployment status very soon, But the program doesnot run in client machine.
    Please find my batch script below for more info.(manually installed Install.bat in system context cmd, it works perrfectly )
    Please help me, where am going wrong
    rem ECHO OFF
    SETLOCAL
    SET WORKING=%~dp0
    echo Installing Office 365 pro plus NY package:
    echo ------------------------------------------
    %WORKING%setup.exe /configure %WORKING%install32ny.xml
    IF NOT EXIST "C:\Program Files\Microsoft Office 15\root\" (goto _ExitInstall)
    :_CopyingFile
    echo Copying Script to Office 365 INSTALLDIR:
    echo ----------------------------------------
    XCOPY %WORKING%Pin-Unpin.vbs "C:\Program Files\Microsoft Office 15\root" /C /F
    IF NOT EXIST "C:\Program Files\Microsoft Office 15\root\Pin-Unpin.vbs" (goto _ExitActivesetup)
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\Office365ProPlusNY" /v "StubPath" /d "cscript.exe \"C:\Program Files\Microsoft Office 15\root\Pin-Unpin.vbs\""
    /t REG_SZ /f
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\Office365ProPlusNY" /v "Version" /d "1.0" /t REG_SZ /f
    %WORKING%Launch.vbs
    exit /b %errorlevel%
    :_ExitInstall
    echo Aborting Installation:
    echo ----------------------
    echo Office 365 installation failed.
    echo %errorlevel%
    exit /b 3
    :_ExitActivesetup
    echo Aborting Installation:
    echo ----------------------
    echo Activesetup Script error to INSTALLDIR
    echo %errorlevel%
    exit /b 4

    It's just starting the command lines one after the other and after that simply returns a success of starting all the commands.  Two things you should do to successfully use a batch file like this:
    Use start-wait constructions, so the next action won't start before the previous action is finished. For the exact command lines see:
    http://technet.microsoft.com/en-us/library/bb491005.aspx;
    First test the batch file with psexec, to see how it behaves with SYSTEM credentials.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Why key creator callback does not run?

    Hi, I'm completely new to berkeley db. I encounter a problem: I created a secondary database, however it's empty all the time. I finally realized that the key creator callback function passed in the "associate" function seemed not been called.
    What might be the reason?
    Thanks in advance.

    The callback is called in two situations:
    * if the secondary is empty and the DB_CREATE flag is passed to DB->associate, the callback is called repeatedly to populate the secondary; or
    * when the primary is updated after a DB->associate call, the callback is called (possibly several times per update) to keep the secondary consistent with the primary.
    If this is not occurring, please give more detail of what you are doing (when you call DB->associate, what kinds of operations you are performing on the primary, and what the callback is doing to generate secondary keys).
    Regards,
    Michael.

  • SSIS Job deployment does not run my .exe but is described as a success

    Hi i have scripted a simple script task in c# to run an exe with the following code
    Process.start(filename.exe);
    i have also tried using the 'Execute Process task' in the SSIS toolbox.
    both methods work when i debug. 
    However when deployed to the SQL server as a job, the jobs are described as a success but my program does not run?!
    The exe file is published from SQL visual studio and the resultant filename is setup.exe which i am trying to run.
    Any help pleasE?
    I am not using any shared file resources, the setup.exe is on my desktop.

    this is all i get
    Message Type
    Message Time
    Message
    Message Source Name
    Subcomponent Name
    Execution Path
    OnPostExecute
    8/22/2014 4:15:09 PM
    Package:Finished, 4:15:09 PM, Elapsed time: 00:00:00.234.
    Package
    \Package
    OnPostExecute
    8/22/2014 4:15:09 PM
    Execute Process Task:Finished, 4:15:09 PM, Elapsed time: 00:00:00.203.
    Execute Process Task
    \Package\Execute Process Task
    OnPostValidate
    8/22/2014 4:15:09 PM
    Execute Process Task:Validation is complete.
    Execute Process Task
    \Package\Execute Process Task
    OnPreExecute
    8/22/2014 4:15:09 PM
    Execute Process Task:Start, 4:15:09 PM.
    Execute Process Task
    \Package\Execute Process Task
    OnPreValidate
    8/22/2014 4:15:09 PM
    Execute Process Task:Validation has started.
    Execute Process Task
    \Package\Execute Process Task
    OnPreExecute
    8/22/2014 4:15:09 PM
    Package:Start, 4:15:09 PM.
    Package
    \Package
    OnPreValidate
    8/22/2014 4:15:09 PM
    Package:Validation has started.
    Package
    \Package
    OnPreValidate
    8/22/2014 4:15:09 PM
    Execute Process Task:Validation has started.
    Execute Process Task
    \Package\Execute Process Task
    OnPostValidate
    8/22/2014 4:15:09 PM
    Execute Process Task:Validation is complete.
    Execute Process Task
    \Package\Execute Process Task
    OnPostValidate
    8/22/2014 4:15:09 PM
    Package:Validation is complete.
    Package
    \Package
    OnInformation
    8/22/2014 4:15:08 PM
    Package:Information: Succeeded in upgrading the package.
    Package
    \Package
    OnInformation
    8/22/2014 4:15:08 PM
    run exe:Information: The Script Task "ST_6ba434db5c5649b7b68ab5fb14977781" has been migrated.
    The package must be saved to retain migration changes.
    run exe
    \Package\run exe
    OnWarning
    8/22/2014 4:15:04 PM
    run exe:Warning: Found SQL Server Integration Services 2012 Script Task "ST_6ba434db5c5649b7b68ab5fb14977781"
    that requires migration!
    run exe
    \Package\run exe

  • Program compiles, but does not run

    To: XCode Users <[email protected]>
    From: Brigit Ananya <[email protected]>
    Subject: Program compiles, but does not run
    I am trying to port a Java application from the PC to the Mac. I am using XCode and the program compiles, but it does not run.
    When I try to run the ...app, I get the message that the main class is not specified, etc.
    When I try to run the ...jar, I do not get the message that the main class is not specified, but I do get the message that there is no Manifest section for bouncycastle, etc.
    Here are the detailed messages I get in the Console when I try to run the program:
    When I try to run the ...app, I get the following message:
    1/9/09 7:21:17 AM [0x0-0x8c08c].com.AnanyaSystems.AnanyaCurves[2253] [LaunchRunner Error] No main class specified
    1/9/09 7:21:17 AM [0x0-0x8c08c].com.AnanyaSystems.AnanyaCurves[2253] [JavaAppLauncher Error] CallStaticVoidMethod() threw an exception
    1/9/09 7:21:17 AM [0x0-0x8c08c].com.AnanyaSystems.AnanyaCurves[2253] Exception in thread "main" java.lang.NullPointerException
    1/9/09 7:21:17 AM [0x0-0x8c08c].com.AnanyaSystems.AnanyaCurves[2253] at apple.launcher.LaunchRunner.run(LaunchRunner.java:112)
    1/9/09 7:21:17 AM [0x0-0x8c08c].com.AnanyaSystems.AnanyaCurves[2253] at apple.launcher.LaunchRunner.callMain(LaunchRunner.java:50)
    1/9/09 7:21:17 AM [0x0-0x8c08c].com.AnanyaSystems.AnanyaCurves[2253] at apple.launcher.JavaApplicationLauncher.launch(JavaApplicationLauncher.java:52)
    When I try to run the ...jar, I do get the following message:
    1/9/09 7:22:43 AM [0x0-0x8d08d].com.apple.JarLauncher[2262] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:374)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] Exception in thread "main"
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] java.lang.SecurityException: no manifiest section for signature file entry org/bouncycastle/asn1/DEREnumerated.class
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at sun.security.util.SignatureFileVerifier.verifySection(SignatureFileVerifier.java:377)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at sun.security.util.SignatureFileVerifier.processImpl(SignatureFileVerifier.java:231)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at sun.security.util.SignatureFileVerifier.process(SignatureFileVerifier.java:176)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.util.jar.JarVerifier.processEntry(JarVerifier.java:233)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.util.jar.JarVerifier.update(JarVerifier.java:188)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.util.jar.JarFile.initializeVerifier(JarFile.java:325)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.util.jar.JarFile.getInputStream(JarFile.java:390)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at sun.misc.URLClassPath$JarLoader$1.getInputStream(URLClassPath.java:620)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at sun.misc.Resource.cachedInputStream(Resource.java:58)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at sun.misc.Resource.getByteBuffer(Resource.java:113)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.net.URLClassLoader.defineClass(URLClassLoader.java:249)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.security.AccessController.doPrivileged(Native Method)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.lang.ClassLoader.loadClass(ClassLoader.java:316)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:280)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    1/9/09 7:28:45 AM [0x0-0x8f08f].com.apple.JarLauncher[2277] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:374)
    I do specify the main class in both, the Manifest file and the Info.plist file, in the correct way, "package.MainClass". Is there another place where I need to specify it?
    Why do I need org/bouncycastle/asn1/DEREnumerated.class, and how would I have to specify it in Manifest?
    I also posted these questions at Mac Programming at forums.macrumors.com and at Xcode-users Mailing List at lists.apple.com/mailman/listinfo, but I did not get any answer.
    Please help! Thanks!

    There was something wrong with my Info.plist file.
    So, here is my corrected Info.plist file:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
         <key>CFBundleDevelopmentRegion</key>
         <string>English</string>
         <key>CFBundleExecutable</key>
         <string>AnanyaCurves</string>
         <key>CFBundleGetInfoString</key>
         <string></string>
         <key>CFBundleIconFile</key>
         <string>AnanyaCurves.icns</string>
         <key>CFBundleIdentifier</key>
         <string>com.AnanyaSystems.AnanyaCurves</string>
         <key>CFBundleInfoDictionaryVersion</key>
         <string>6.0</string>
         <key>CFBundleName</key>
         <string>AnanyaCurves</string>
         <key>CFBundlePackageType</key>
         <string>APPL</string>
         <key>CFBundleShortVersionString</key>
         <string>0.1</string>
         <key>CFBundleSignature</key>
         <string>ac</string>
         <key>CFBundleVersion</key>
         <string>0.1</string>
         <key>Java</key>
         <dict>
              <key>JMVersion<key>
              <string>1.4+</string>
              <key>MainClass</key>
              <string>AnanyaCurves</string>
              <key>VMOptions</key>
              <string>-Xmx512m</string>
              <key>Properties</key>
              <dict>
                   <key>apple.laf.useScreenMenuBar</key>
                   <string>true</string>
                   <key>apple.awt.showGrowBox</key>
          <string>true</string>
              </dict>
         </dict>
    </dict>
    </plist>Ok, so now I can at least run the AnanyaCurves.jar file by double-clicking on it.
    However, I still cannot run the AnanyaCurves.app file. When I double-click on it, I get the following message in the Console:
    1/11/09 5:12:26 PM [0x0-0x67067].com.apple.JarLauncher[1128]  at ananyacurves.AnanyaCurves.main(AnanyaCurves.java:1961)
    1/11/09 5:13:11 PM [0x0-0x6a06a].com.AnanyaSystems.AnanyaCurves[1137] [JavaAppLauncher Error] CFBundleCopyResourceURL() failed loading MRJApp.properties file
    1/11/09 5:13:11 PM [0x0-0x6a06a].com.AnanyaSystems.AnanyaCurves[1137] [LaunchRunner Error] No main class specified
    1/11/09 5:13:11 PM [0x0-0x6a06a].com.AnanyaSystems.AnanyaCurves[1137] [JavaAppLauncher Error] CallStaticVoidMethod() threw an exception
    1/11/09 5:13:11 PM [0x0-0x6a06a].com.AnanyaSystems.AnanyaCurves[1137] Exception in thread "main" java.lang.NullPointerException
    1/11/09 5:13:11 PM [0x0-0x6a06a].com.AnanyaSystems.AnanyaCurves[1137]  at apple.launcher.LaunchRunner.run(LaunchRunner.java:112)
    1/11/09 5:13:11 PM [0x0-0x6a06a].com.AnanyaSystems.AnanyaCurves[1137]  at apple.launcher.LaunchRunner.callMain(LaunchRunner.java:50)
    1/11/09 5:13:11 PM [0x0-0x6a06a].com.AnanyaSystems.AnanyaCurves[1137]  at apple.launcher.JavaApplicationLauncher.main(JavaApplicationLauncher.java:61)Why is it looking for the MRJApp.properties file? Isn't this outdated? Shouldn't it look for the Info.plist file? I do not have a MRJApp.properties file.
    Also, in the Run menu of my XCode project, Go, Run, and Debug are disabled, but perhaps this has to do with not being able to run the AnanyaCurves.app file.
    Thanks for your time! I really appreciate any help you can give me!

  • Trial Version of elements 13 running on latest IMac 27 inch.  Move the mouse and it is time out.  Doesn't matter where on the window the mouse is. The program does not respond quickly at all. Takes ages to do anything with it.  Any suggestions?

    I am running a trial version of Elements 13 on the latest IMac 27 inch.  Any move of the mouse and it is time out.  Doesn't matter if the mouse is trying to do an edit or just moving across the window.  The program does not respond very well at all.  I am wondering now if I should bother purchasing the program. 

    How much ram do you have? Did you recently import a bunch of photos into the organizer? PSE will be slow till it's through cataloguing them, which can take some time for large number of images.

Maybe you are looking for