Today's Messages (off)
| Unanswered Messages (on)
| Forum: Java Development Tools (JDT) |
|---|
| Topic: Changing Native Logging Behavior |
|---|
| Changing Native Logging Behavior [message #1060057] |
Wed, 22 May 2013 14:09 |
Felix Smith Messages: 1 Registered: May 2013 |
Junior Member |
|
|
Hey all,
I'm trying to configure eclipse such that only select types of errors are posted to the log file.
An example of this is if I have 3 errors: ERROR, WARNING, INFO. And I just want to display the WARNING type errors in the error log.
How would I go about doing this? I tried changing the config.ini file and .options file to no avail.
My code to test these 3 types of errors is as follows:
Activator.getDefault().getLog().log(new Status(IStatus.INFO, Activator.PLUGIN_ID, 0, "<<INFO>>", new Exception("INFO")));
Activator.getDefault().getLog().log(new Status(IStatus.WARNING, Activator.PLUGIN_ID, 0, "<<WARNING>>", new Exception("WARNING")));
Activator.getDefault().getLog().log(new Status(IStatus.ERROR, Activator.PLUGIN_ID, 0, "<<ERROR>>", new Exception("ERROR")));
And as a side note, in my config.ini file I added the line "eclipse.log.level = WARNING" but of course this did nothing.
Any help at all as to what to do to only display WARNING type errors for example would be greatly appreciated!
|
|
| | Topic: Why does ant not compile |
|---|
| Why does ant not compile [message #1060038] |
Wed, 22 May 2013 11:23 |
Steve Howerton Messages: 5 Registered: April 2013 |
Junior Member |
|
|
I just starting building projects with and and eclipse ide. everything I try to import does not compile. I have added jar files to the lib or eclipse and the program runs in eclipse fine.
Why does ant not compile and build the project? How would I begin to fix the compile errors listed?
thanks
compile:
[echo] "
[echo]
[echo] ================================================
[echo] COMPILE
[echo] ================================================
[echo]
[echo] "
[echo] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src
[echo] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\build
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\build.xml:120: warning: 'includeantruntime' was not set
, defaulting to build.sysclasspath=last; set to false for repeatable builds
[javac] Compiling 8 source files to C:\Users\Steves\Documents\ceyesumma
\java_cache\my_projects\eclipse\com.cisumma.build.ant.first\target_com.cisu
mma.build.ant.first\com.cisumma.build.ant.first\build\classes
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Bar.java:3: error: package org.apache.log4j d
oes not exist
[javac] import org.apache.log4j.Logger;
[javac] ^
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Bar.java:6: error: cannot find symbol
[javac] public static Logger logger = Logger.getLogger(Bar.class);
[javac] ^
[javac] symbol: class Logger
[javac] location: class Bar
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Main.java:11: error: package org.apache.log4j
does not exist
[javac] import org.apache.log4j.Logger;
[javac] ^
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Main.java:12: error: package org.apache.log4j
does not exist
[javac] import org.apache.log4j.BasicConfigurator;
[javac] ^
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Main.java:14: error: package com.toedter.cale
ndar does not exist
[javac] import com.toedter.calendar.JCalendar;
[javac] ^
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Main.java:20: error: cannot find symbol
[javac] public static Logger logger = Logger.getLogger(Main.class);
[javac] ^
[javac] symbol: class Logger
[javac] location: class Main
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Bar.java:6: error: cannot find symbol
[javac] public static Logger logger = Logger.getLogger(Bar.class);
[javac] ^
[javac] symbol: variable Logger
[javac] location: class Bar
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Main.java:20: error: cannot find symbol
[javac] public static Logger logger = Logger.getLogger(Main.class);
[javac] ^
[javac] symbol: variable Logger
[javac] location: class Main
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Main.java:30: error: cannot find symbol
[javac] BasicConfigurator.configure();
[javac] ^
[javac] symbol: variable BasicConfigurator
[javac] location: class Main
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Main.java:53: error: cannot find symbol
[javac] JCalendar myJCalendar = new JCalendar();
[javac] ^
[javac] symbol: class JCalendar
[javac] location: class Main
[javac] C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\ecli
pse\com.cisumma.build.ant.first\target_com.cisumma.build.ant.first\com.cisu
mma.build.ant.first\src\model\Main.java:53: error: cannot find symbol
[javac] JCalendar myJCalendar = new JCalendar();
[javac] ^
[javac] symbol: class JCalendar
[javac] location: class Main
[javac] 11 errors
BUILD FAILED
C:\Users\Steves\Documents\ceyesumma\java_cache\my_projects\eclipse\com.cisu
mma.build.ant.first\target_com.cisumma.build.ant.first\com.cisumma.build.an
t.first\build.xml:120: Compile failed; see the compiler error output for de
tails.
Total time: 2 seconds
C:\ant\apache-ant-1.8.1\bin>
|
|
| | Topic: run jar file |
|---|
| run jar file [message #1060036] |
Wed, 22 May 2013 11:21 |
Steve Howerton Messages: 5 Registered: April 2013 |
Junior Member |
|
|
I am learning to build.xml a project with eclipse ide.
below is the MANIFEST.MF that I am creating.
The build shows that the manifest is being written in the dir structure below.
The dir META-INF (sibling to the src) contains this MANIFEST.MF
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.8.1
Created-By: Apache Ant version 1.8.1 compiled on April 30 2010
Built-By: Steves
Main-Class: build.classes.model.Main
Implementation-Version: 1.0-b0
Built-Date: <tstamp />
Class-Path: build\lib\jcalendar.jar
05/06/2013 06:38 AM <DIR> .
05/06/2013 06:38 AM <DIR> ..
04/07/2013 07:18 AM 864 .classpath
04/02/2013 06:35 AM 688 .project
05/06/2013 06:38 AM <DIR> bin
05/06/2013 06:38 AM <DIR> build
05/05/2013 11:03 AM 15,307 build.properties
05/06/2013 06:32 AM 5,405 build.xml
04/10/2013 10:23 AM 2,612 build_output.xml
05/05/2013 11:08 AM 9,052 build_test.xml
05/06/2013 06:32 AM 328,533 dist.zip.jar
05/06/2013 06:38 AM <DIR> img
05/14/2011 12:20 AM 68,310 jcalendar.jar
03/31/2013 07:00 PM 220,183 junit.jar
04/08/2013 05:53 PM 242 MANIFEST.MF
05/06/2013 06:38 AM <DIR> META-INF
04/11/2013 03:26 AM 1,421 README.txt
05/06/2013 06:38 AM <DIR> src
04/05/2013 06:21 PM 44,599 sys.txt
04/05/2013 06:24 PM 366 temp.txt
13 File(s) 697,582 bytes
7 Dir(s) 710,885,691,392 bytes free
the following MANIFEST.MF is in the jar file too.
it is in the bin dir of the jar file.
Manifest-Version: 1.0
Main-Class: com.toedter.calendar.JCalendarDemo
Created-By: Ant 1.4.1
Name: com/toedter/components/JSpinField.class
Java-Bean: True
Name: com/toedter/calendar/JDayChooser.class
Java-Bean: True
Name: com/toedter/calendar/JCalendar.class
Java-Bean: True
Name: com/toedter/calendar/JMonthChooser.class
Java-Bean: True
Name: com/toedter/calendar/JYearChooser.class
Java-Bean: True
Name: com/toedter/components/JLocaleChooser.class
Java-Bean: True
I am attempting to run the dist.jar.
below is the error. Why does my project never find the Main of my app?
Thanks.
C:\Program Files\Java\jdk1.7.0_15\bin>java -jar %TARGET%\dist\dist.jar
Exception in thread "main" java.lang.NoClassDefFoundError: build/classes/mo
del/Main (wrong name: model/Main)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:791)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.ja
va:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:449)
at java.net.URLClassLoader.access$100(URLClassLoader.java:71)
at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java
:482)
C:\Program Files\Java\jdk1.7.0_15\bin>
a look inside my dist.jar note that the dir "build.classes.model.Main" is the Main I would like to have found.
C:\Program Files\Java\jdk1.7.0_15\bin>jar -tvf %TARGET%\dist\dist.jar
0 Sun May 05 11:08:58 CDT 2013 META-INF/
270 Sun May 05 11:08:56 CDT 2013 META-INF/MANIFEST.MF
864 Sun Apr 07 07:18:10 CDT 2013 .classpath
688 Tue Apr 02 06:35:20 CDT 2013 .project
242 Mon Apr 08 17:53:58 CDT 2013 MANIFEST.MF
1421 Thu Apr 11 03:26:52 CDT 2013 README.txt
0 Sun May 05 10:02:50 CDT 2013 bin/
0 Sun May 05 10:02:50 CDT 2013 bin/META-INF/
493 Wed Jul 17 15:44:52 CDT 2002 bin/META-INF/MANIFEST.MF
0 Sun May 05 10:02:50 CDT 2013 bin/model/
940 Sun May 05 10:02:50 CDT 2013 bin/model/Main.class
0 Sun May 05 10:02:50 CDT 2013 bin/model/math/
385 Sun May 05 10:02:50 CDT 2013 bin/model/math/MyMath.class
0 Sun May 05 10:02:50 CDT 2013 bin/view/
498 Sun May 05 10:02:50 CDT 2013 bin/view/AboutControl.class
2154 Sun May 05 10:02:50 CDT 2013 bin/view/AboutPopup.class
513 Sun May 05 10:02:50 CDT 2013 bin/view/ExitControl.class
1265 Sun May 05 10:02:50 CDT 2013 bin/view/UKLights.class
15307 Sun May 05 11:03:16 CDT 2013 build.properties
5398 Wed Apr 24 07:00:00 CDT 2013 build.xml
0 Sun May 05 11:08:58 CDT 2013 build/
0 Sun May 05 11:08:58 CDT 2013 build/META-INF/
270 Sun May 05 11:08:58 CDT 2013 build/META-INF/MANIFEST.MF
0 Sun May 05 11:08:58 CDT 2013 build/classes/
0 Sun May 05 11:08:58 CDT 2013 build/classes/model/
988 Sun May 05 11:08:58 CDT 2013 build/classes/model/Main.class
0 Sun May 05 11:08:58 CDT 2013 build/classes/model/math/
385 Sun May 05 11:08:58 CDT 2013 build/classes/model/math/MyMath.class
0 Sun May 05 11:08:58 CDT 2013 build/classes/view/
500 Sun May 05 11:08:58 CDT 2013 build/classes/view/AboutControl.class
2071 Sun May 05 11:08:58 CDT 2013 build/classes/view/AboutPopup.class
513 Sun May 05 11:08:58 CDT 2013 build/classes/view/ExitControl.class
1265 Sun May 05 11:08:58 CDT 2013 build/classes/view/UKLights.class
0 Sun May 05 11:08:58 CDT 2013 build/lib/
68310 Sun May 05 11:08:58 CDT 2013 build/lib/jcalendar.jar
0 Sun May 05 11:08:58 CDT 2013 build/main/
0 Sun May 05 11:08:58 CDT 2013 build/main/model/
988 Sun May 05 11:08:58 CDT 2013 build/main/model/Main.class
0 Sun May 05 11:08:58 CDT 2013 build/main/model/math/
385 Sun May 05 11:08:58 CDT 2013 build/main/model/math/MyMath.class
0 Sun May 05 11:08:58 CDT 2013 build/main/view/
500 Sun May 05 11:08:58 CDT 2013 build/main/view/AboutControl.class
2071 Sun May 05 11:08:58 CDT 2013 build/main/view/AboutPopup.class
513 Sun May 05 11:08:58 CDT 2013 build/main/view/ExitControl.class
1265 Sun May 05 11:08:58 CDT 2013 build/main/view/UKLights.class
0 Sun May 05 11:08:58 CDT 2013 build/test/
0 Sun May 05 11:08:58 CDT 2013 build/test/model/
988 Sun May 05 11:08:58 CDT 2013 build/test/model/Main.class
0 Sun May 05 11:08:58 CDT 2013 build/test/model/math/
385 Sun May 05 11:08:58 CDT 2013 build/test/model/math/MyMath.class
0 Sun May 05 11:08:58 CDT 2013 build/test/view/
500 Sun May 05 11:08:58 CDT 2013 build/test/view/AboutControl.class
2071 Sun May 05 11:08:58 CDT 2013 build/test/view/AboutPopup.class
513 Sun May 05 11:08:58 CDT 2013 build/test/view/ExitControl.class
1265 Sun May 05 11:08:58 CDT 2013 build/test/view/UKLights.class
2612 Wed Apr 10 10:23:20 CDT 2013 build_output.xml
9052 Sun May 05 11:08:48 CDT 2013 build_test.xml
0 Tue Apr 23 10:28:58 CDT 2013 img/
62417 Thu Mar 25 22:35:10 CDT 2010 img/Paradise.jpg
68310 Sat May 14 00:20:08 CDT 2011 jcalendar.jar
220183 Sun Mar 31 19:00:00 CDT 2013 junit.jar
0 Tue Apr 23 10:29:16 CDT 2013 src/
0 Mon Apr 08 05:43:36 CDT 2013 src/META-INF/
493 Wed Jul 17 15:44:52 CDT 2002 src/META-INF/MANIFEST.MF
0 Tue Apr 09 05:41:18 CDT 2013 src/model/
518 Tue Apr 23 09:45:42 CDT 2013 src/model/Main.java
0 Tue Apr 02 06:03:54 CDT 2013 src/model/math/
138 Mon Apr 01 12:44:20 CDT 2013 src/model/math/MyMath.java
0 Wed Apr 24 06:46:56 CDT 2013 src/view/
179 Wed Apr 24 06:47:12 CDT 2013 src/view/AboutControl.java
1322 Wed Apr 24 06:50:54 CDT 2013 src/view/AboutPopup.java
178 Wed Apr 24 06:45:18 CDT 2013 src/view/ExitControl.java
841 Wed Apr 24 06:44:00 CDT 2013 src/view/UKLights.java
44599 Fri Apr 05 18:21:22 CDT 2013 sys.txt
366 Fri Apr 05 18:24:22 CDT 2013 temp.txt
C:\Program Files\Java\jdk1.7.0_15\bin>
|
|
| | Topic: no class found |
|---|
| no class found [message #1060035] |
Wed, 22 May 2013 11:19 |
Steve Howerton Messages: 5 Registered: April 2013 |
Junior Member |
|
|
I am learning to build.xml a project with eclipse ide.
below is the MANIFEST.MF that I am creating.
The build shows that the manifest is being written in the dir structure below.
The dir META-INF (sibling to the src) contains this MANIFEST.MF
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.8.1
Created-By: Apache Ant version 1.8.1 compiled on April 30 2010
Built-By: Steves
Main-Class: build.classes.model.Main
Implementation-Version: 1.0-b0
Built-Date: <tstamp />
Class-Path: build\lib\jcalendar.jar
05/06/2013 06:38 AM <DIR> .
05/06/2013 06:38 AM <DIR> ..
04/07/2013 07:18 AM 864 .classpath
04/02/2013 06:35 AM 688 .project
05/06/2013 06:38 AM <DIR> bin
05/06/2013 06:38 AM <DIR> build
05/05/2013 11:03 AM 15,307 build.properties
05/06/2013 06:32 AM 5,405 build.xml
04/10/2013 10:23 AM 2,612 build_output.xml
05/05/2013 11:08 AM 9,052 build_test.xml
05/06/2013 06:32 AM 328,533 dist.zip.jar
05/06/2013 06:38 AM <DIR> img
05/14/2011 12:20 AM 68,310 jcalendar.jar
03/31/2013 07:00 PM 220,183 junit.jar
04/08/2013 05:53 PM 242 MANIFEST.MF
05/06/2013 06:38 AM <DIR> META-INF
04/11/2013 03:26 AM 1,421 README.txt
05/06/2013 06:38 AM <DIR> src
04/05/2013 06:21 PM 44,599 sys.txt
04/05/2013 06:24 PM 366 temp.txt
13 File(s) 697,582 bytes
7 Dir(s) 710,885,691,392 bytes free
the following MANIFEST.MF is in the jar file too.
it is in the bin dir of the jar file.
Manifest-Version: 1.0
Main-Class: com.toedter.calendar.JCalendarDemo
Created-By: Ant 1.4.1
Name: com/toedter/components/JSpinField.class
Java-Bean: True
Name: com/toedter/calendar/JDayChooser.class
Java-Bean: True
Name: com/toedter/calendar/JCalendar.class
Java-Bean: True
Name: com/toedter/calendar/JMonthChooser.class
Java-Bean: True
Name: com/toedter/calendar/JYearChooser.class
Java-Bean: True
Name: com/toedter/components/JLocaleChooser.class
Java-Bean: True
I am attempting to run the dist.jar.
below is the error. Why does my project never find the Main of my app?
Thanks.
C:\Program Files\Java\jdk1.7.0_15\bin>java -jar %TARGET%\dist\dist.jar
Exception in thread "main" java.lang.NoClassDefFoundError: build/classes/mo
del/Main (wrong name: model/Main)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:791)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.ja
va:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:449)
at java.net.URLClassLoader.access$100(URLClassLoader.java:71)
at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java
:482)
C:\Program Files\Java\jdk1.7.0_15\bin>
a look inside my dist.jar note that the dir "build.classes.model.Main" is the Main I would like to have found.
C:\Program Files\Java\jdk1.7.0_15\bin>jar -tvf %TARGET%\dist\dist.jar
0 Sun May 05 11:08:58 CDT 2013 META-INF/
270 Sun May 05 11:08:56 CDT 2013 META-INF/MANIFEST.MF
864 Sun Apr 07 07:18:10 CDT 2013 .classpath
688 Tue Apr 02 06:35:20 CDT 2013 .project
242 Mon Apr 08 17:53:58 CDT 2013 MANIFEST.MF
1421 Thu Apr 11 03:26:52 CDT 2013 README.txt
0 Sun May 05 10:02:50 CDT 2013 bin/
0 Sun May 05 10:02:50 CDT 2013 bin/META-INF/
493 Wed Jul 17 15:44:52 CDT 2002 bin/META-INF/MANIFEST.MF
0 Sun May 05 10:02:50 CDT 2013 bin/model/
940 Sun May 05 10:02:50 CDT 2013 bin/model/Main.class
0 Sun May 05 10:02:50 CDT 2013 bin/model/math/
385 Sun May 05 10:02:50 CDT 2013 bin/model/math/MyMath.class
0 Sun May 05 10:02:50 CDT 2013 bin/view/
498 Sun May 05 10:02:50 CDT 2013 bin/view/AboutControl.class
2154 Sun May 05 10:02:50 CDT 2013 bin/view/AboutPopup.class
513 Sun May 05 10:02:50 CDT 2013 bin/view/ExitControl.class
1265 Sun May 05 10:02:50 CDT 2013 bin/view/UKLights.class
15307 Sun May 05 11:03:16 CDT 2013 build.properties
5398 Wed Apr 24 07:00:00 CDT 2013 build.xml
0 Sun May 05 11:08:58 CDT 2013 build/
0 Sun May 05 11:08:58 CDT 2013 build/META-INF/
270 Sun May 05 11:08:58 CDT 2013 build/META-INF/MANIFEST.MF
0 Sun May 05 11:08:58 CDT 2013 build/classes/
0 Sun May 05 11:08:58 CDT 2013 build/classes/model/
988 Sun May 05 11:08:58 CDT 2013 build/classes/model/Main.class
0 Sun May 05 11:08:58 CDT 2013 build/classes/model/math/
385 Sun May 05 11:08:58 CDT 2013 build/classes/model/math/MyMath.class
0 Sun May 05 11:08:58 CDT 2013 build/classes/view/
500 Sun May 05 11:08:58 CDT 2013 build/classes/view/AboutControl.class
2071 Sun May 05 11:08:58 CDT 2013 build/classes/view/AboutPopup.class
513 Sun May 05 11:08:58 CDT 2013 build/classes/view/ExitControl.class
1265 Sun May 05 11:08:58 CDT 2013 build/classes/view/UKLights.class
0 Sun May 05 11:08:58 CDT 2013 build/lib/
68310 Sun May 05 11:08:58 CDT 2013 build/lib/jcalendar.jar
0 Sun May 05 11:08:58 CDT 2013 build/main/
0 Sun May 05 11:08:58 CDT 2013 build/main/model/
988 Sun May 05 11:08:58 CDT 2013 build/main/model/Main.class
0 Sun May 05 11:08:58 CDT 2013 build/main/model/math/
385 Sun May 05 11:08:58 CDT 2013 build/main/model/math/MyMath.class
0 Sun May 05 11:08:58 CDT 2013 build/main/view/
500 Sun May 05 11:08:58 CDT 2013 build/main/view/AboutControl.class
2071 Sun May 05 11:08:58 CDT 2013 build/main/view/AboutPopup.class
513 Sun May 05 11:08:58 CDT 2013 build/main/view/ExitControl.class
1265 Sun May 05 11:08:58 CDT 2013 build/main/view/UKLights.class
0 Sun May 05 11:08:58 CDT 2013 build/test/
0 Sun May 05 11:08:58 CDT 2013 build/test/model/
988 Sun May 05 11:08:58 CDT 2013 build/test/model/Main.class
0 Sun May 05 11:08:58 CDT 2013 build/test/model/math/
385 Sun May 05 11:08:58 CDT 2013 build/test/model/math/MyMath.class
0 Sun May 05 11:08:58 CDT 2013 build/test/view/
500 Sun May 05 11:08:58 CDT 2013 build/test/view/AboutControl.class
2071 Sun May 05 11:08:58 CDT 2013 build/test/view/AboutPopup.class
513 Sun May 05 11:08:58 CDT 2013 build/test/view/ExitControl.class
1265 Sun May 05 11:08:58 CDT 2013 build/test/view/UKLights.class
2612 Wed Apr 10 10:23:20 CDT 2013 build_output.xml
9052 Sun May 05 11:08:48 CDT 2013 build_test.xml
0 Tue Apr 23 10:28:58 CDT 2013 img/
62417 Thu Mar 25 22:35:10 CDT 2010 img/Paradise.jpg
68310 Sat May 14 00:20:08 CDT 2011 jcalendar.jar
220183 Sun Mar 31 19:00:00 CDT 2013 junit.jar
0 Tue Apr 23 10:29:16 CDT 2013 src/
0 Mon Apr 08 05:43:36 CDT 2013 src/META-INF/
493 Wed Jul 17 15:44:52 CDT 2002 src/META-INF/MANIFEST.MF
0 Tue Apr 09 05:41:18 CDT 2013 src/model/
518 Tue Apr 23 09:45:42 CDT 2013 src/model/Main.java
0 Tue Apr 02 06:03:54 CDT 2013 src/model/math/
138 Mon Apr 01 12:44:20 CDT 2013 src/model/math/MyMath.java
0 Wed Apr 24 06:46:56 CDT 2013 src/view/
179 Wed Apr 24 06:47:12 CDT 2013 src/view/AboutControl.java
1322 Wed Apr 24 06:50:54 CDT 2013 src/view/AboutPopup.java
178 Wed Apr 24 06:45:18 CDT 2013 src/view/ExitControl.java
841 Wed Apr 24 06:44:00 CDT 2013 src/view/UKLights.java
44599 Fri Apr 05 18:21:22 CDT 2013 sys.txt
366 Fri Apr 05 18:24:22 CDT 2013 temp.txt
C:\Program Files\Java\jdk1.7.0_15\bin>
|
|
| | Topic: IJavaProject without Eclipse Environment |
|---|
| IJavaProject without Eclipse Environment [message #1059999] |
Wed, 22 May 2013 09:50 |
Burak Emre Kabakcı Messages: 2 Registered: May 2013 |
Junior Member |
|
|
I have an exported Eclipse Java Project in my server and I want to be able to compile the project and use proposals programmatically with JDT.
I'm able to compile the project using BatchCompiler, however it runs on console and gives me PrintWriters instead of an array of problems and errors. Also I want to be able to use proposals in Eclipse and BatchCompiler didn't built for this purpose.
Therefore I tried to use ASTParser, it can be used with either char[] or ICompilationUnit. CompletionProposalCollector and org.eclipse.jdt.internal.compiler.Compiler.Compiler needs ICompilationUnit so I have to create an ICompilationUnit which only can be created by an IJavaProject (dl.dropboxusercontent.com/u/10773282/2012/eclipse_workspace.pdf) in order to be able to use these features.
It seems the only way to create IJavaProject is to use ResourcesPlugin.getWorkspace(), however it returns java.lang.IllegalStateException: Workspace is closed. on my computer and it seems the reason is that the program that I coded is not an Eclipse plug-in.
Is there any way to create IJavaProject without Eclipse environment?
|
|
| | Topic: I want my perspective button bar back |
|---|
| I want my perspective button bar back [message #1059825] |
Tue, 21 May 2013 14:15 |
Marc Ewert Messages: 3 Registered: December 2012 |
Junior Member |
|
|
Hi,
is there any chance that we can get back the perspective button bar from the pre 4.x eclipse versions? I know so many people that are still using the version 3.7 or 3.8 because of the unfinished refactoring of the perspective button bar.
Why was it changed in such an inconvenient and unfinshed way? It's like driving a perfect car until a new designer arrives, who decides to move the direction-indicator control somewhere on the door on the passenger's side.
Is it really only a minority which bothers about the usability of the new perspective buttons, or are there many people who wants the dedicated perspective button bar back?
|
|
| | Topic: JSP is not opening in Eclipse Juno |
|---|
| JSP is not opening in Eclipse Juno [message #1059746] |
Tue, 21 May 2013 09:51 |
ram ram Messages: 1 Registered: May 2013 |
Junior Member |
|
|
JSP is not opening in Eclipse Juno Service Release 2.getting below exception while opening JSP page which has JSTL tags.Please refer screenshot for error details.
java.lang.IllegalArgumentException: URLDecoder: Illegal hex characters in escape (%) pattern - For input string: "=c"
at java.net.URLDecoder.decode(Unknown Source)
at org.eclipse.jst.pagedesigner.utils.ProjectResolver.getLocationByURI(ProjectResolver.java:372)
|
|
| | Topic: eclipse shortcuts |
|---|
| eclipse shortcuts [message #1059710] |
Tue, 21 May 2013 06:17 |
Wang Guohui Messages: 1 Registered: May 2013 |
Junior Member |
|
|
Hi, I am a JAVA developer from China.
I have used Eclipse for 2 years in Windows that OS's language is Chinese.I'm becoming acclimated to the default shortcuts of eclipse in Chinese Windows.
Now I am working in an American company.The OS's language is English. I decompressed the same eclipse.zip file into the computer. I found that the default shortcuts were different from before. This makes me very uncomfortable.I don't wanna modify the shortcuts one by one. Is there any better idea?
By the way, there is one thing confused me. Why the default shortcuts reference to the operation system's language?
|
|
| | Forum: Virgo |
|---|
| Topic: Virgo does not start up on Windows 2008 64 bit Virtual machine- Timeout exception thrown |
|---|
| Virgo does not start up on Windows 2008 64 bit Virtual machine- Timeout exception thrown [message #1060459] |
Fri, 24 May 2013 15:20 |
shakthi k Messages: 1 Registered: May 2013 |
Junior Member |
|
|
Hello,
I am running into an issue where virgo does not start up on a windows 2008 64 bit virtual machine, I am seeing the following error in the logs (have the full logs in the attachment). I have a value of 1200 in the timeout in wrapper.conf:
wrapper.startup.timeout=1200
There is a value of 600 in org.eclipse.virgo.kernel.properties:
deployer.timeout= 600
After deleting the work, serviceability folders and starting again, virgo starts up fine. But it does not start up the first time after restart of the Virtual machine, appreciate any ideas on what is causing the issue?
Caused by: org.osgi.framework.BundleException: Exception in org.eclipse.virgo.kernel.userregion.internal.Activator.start() of bundle org.eclipse.virgo.kernel.userregion.
[2013-05-22 14:13:41.844] ERROR WrapperSimpleAppMain System.err at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleConte... Caused by: java.util.concurrent.TimeoutException: org.eclipse.virgo.repository.Repository
[2013-05-22 14:13:41.847] ERROR WrapperSimpleAppMain System.err at org.eclipse.virgo.kernel.userregion.internal.Activator.getPotentiallyDelayedService(Activator.java:352)
[2013-05-22 14:13:41.847] ERROR WrapperSimpleAppMain System.err at org.eclipse.virgo.kernel.userregion.internal.Activator.start(Activator.java:101)
[2013-05-22 14:13:41.848] ERROR WrapperSimpleAppMain System.err at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:711)
[2013-05-22 14:13:41.848] ERROR WrapperSimpleAppMain System.err at java.security.AccessController.doPrivileged(Native Method)
[2013-05-22 14:13:41.849] ERROR WrapperSimpleAppMain System.err at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:702)
[2013-05-22 14:13:41.849] ERROR WrapperSimpleAppMain System.err ... 23 more
Attachment: log_64_2.log
(Size: 106.67KB, Downloaded 2 times)
|
|
| | Topic: SpringIntegration 2.2.3.RELEASE + Maven + Virgo |
|---|
| SpringIntegration 2.2.3.RELEASE + Maven + Virgo [message #1060190] |
Thu, 23 May 2013 08:59 |
Paolo Pino Messages: 1 Registered: May 2013 |
Junior Member |
|
|
Hi all,
i have a jar application that use spring-integration 2.2.3 build with maven.
I'm new to Virgo so, following the virgo documentation i do these steps:
1. copy dependency of jar (maven) to $SERVER_HOME/repository/usr
2. generate manifest
3. deploy
...but nothing work.
So i've tried to deploy only spring-integration to virgo and this is the result:
...
Caused by: java.lang.RuntimeException: java.lang.RuntimeException: java.util.zip.ZipException: invalid LOC header (bad signature)
at org.eclipse.virgo.kernel.userregion.internal.equinox.TransformedManifestProvidingBundleFileWrapper$TransformedManifestProvidingBundleFile.getEntry(TransformedManifestProvidingBundleFileWrapper.java:150)
I use openjdk-7 and virgo tools in eclipse
Can someone help me?
tnx
|
|
| | Topic: Virgo 3.6.2 Release |
|---|
| Virgo 3.6.2 Release [message #1059979] |
Wed, 22 May 2013 08:25 |
Violeta Georgieva Messages: 173 Registered: October 2010 |
Senior Member |
|
|
Hi,
Virgo 3.6.2.RELEASE is available for download.
This release updates the versions of the enterprise components. The new Virgo Nano Web version comes with various performance improvements. The release also includes several bug fixes.
Please see the release notes for more details.
Regards
Violeta
|
|
| | Forum: SWTBot |
|---|
| Topic: Swtbot still depends on org.junit4? |
|---|
| | Forum: CDT |
|---|
| Topic: interrupt in ubuntu's' console |
|---|
| interrupt in ubuntu's' console [message #1060487] |
Sat, 25 May 2013 04:47 |
eyal a Messages: 1 Registered: May 2013 |
Junior Member |
|
|
Hello,
I use eclipse C with ubuntu.
I would like to Implement a ctrl-z interrupt by sigint. In the ubuntu's shell it works properly, however by running the same program with eclipse the interrupt does not respond in the console.
What can be done to solve that?
Regards,
Eyal
|
|
| | Topic: Pretty printers not work |
|---|
| | Topic: Override method Run of the C projects |
|---|
| | Topic: How to change project settings by script/tool |
|---|
| How to change project settings by script/tool [message #1060169] |
Thu, 23 May 2013 07:43 |
kalin dimitrovv Messages: 1 Registered: May 2013 |
Junior Member |
|
|
I use eclipse CDT with scons and sconsolidator.
I can build my project and all is ok, but if i don't set include directories and symbols in eclipse project, eclipse intelisense will show me errors of type unresolved symbols.
Is there way to run script which set this variable for my project ?
|
|
| | Topic: Disabling file overview on click in "C/C++ Projects" tree view? |
|---|
| | Topic: How to use and modify the AST tutorial |
|---|
| | Topic: problem with ECLIPSE |
|---|
| problem with ECLIPSE [message #1059699] |
Tue, 21 May 2013 05:17 |
tupac nymar Messages: 5 Registered: April 2013 |
Junior Member |
|
|
Hi,
I use eclipse for the first time. I installed it on fedora 15.
I made
---> new C++ project
---> named the project and chose hello world project with cross toolchain
---> next---->next
---> PREFIX= arm-rpi-linux-gnueabi-
PATH= /home/makavelli/x-tools/arm-rpi-linux-gnueabi/bin
---> FINISH
but as u see in picture eclipse can't find the compiler in the path, even it does exist and i use it to compile everything in linux.
|
|
| | Forum: Vex |
|---|
| Topic: Reopening a dialog with Vex |
|---|
| Reopening a dialog with Vex [message #1060422] |
Fri, 24 May 2013 10:59 |
shay leon Messages: 4 Registered: June 2012 |
Junior Member |
|
|
Hi Florian.
I wonder if by any chance you can help me with this issue:
I am doing something pretty similar to your example in the German magazine.
The difference is - I need to re-open the dialog with text submitted to it previously, so an example workflow would be:
* Open dialog, write TEXT, click BOLD button, click OK
-- (when dialog closes, store dialog.getDocument() )
* Open dialog (I'm sending to it the previously saved Document). It has TEXT in BOLD and allows me to add more text.
This works fine, but I keep getting an error message saying that VexWidget is disposed. (This could be happening since the dialog.getDocument doesn't exist anymore. If I re-open the dialog with a new Document, there is no error message, but obviously it doesn't have the content which I submitted in previous entries. )
I think if there was a way to clone Document, so that when reopening the dialog, I'll send to it a new Document with values from previous openings, this will solve the problem, but Document does not provide such access.
Any feedback would be appreciated!
Thanking you.
Shay
|
|
| | Forum: JFace |
|---|
| Topic: Dynamic combobox in tableviewer |
|---|
| Dynamic combobox in tableviewer [message #1060383] |
Fri, 24 May 2013 07:23 |
Don Smyth Messages: 6 Registered: April 2013 |
Junior Member |
|
|
I have a TableViewer with 3 columns.
<String> name, <ComboBoxViewerCellEditor> cellEdit1, <ComboBoxViewerCellEditor> cellEdit2.
I am using EditingSupport and the E4 IEventBroker for cell editing and messaging.
The table is populated from a file.
Based on the user selection in cellEdit1 I would like to change the data model in cellEdit2. (eg user selects 'fish' in cellEdit1, then cellEdit2's model becomes 'gills','scales','fins'; if user selects 'cats' in cellEdit1, cellEdit2's model becomes 'fur', 'tail', 'paws'. etc...
Note that the user can select different animal types on each row of column 2, and the models in column 3 will should different for each row.
I tried implementing a map copy of the data model for cellEdit1, and registered the class containing the map with IEventBroker. I can receive an event that the model for cellEdit1 has changed but I cannot work out a way to know which row in the second table column was changed.- the Object that is sent to the setValue(Object element, Object value) method in the EditingSupport class has little information.
Has anyone else come accross this issue? is there some other way to monitor cells in a TableViewer or get cell row number information?
//
I just found a way to do this:
Pass the TableViewer object into the column3 EditingSupport class and keep a copy.
Then on the getValue(Object element) method do
int indx = tViewer.getTable().getSelectionIndex();
TableItem ti = tViewer.getTable().getItem(indx);
MyDataModel dataModel = (MyDataModel) ti.getData();
check the dataModel for the animal type and put a new model
if needed in the ComboBoxViewerCellEditor with:
cellEditor.setInput(newArrayList);
[Updated on: Fri, 24 May 2013 10:16] Report message to a moderator
|
|
| | Topic: Re: Detecting keys while showing a context menu |
|---|
| Re: Detecting keys while showing a context menu [message #1060201] |
Thu, 23 May 2013 09:33 |
Christophe Bouhier Messages: 695 Registered: July 2009 |
Senior Member |
|
|
On 23-05-13 15:09, Vijay Raj wrote:
> When you get a selection event on a menu item, the SelectionEvent object
> contains a variable called stateMask, this represents the keybord states
> if any..
>
> /**
> * The state of the keyboard modifier keys at the time
> * the event was generated.
> */
> public int stateMask;
Great, this could be usefull. I am afraid however this gets lost on the
JFace abstraction of a SelectionChangedEvent. Are there any ways around
this? (CC Jface forum)
*** from StructuredViewer
/**
* Handles a select event from the widget.
* <p>
* This method is internal to the framework; subclassers should not call
* this method.
* </p>
*
* @param event
* the SWT selection event
*/
protected void handleSelect(SelectionEvent event) {
// handle case where an earlier selection listener disposed the control.
Control control = getControl();
if (control != null && !control.isDisposed()) {
updateSelection(getSelection());
}
}
>
|
|
| | Topic: tableviewer display control |
|---|
| tableviewer display control [message #1060081] |
Wed, 22 May 2013 22:14 |
chang jiaqiang Messages: 2 Registered: May 2013 |
Junior Member |
|
|
hi,
I want to display a ProgressBar control in the table by using tableviewer,how can I do that? I konw if I don't use tableviewer I can code like this
Table table = new Table(shell, SWT.BORDER);
new TableColumn(table, SWT.NONE).setText("ProgressBar");
TableItem item = new TableItem(table, SWT.NONE);
ProgressBar bar = new ProgressBar(table, SWT.NONE);
TableEditor editor = new TableEditor(table);
editor.setEditor(bar, item, 0);
but if I use tableviewer I don't know how I can do that.
thanks
|
|
| | Topic: display images with tableviewer |
|---|
| display images with tableviewer [message #1060077] |
Wed, 22 May 2013 21:09 |
chang jiaqiang Messages: 2 Registered: May 2013 |
Junior Member |
|
|
hi,
I need to display images on each column in the table with tableviewer,so I implements the interface ITableLabelProvider in which there is a method "public Image getColumnImage(Object arg0, int arg1){}" and this method can display images on each column,right? So I code like this
public Image getColumnImage(Object arg0, int arg1)
{
Image image = null;
if(arg1==1){
image = new Image(null,10,20);//width=10
}
if(arg1==2){
image = new Image(null,20,20);//width=20
}
if(arg1==3){
image = new Image(null,30,20);//width=30
}
....
return image;
}
well, the problem is the image on the column 1 is good,but the images on the column 2 and 3 is not good, their size is the same as the column 1 image's size(width=10).
if I initialize the column 1 image with width 20(image = new Image(null,20,20)),all the images on the table is the same width.why? why can't the images have different size? if I wanna display images with different size,how can I do that?
|
|
| | Forum: Proposals |
|---|
| Topic: Ogee project proposal posted |
|---|
| Ogee project proposal posted [message #1060258] |
Thu, 23 May 2013 13:18 |
Wayne Beaton Messages: 464 Registered: July 2009 |
Senior Member |
|
|
Ogee provides Eclipse-based developer tools for the provisioning and consumption of OData services regardless of the service provisioning platform and service consuming technology. It comprises a graphical OData Model Editor for the creation of OData models that define the data structure required and service consumption toolkits that allow you to create and design the applications with which you can consume the data retrieved from your OData producer.
http://eclipse.org/proposals/technology.ogee/
|
|
| | Forum: Subversive |
|---|
| Topic: patch |
|---|
| patch [message #1060206] |
Thu, 23 May 2013 09:49 |
Walter Deodiaus Messages: 1 Registered: May 2013 |
Junior Member |
|
|
I wanted to create a set of patches for files.
I would like to write a java program which traverses the hierarchy and compares files, and if different, creates a patch. Is the API exposed for creating a patch? If so, where is this?
My problem is more complicated. I have two different svn repositories. I'd like to compare my differences in one dir against another one in order to create scripts to update on the other one. Is there an easy way to do this.
I was going to write a script which renames all .svn dirs to .svn0, then copies the .svn from the other dir and does the comparison.
|
|
| | Forum: Service Oriented Architecture Tools Platform (STP) |
|---|
| Topic: I can't get STP plugin !!! |
|---|
| I can't get STP plugin !!! [message #1060078] |
Wed, 22 May 2013 21:18 |
imen imen Messages: 1 Registered: May 2013 |
Junior Member |
|
|
Hello,
I have eclipse Galileo R1 installed and I tried to follow the attached tutorial but all the links are dead.
I did some research myself but i can't find a repository to download STP plugin.
can anyone please give me a link that works?
thank you
|
|
| | Forum: EPF |
|---|
| Topic: Differences between actual and future Method Content |
|---|
| Differences between actual and future Method Content [message #1060053] |
Wed, 22 May 2013 13:29 |
 |
Henk Wolthuis Messages: 1 Registered: May 2013 |
Junior Member |
|
|
Hi,
I hope that the following application of EPF Composer is a valid feature:
a) I want to configure an actual (sub-)set of tasks, roles, products and processes (IST-situation);
b) Then I want to define and configure the (disired)future (sub-)set of tasks et cetera . . . I've only changed 1 process (SOLL-situation).
How can I derive the differences between the actual and the disired process-model?
(Then a have the transition- migration information in my hands!)
If it's not a known feature of EPF Composer, maybe you can specify with wich Eclipse package|project this is possible?
I hope somebody can help,
Kind regards,
Henk
[Updated on: Thu, 23 May 2013 12:28] Report message to a moderator
|
|
| | Forum: Nebula |
|---|
| Topic: Style GridTreeViewer's node connectors |
|---|
| | Forum: QVT-Relations |
|---|
| Topic: [Announce] Eclipse QVTd 0.10.0 (Kepler) RC1 is now available |
|---|
| | Forum: Jobs and employment |
|---|
| Topic: Wanted: Senior Software Engineer (I) or (II) |
|---|
| Wanted: Senior Software Engineer (I) or (II) [message #1060046] |
Wed, 22 May 2013 11:56 |
Scott Evans Messages: 1 Registered: May 2013 |
Junior Member |
|
|
Senior Software Engineer (I) or (II)
Milpitas, CA
Sonics is looking for a full time employee at the Sonics HQ. In this position, you will need to work well within a team of engineers to develop Electronic Design Automation (EDA) software and Graphical User Interface (GUI) software.
General Responsibility:
Develop Electronic Design Automation (EDA) tool/environment software with strong emphasis on GUI technologies based on the Java/Eclipse platform, and using modern software engineering approaches like Model Driven Architecture, objects modeling technologies, design patterns.
Actively participate to architecture definition and implementation
Document algorithms, data structures, APIs, and data modeling concepts implemented in the software tool or environment.
Other duties as assigned.
Qualifications:
Solid, proven expertise in the Java language
Solid, proven expertise in working with the Eclipse framework and Eclipse key technologies: EMF, SWT/GEF
Experience with modeling and model driven SW architecture
Passion for code integrity and high quality SW architecture
Agile development practices
Good team player, good written and verbal communication skills
Ability to think beyond the task to create companywide impact
knowledge of a scripting language such as Python/TCL/Perl a plus
Knowledge of ASIC design, computer architecture modeling a plus
Education/ Experience:
Minimum of a Master degree in CS/ECE, around 10 years total experience as a software engineer with more than 5 years of hands-on experience building Eclipse-based tools and rich client desktop applications.
Contact:
Katherine Moore
kmoore@sonicsinc.com
Address: Sonics Inc., 890 N. McCarthy Blvd Ste 200 Milpitas, CA 95035
Fax:(408) 457-2899
|
|
| | Forum: Paho |
|---|
| Topic: Puback not received |
|---|
| Puback not received [message #1059991] |
Wed, 22 May 2013 09:14 |
marco divita Messages: 2 Registered: May 2013 |
Junior Member |
|
|
Hi,
I have a problem in my mqtt client.
The scenario is:
1) A client with id "macchina 1" is connected to broker with Keep Alive Timer = 0 and it's subscribed to topic c/1/+/sts (this client is based on Paho library)
2) Another client with id "3" connects to broker every 5 minutes and it publishes a message on topic c/1/3/sts
During it's working happens that the client with id "macchina 1" doesn't send anymore the puback and after some retring of publishing of the broker the socket gives an error for "macchina 1".
To recover I need to restar the application with client id "macchina 1" because the client's connection is put down.
Here it is the mosquitto's log:
1369208386: New connection from 95.240.30.96.
1369208386: New client connected from 95.240.30.96 as macchina1.
1369208386: Sending CONNACK to macchina1 (0)
1369208387: Received PINGREQ from macchina1
1369208387: Sending PINGRESP to macchina1
1369208400: New connection from 151.18.71.174.
1369208400: New client connected from 151.18.71.174 as 3.
1369208400: Sending CONNACK to 3 (0)
1369208407: Received PUBLISH from 3 (d0, q1, r1, m10, 'c/1/3/sts', ... (19 bytes))
1369208407: Sending PUBACK to 3 (Mid: 10)
1369208407: Sending PUBLISH to macchina1 (d0, q1, r0, m753, 'c/1/3/sts', ... (19 bytes))
1369208407: Received PUBACK from macchina1 (Mid: 753)
1369208413: Received DISCONNECT from 3
1369208697: New connection from 151.47.77.5.
1369208697: New client connected from 151.47.77.5 as 3.
1369208697: Sending CONNACK to 3 (0)
1369208706: Received PUBLISH from 3 (d0, q1, r1, m10, 'c/1/3/sts', ... (19 bytes))
1369208706: Sending PUBACK to 3 (Mid: 10)
1369208706: Sending PUBLISH to macchina1 (d0, q1, r0, m754, 'c/1/3/sts', ... (19 bytes))
1369208706: Received PUBACK from macchina1 (Mid: 754)
1369208712: Received DISCONNECT from 3
1369208995: New connection from 151.19.68.34.
1369208996: New client connected from 151.19.68.34 as 3.
1369208996: Sending CONNACK to 3 (0)
1369209002: Received PUBLISH from 3 (d0, q1, r1, m10, 'c/1/3/sts', ... (19 bytes))
1369209002: Sending PUBACK to 3 (Mid: 10)
1369209002: Sending PUBLISH to macchina1 (d0, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
[color=red]There isn't PUBACK from macchina1[/color]
1369209009: Received DISCONNECT from 3
1369209023: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209044: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209065: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209086: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209107: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209109: Saving in-memory database to /var/lib/mosquitto/mosquitto.db.
1369209128: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209149: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209170: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209191: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209212: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209233: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209254: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209275: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209292: New connection from 151.46.34.137.
1369209293: New client connected from 151.46.34.137 as 3.
1369209293: Sending CONNACK to 3 (0)
1369209296: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209299: Received PUBLISH from 3 (d0, q1, r1, m10, 'c/1/3/sts', ... (19 bytes))
1369209299: Sending PUBACK to 3 (Mid: 10)
1369209306: Received DISCONNECT from 3
1369209317: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209338: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209359: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209380: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209401: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209422: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209443: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209464: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209485: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209506: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209527: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209548: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209569: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209589: New connection from 151.31.161.144.
1369209589: New client connected from 151.31.161.144 as 3.
1369209589: Sending CONNACK to 3 (0)
1369209590: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209596: Received PUBLISH from 3 (d0, q1, r1, m10, 'c/1/3/sts', ... (19 bytes))
1369209596: Sending PUBACK to 3 (Mid: 10)
1369209602: Received DISCONNECT from 3
1369209611: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209632: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209653: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209674: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209695: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209716: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209737: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209758: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209779: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209800: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209821: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209842: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209863: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209884: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209886: New connection from 151.46.130.62.
1369209887: New client connected from 151.46.130.62 as 3.
1369209887: Sending CONNACK to 3 (0)
1369209893: Received PUBLISH from 3 (d0, q1, r1, m10, 'c/1/3/sts', ... (19 bytes))
1369209893: Sending PUBACK to 3 (Mid: 10)
1369209899: Received DISCONNECT from 3
1369209905: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209926: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369209947: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
[color=red]1369209956: Socket read error on client macchina1, disconnecting.[/color]
[b][color=blue]Restart my application[/color][/b]
1369210135: New connection from 95.240.30.96.
1369210135: New client connected from 95.240.30.96 as macchina1.
1369210135: Sending CONNACK to macchina1 (0)
1369210135: Sending PUBLISH to macchina1 (d1, q1, r0, m755, 'c/1/3/sts', ... (19 bytes))
1369210135: Received PINGREQ from macchina1
1369210135: Sending PINGRESP to macchina1
1369210136: Received PUBACK from macchina1 (Mid: 755)
1369210136: Sending PUBLISH to macchina1 (d0, q1, r0, m756, 'c/1/3/sts', ... (19 bytes))
1369210136: Received PUBACK from macchina1 (Mid: 756)
1369210136: Sending PUBLISH to macchina1 (d0, q1, r0, m757, 'c/1/3/sts', ... (19 bytes))
1369210137: Received PUBACK from macchina1 (Mid: 757)
1369210137: Sending PUBLISH to macchina1 (d0, q1, r0, m758, 'c/1/3/sts', ... (19 bytes))
1369210137: Received PUBACK from macchina1 (Mid: 758)
|
|
| | Forum: DTP |
|---|
| Topic: Data Source Explorer Column list reverse order Java 7 |
|---|
| Data Source Explorer Column list reverse order Java 7 [message #1059857] |
Tue, 21 May 2013 20:11 |
Francine Mising name Messages: 13 Registered: July 2009 |
Junior Member |
|
|
|
When running Eclipse Juno SR1 on JRE 1.7 and exploring tables in the Data Source Explorer, the list of columns in the Columns folder is in reverse order. It is in correct order on JRE 1.6. The list of Schemas and Tables are correct. Does anyone know what is happening or how to fix this problem?
|
|
| | Forum: Mylyn |
|---|
| Topic: Subtasks ghosted (grayed out) |
|---|
| Subtasks ghosted (grayed out) [message #1059758] |
Tue, 21 May 2013 10:20 |
David Brown Messages: 4 Registered: December 2012 |
Junior Member |
|
|
Hi, I have been using mylyn task list successfully for a few months.
Now, when I try to create a new subtask suddenly the subtask menu item is not available (ghosted or grayed out).
Any ideas how to rectify this very damaging situation?
|
|
| | Forum: Riena |
|---|
| Topic: Riena 4.0.0.0 Update Site Broken? |
|---|
| Riena 4.0.0.0 Update Site Broken? [message #1059694] |
Tue, 21 May 2013 05:02 |
Peter Kullmann Messages: 190 Registered: July 2009 |
Senior Member |
|
|
Hi, I'm trying to access the update site http://download.eclipse.org/rt/riena/4.0.0.0/update and use one of the features as a target platform. The problem is this:
Problems downloading artifact: osgi.bundle,org.eclipse.nebula.widgets.compositetable,1.0.0.
Error reading signed content:/var/folders/91/9qzh8np162nf454ybx3jzcgm0000gn/T/signatureFile1215232514572584084.jar
In the error log:
Either the manifest file or the signature file has been tampered in this jar: /var/folders/91/9qzh8np162nf454ybx3jzcgm0000gn/T/signatureFile1215232514572584084.jar
Best regards,
Peter
|
|
|
Pages (3): [ 3]
Current Time: Tue May 28 04:15:57 EDT 2013
Powered by FUDForum. Page generated in 0.05146 seconds
|