You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
(1) |
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
(4) |
Jul
(2) |
Aug
(35) |
Sep
|
Oct
(2) |
Nov
(9) |
Dec
|
2008 |
Jan
|
Feb
(5) |
Mar
(1) |
Apr
(10) |
May
(8) |
Jun
(4) |
Jul
(9) |
Aug
(2) |
Sep
(7) |
Oct
(19) |
Nov
(17) |
Dec
|
From: Marcel R. <mr...@ma...> - 2007-08-17 11:04:41
|
Hi, i have just noticed that two different J2ME applications seem to use the same ~/.microemulator/suite-null/config.rs RecordStore file which is, i think, not correct for AUTHMODE_PRIVATE. Both open the store with RecordStore.openRecordStore("config",true) which uses the default AUTHMODE_PRIVATE. Thanks Marcel -- Marcel Ruff http://www.xmlBlaster.org |
From: Marcel R. <mr...@ma...> - 2007-08-14 16:15:25
|
Hi again, i have now found out that it is related to my code using Canvas, here is a functional example, it works fine in WTK but not in microemu, thanks Marcel Title.java =============================== package title; import javax.microedition.lcdui.Canvas; import javax.microedition.lcdui.Display; import javax.microedition.midlet.MIDlet; import javax.microedition.midlet.MIDletStateChangeException; public class Title extends MIDlet { Canvas c; protected void destroyApp(boolean arg0) throws MIDletStateChangeException {} protected void pauseApp() {} protected void startApp() throws MIDletStateChangeException { c = new CanvasTest("HELLO"); Display.getDisplay(this).setCurrent(c); } } =============================== CanvasTest.java =============================== package title; import javax.microedition.lcdui.Canvas; import javax.microedition.lcdui.Graphics; public class CanvasTest extends Canvas { public CanvasTest(String title) { setTitle(title); } protected void paint(Graphics arg0) { } } =============================== Bartek Teodorczyk wrote: > 2007/8/13, Marcel Ruff <mr...@ma...>: > >> Thanks this helped to compile, I'm using now the svn snapshot from today. >> >> But the problem remains: The title is white and empty (but fine on WTK >> and real devices). >> >> Any more ideas :-)? >> >> > > Create a send me simple MIDlet to reproduce that problem. > > >> thanks >> Marcel >> >> PS: When using the snapshot instead of 2.0.1 i have to use again >> '--usesystemclassloader' >> to get the debug session running (see my previous threads about this topic): >> >> --usesystemclassloader >> --propertiesjad My.jad >> org.xmlBlaster.MyMidlet >> >> is this a 'must have' option with the coming release? >> >> > > Please send me some sample code, I'll try to look into it. > > Bartek > > >> Vlad Skarzhevskyy wrote: >> >>> Uncomment pluginRepository pyx4me-web in your main pom. when building >>> the code from the SVN. >>> >>> On 8/13/07, *Marcel Ruff* < mr...@ma... >>> <mailto:mr...@ma...>> wrote: >>> >>> Bartek Teodorczyk wrote: >>> > I think the problem is not with the white colors but because of the >>> > bug that doesn't call repaint after setTitle call. I've fixed it >>> right >>> > now on the trunk. >>> > >>> >>> >> -- >> Marcel Ruff >> http://www.xmlBlaster.org >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. >> Still grepping through log files to find problems? Stop. >> Now Search log events and configuration files using AJAX and a browser. >> Download your FREE copy of Splunk now >> http://get.splunk.com/ >> _______________________________________________ >> Microemulator-users mailing list >> Mic...@li... >> https://lists.sourceforge.net/lists/listinfo/microemulator-users >> >> > > -- Marcel Ruff http://www.xmlBlaster.org |
From: Bartek T. <ba...@ba...> - 2007-08-14 10:15:09
|
2007/8/13, Marcel Ruff <mr...@ma...>: > Thanks this helped to compile, I'm using now the svn snapshot from today. > > But the problem remains: The title is white and empty (but fine on WTK > and real devices). > > Any more ideas :-)? > Create a send me simple MIDlet to reproduce that problem. > thanks > Marcel > > PS: When using the snapshot instead of 2.0.1 i have to use again > '--usesystemclassloader' > to get the debug session running (see my previous threads about this topic): > > --usesystemclassloader > --propertiesjad My.jad > org.xmlBlaster.MyMidlet > > is this a 'must have' option with the coming release? > Please send me some sample code, I'll try to look into it. Bartek > Vlad Skarzhevskyy wrote: > > Uncomment pluginRepository pyx4me-web in your main pom. when building > > the code from the SVN. > > > > On 8/13/07, *Marcel Ruff* < mr...@ma... > > <mailto:mr...@ma...>> wrote: > > > > Bartek Teodorczyk wrote: > > > I think the problem is not with the white colors but because of the > > > bug that doesn't call repaint after setTitle call. I've fixed it > > right > > > now on the trunk. > > > > > > > -- > Marcel Ruff > http://www.xmlBlaster.org > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Microemulator-users mailing list > Mic...@li... > https://lists.sourceforge.net/lists/listinfo/microemulator-users > |
From: Marcel R. <mr...@ma...> - 2007-08-13 15:42:15
|
Thanks this helped to compile, I'm using now the svn snapshot from today. But the problem remains: The title is white and empty (but fine on WTK and real devices). Any more ideas :-)? thanks Marcel PS: When using the snapshot instead of 2.0.1 i have to use again '--usesystemclassloader' to get the debug session running (see my previous threads about this topic): --usesystemclassloader --propertiesjad My.jad org.xmlBlaster.MyMidlet is this a 'must have' option with the coming release? Vlad Skarzhevskyy wrote: > Uncomment pluginRepository pyx4me-web in your main pom. when building > the code from the SVN. > > On 8/13/07, *Marcel Ruff* < mr...@ma... > <mailto:mr...@ma...>> wrote: > > Bartek Teodorczyk wrote: > > I think the problem is not with the white colors but because of the > > bug that doesn't call repaint after setTitle call. I've fixed it > right > > now on the trunk. > > > -- Marcel Ruff http://www.xmlBlaster.org |
From: Marcel R. <mr...@ma...> - 2007-08-13 14:52:29
|
Bartek Teodorczyk wrote: > I think the problem is not with the white colors but because of the > bug that doesn't call repaint after setTitle call. I've fixed it right > now on the trunk. > Ahh, good to hear! Can i download the microemu.jar snapshot somewhere? I've tried with svn and mvn but after this i gave up: Downloading: http://repository.codehaus.org/net/sf/jour/jour-maven-plugin/2.0.0-SNAPSHOT/jour-maven-plugin-2.0.0-SNAPSHOT.jar [WARNING] Unable to get resource 'net.sf.jour:jour-maven-plugin:maven-plugin:2.0.0-SNAPSHOT' from repository codehaus.org (http://repository.codehaus.org) thanks for you quick turnaround :-) Marcel > Bartek > > 2007/8/13, Marcel Ruff <mr...@ma...>: > >> Hi, >> >> i'm calling >> >> displayable.setTitle("Bla"); >> >> but it is not visible in microemu as my font seems to be white >> and the title bar background is white as well. >> >> How can i change this? >> >> Thanks >> Marcel >> >> -- >> Marcel Ruff >> http://www.xmlBlaster.org >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. >> Still grepping through log files to find problems? Stop. >> Now Search log events and configuration files using AJAX and a browser. >> Download your FREE copy of Splunk now >> http://get.splunk.com/ >> _______________________________________________ >> Microemulator-users mailing list >> Mic...@li... >> https://lists.sourceforge.net/lists/listinfo/microemulator-users >> >> > > -- Marcel Ruff http://www.xmlBlaster.org |
From: Bartek T. <ba...@ba...> - 2007-08-13 10:08:04
|
I think the problem is not with the white colors but because of the bug that doesn't call repaint after setTitle call. I've fixed it right now on the trunk. Bartek 2007/8/13, Marcel Ruff <mr...@ma...>: > Hi, > > i'm calling > > displayable.setTitle("Bla"); > > but it is not visible in microemu as my font seems to be white > and the title bar background is white as well. > > How can i change this? > > Thanks > Marcel > > -- > Marcel Ruff > http://www.xmlBlaster.org > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Microemulator-users mailing list > Mic...@li... > https://lists.sourceforge.net/lists/listinfo/microemulator-users > |
From: Marcel R. <mr...@ma...> - 2007-08-12 22:58:28
|
Hi, i'm calling displayable.setTitle("Bla"); but it is not visible in microemu as my font seems to be white and the title bar background is white as well. How can i change this? Thanks Marcel -- Marcel Ruff http://www.xmlBlaster.org |
From: Marcel R. <mr...@ma...> - 2007-08-07 12:57:27
|
I've found the solution now, this works fine (eclipseme 1.7.3): In the 'Debug View' -> Choose 'Arguments' tab and enter to "Program arguments": ======================= --propertiesjad /data/My.jad org.xmlBlaster.MyMidlet ======================= Thanks for all your help Marcel Rushabh Doshi wrote: > Vlad is totally right. Its *not* a system property, it is an argument to > main. > > -Rushabh > > -----Original Message----- > From: mic...@li... > [mailto:mic...@li...] On Behalf Of > Vlad Skarzhevskyy > Sent: Monday, August 06, 2007 7:13 PM > To: mic...@li... > Subject: Re: [Microemulator-users] Using jad with eclipseme > > I don't think we have System property "--usesystemclasspath". argument > to main yes. > > As to integration into EclipseME this is the issue of integration. > Need to ask EclipseME developers to fix this. > > Also you reported two problems: > 1) additional library in MIDlet from additional project - This goes > to EclipseME submit them a BUG. > Ask them to add --appclasspath for each additional project they use > in launching of me2 (! IF they are not linked in final MIDlet JAR) > > N.B. MAKE sure that your project are marked as Exported (in "Order > and Export" of Java Build Path) > > > 2) reading jad attributes. This also the question of integration. I'll > get more details and .... > > -- > Vlad > > PS > Nothing is ever "backported" all goes only to new version. > > ------------------------------------------------------------------------ > - > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Microemulator-users mailing list > Mic...@li... > https://lists.sourceforge.net/lists/listinfo/microemulator-users > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Microemulator-users mailing list > Mic...@li... > https://lists.sourceforge.net/lists/listinfo/microemulator-users > > -- Marcel Ruff http://www.xmlBlaster.org |
From: Rushabh D. <ra...@pe...> - 2007-08-07 03:26:24
|
Vlad is totally right. Its *not* a system property, it is an argument to main.=20 -Rushabh -----Original Message----- From: mic...@li... [mailto:mic...@li...] On Behalf Of Vlad Skarzhevskyy Sent: Monday, August 06, 2007 7:13 PM To: mic...@li... Subject: Re: [Microemulator-users] Using jad with eclipseme I don't think we have System property "--usesystemclasspath". argument to main yes. As to integration into EclipseME this is the issue of integration. Need to ask EclipseME developers to fix this. Also you reported two problems: 1) additional library in MIDlet from additional project - This goes to EclipseME submit them a BUG. Ask them to add --appclasspath for each additional project they use in launching of me2 (! IF they are not linked in final MIDlet JAR) N.B. MAKE sure that your project are marked as Exported (in "Order and Export" of Java Build Path) 2) reading jad attributes. This also the question of integration. I'll get more details and .... -- Vlad PS Nothing is ever "backported" all goes only to new version. ------------------------------------------------------------------------ - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Microemulator-users mailing list Mic...@li... https://lists.sourceforge.net/lists/listinfo/microemulator-users |
From: Vlad S. <ska...@gm...> - 2007-08-07 02:12:44
|
I don't think we have System property "--usesystemclasspath". argument to main yes. As to integration into EclipseME this is the issue of integration. Need to ask EclipseME developers to fix this. Also you reported two problems: 1) additional library in MIDlet from additional project - This goes to EclipseME submit them a BUG. Ask them to add --appclasspath for each additional project they use in launching of me2 (! IF they are not linked in final MIDlet JAR) N.B. MAKE sure that your project are marked as Exported (in "Order and Export" of Java Build Path) 2) reading jad attributes. This also the question of integration. I'll get more details and .... -- Vlad PS Nothing is ever "backported" all goes only to new version. |
From: Rushabh D. <ra...@pe...> - 2007-08-07 00:47:38
|
Note that the two arguments are microemulator arguments and *not* java vm arguments. Thus, in my case, my eclipse run stuff, has the following as *program* arguments: --usesystemclassloader --propertiesjad Foo.jad com.bar.foo.FooMIDlet HTH, -R -----Original Message----- From: mic...@li... [mailto:mic...@li...] On Behalf Of Marcel Ruff Sent: Sunday, August 05, 2007 2:31 AM To: mic...@li... Subject: Re: [Microemulator-users] Using jad with eclipseme Hmm, no success here. This works fine (with SNAPSHOT): java -cp ~/microemulator/microemulator.jar org.microemu.app.Main xy.jad But when started in the debugger (eclipseme), i get the same error which i have reported. This is my eclipse 'VM arguments' settings: -D--usesystemclasspath=3Dtrue -D--usesystemclasspath=3D1 -D--usesystemclasspath=3D -D--usesystemclasspath -D--usejadproperties=3D/data/xy.jad I think it is a bug in the current SNAPSHOT? Thanks Marcel Rushabh Doshi wrote: > Ah. Funny classpath issues :) > > --usesystemclasspath > > Note that this will not catch certain classpath issues that the new > stuff will, but then again, you're (eventually) testing on a real phone, > right :) > > -R > > -----Original Message----- > From: mic...@li... > [mailto:mic...@li...] On Behalf Of > Marcel Ruff > Sent: Saturday, August 04, 2007 9:39 AM > To: mic...@li... > Subject: Re: [Microemulator-users] Using jad with eclipseme > > Rushabh Doshi wrote: > =20 >> Enter >> --usejadproperties YourJad.jad >> >> This works in 2.0.2 snapshot builds. I'm not sure if it was backported >> to 2.0.1. Bartek? >> =20 >> =20 > Thanks. > Unfortunately my identical midlet does not start with 2.0.2 (but does=20 > with 2.0.1). > > It complains: > ava.lang.NoClassDefFoundError: org/xmlBlaster/I_Properties > at java.lang.Class.getDeclaredConstructors0(Native Method) > at java.lang.Class.privateGetDeclaredConstructors(Class.java:2357) > at java.lang.Class.getConstructor0(Class.java:2671) > at java.lang.Class.newInstance0(Class.java:321) > at java.lang.Class.newInstance(Class.java:303) > at org.microemu.app.Common.startMidlet(Common.java:351) > at org.microemu.app.Common.initMIDlet(Common.java:870) > at org.microemu.app.Main.main(Main.java:705) > > The I_Properties resides in a dependend project in eclipseme (this runs=20 > fine with WTK and microemu 2.0.1), > > thanks > Marcel > =20 >> -Rushabh >> >> -----Original Message----- >> From: mic...@li... >> [mailto:mic...@li...] On Behalf >> =20 > Of > =20 >> Marcel Ruff >> Sent: Friday, August 03, 2007 8:51 AM >> To: mic...@li... >> Subject: [Microemulator-users] Using jad with eclipseme >> >> Hi again, >> >> i have an eclipseme project, this works fine to debug with microemu. >> But when i add custom properties in the Jad file, >> these don't make it into the midlet during debugging. >> >> When debugging with WTK emulators these jad attributes are nicely >> passed to the emulator. >> >> Is there any way to pass the attributes with microemu? >> >> Thanks >> Marcel >> >> =20 >> =20 > > > =20 --=20 Marcel Ruff http://www.xmlBlaster.org ------------------------------------------------------------------------ - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Microemulator-users mailing list Mic...@li... https://lists.sourceforge.net/lists/listinfo/microemulator-users |
From: Marcel R. <mr...@ma...> - 2007-08-05 09:30:53
|
Hmm, no success here. This works fine (with SNAPSHOT): java -cp ~/microemulator/microemulator.jar org.microemu.app.Main xy.jad But when started in the debugger (eclipseme), i get the same error which i have reported. This is my eclipse 'VM arguments' settings: -D--usesystemclasspath=true -D--usesystemclasspath=1 -D--usesystemclasspath= -D--usesystemclasspath -D--usejadproperties=/data/xy.jad I think it is a bug in the current SNAPSHOT? Thanks Marcel Rushabh Doshi wrote: > Ah. Funny classpath issues :) > > --usesystemclasspath > > Note that this will not catch certain classpath issues that the new > stuff will, but then again, you're (eventually) testing on a real phone, > right :) > > -R > > -----Original Message----- > From: mic...@li... > [mailto:mic...@li...] On Behalf Of > Marcel Ruff > Sent: Saturday, August 04, 2007 9:39 AM > To: mic...@li... > Subject: Re: [Microemulator-users] Using jad with eclipseme > > Rushabh Doshi wrote: > >> Enter >> --usejadproperties YourJad.jad >> >> This works in 2.0.2 snapshot builds. I'm not sure if it was backported >> to 2.0.1. Bartek? >> >> > Thanks. > Unfortunately my identical midlet does not start with 2.0.2 (but does > with 2.0.1). > > It complains: > ava.lang.NoClassDefFoundError: org/xmlBlaster/I_Properties > at java.lang.Class.getDeclaredConstructors0(Native Method) > at java.lang.Class.privateGetDeclaredConstructors(Class.java:2357) > at java.lang.Class.getConstructor0(Class.java:2671) > at java.lang.Class.newInstance0(Class.java:321) > at java.lang.Class.newInstance(Class.java:303) > at org.microemu.app.Common.startMidlet(Common.java:351) > at org.microemu.app.Common.initMIDlet(Common.java:870) > at org.microemu.app.Main.main(Main.java:705) > > The I_Properties resides in a dependend project in eclipseme (this runs > fine with WTK and microemu 2.0.1), > > thanks > Marcel > >> -Rushabh >> >> -----Original Message----- >> From: mic...@li... >> [mailto:mic...@li...] On Behalf >> > Of > >> Marcel Ruff >> Sent: Friday, August 03, 2007 8:51 AM >> To: mic...@li... >> Subject: [Microemulator-users] Using jad with eclipseme >> >> Hi again, >> >> i have an eclipseme project, this works fine to debug with microemu. >> But when i add custom properties in the Jad file, >> these don't make it into the midlet during debugging. >> >> When debugging with WTK emulators these jad attributes are nicely >> passed to the emulator. >> >> Is there any way to pass the attributes with microemu? >> >> Thanks >> Marcel >> >> >> > > > -- Marcel Ruff http://www.xmlBlaster.org |
From: Rushabh D. <ra...@pe...> - 2007-08-04 21:15:43
|
Ah. Funny classpath issues :) --usesystemclasspath Note that this will not catch certain classpath issues that the new stuff will, but then again, you're (eventually) testing on a real phone, right :) -R -----Original Message----- From: mic...@li... [mailto:mic...@li...] On Behalf Of Marcel Ruff Sent: Saturday, August 04, 2007 9:39 AM To: mic...@li... Subject: Re: [Microemulator-users] Using jad with eclipseme Rushabh Doshi wrote: > Enter > --usejadproperties YourJad.jad > > This works in 2.0.2 snapshot builds. I'm not sure if it was backported > to 2.0.1. Bartek? > =20 Thanks. Unfortunately my identical midlet does not start with 2.0.2 (but does=20 with 2.0.1). It complains: ava.lang.NoClassDefFoundError: org/xmlBlaster/I_Properties at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Class.java:2357) at java.lang.Class.getConstructor0(Class.java:2671) at java.lang.Class.newInstance0(Class.java:321) at java.lang.Class.newInstance(Class.java:303) at org.microemu.app.Common.startMidlet(Common.java:351) at org.microemu.app.Common.initMIDlet(Common.java:870) at org.microemu.app.Main.main(Main.java:705) The I_Properties resides in a dependend project in eclipseme (this runs=20 fine with WTK and microemu 2.0.1), thanks Marcel > -Rushabh > > -----Original Message----- > From: mic...@li... > [mailto:mic...@li...] On Behalf Of > Marcel Ruff > Sent: Friday, August 03, 2007 8:51 AM > To: mic...@li... > Subject: [Microemulator-users] Using jad with eclipseme > > Hi again, > > i have an eclipseme project, this works fine to debug with microemu. > But when i add custom properties in the Jad file, > these don't make it into the midlet during debugging. > > When debugging with WTK emulators these jad attributes are nicely > passed to the emulator. > > Is there any way to pass the attributes with microemu? > > Thanks > Marcel > > =20 --=20 Marcel Ruff http://www.xmlBlaster.org ------------------------------------------------------------------------ - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Microemulator-users mailing list Mic...@li... https://lists.sourceforge.net/lists/listinfo/microemulator-users |
From: Marcel R. <mr...@ma...> - 2007-08-04 16:49:14
|
Rushabh Doshi wrote: > CustomItem is indeed not working in the current build. I had to use it > for some other purposes as well and it was doing funny things. The thing > is that I don't have a good demo midlet that uses custom item to do > something useful that actually works on a regular emulator. If you have > one (the source thereof), please send it over and I can try and hack > custom item to work. > Hi again, here is the complete project (for netbeans 5.5.1 or eclipseme 1.7.3 with all configuration files to choose from) . http://www.xmlBlaster.org:/TableBug.tgz It contains a tiny Midlet which creates 5 tables. In WTK they look as expected. thanks for all, Marcel > -Rushabh > > -----Original Message----- > From: mic...@li... > [mailto:mic...@li...] On Behalf Of > Marcel Ruff > Sent: Friday, August 03, 2007 8:45 AM > To: mic...@li... > Subject: Re: [Microemulator-users] Is CustomItem supported? > > Bartek Teodorczyk wrote: > >> CustomItem was implemented only partially in the past and I don't know >> how complete is it right now. If you really need this feature send me >> some code examples that I could work with and try to fix CustomItem >> problems. >> > The TableItem delivered with netbeans 5.5.1 is not displayed, > so i can't use microemu in this context. > Sure it would be nice to have this support, but i have no idea if > it is a lot of work ... > > Thanks > Marcel > > >> Bartek >> >> 2007/7/12, Marcel Ruff <mr...@ma...>: >> >>> Hi, >>> >>> i'm using the TableItem (delivered with netbeans) to draw tables. >>> This works fine on WTK emulator and on real devices. >>> >>> But on MicroEmulator 2.0.1 the tables are not dispayed. >>> >>> TableItem derives from CustomItem: Is this supported? >>> >>> Thanks >>> Marcel >>> >>> >>> > ------------------------------------------------------------------------ > - > >>> This SF.net email is sponsored by DB2 Express >>> Download DB2 Express C - the FREE version of DB2 express and take >>> control of your XML. No limits. Just data. Click to get it now. >>> http://sourceforge.net/powerbar/db2/ >>> _______________________________________________ >>> Microemulator-users mailing list >>> Mic...@li... >>> https://lists.sourceforge.net/lists/listinfo/microemulator-users >>> >>> > > > -- Marcel Ruff http://www.xmlBlaster.org |
From: Marcel R. <mr...@ma...> - 2007-08-04 16:38:54
|
Rushabh Doshi wrote: > Enter > --usejadproperties YourJad.jad > > This works in 2.0.2 snapshot builds. I'm not sure if it was backported > to 2.0.1. Bartek? > Thanks. Unfortunately my identical midlet does not start with 2.0.2 (but does with 2.0.1). It complains: ava.lang.NoClassDefFoundError: org/xmlBlaster/I_Properties at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Class.java:2357) at java.lang.Class.getConstructor0(Class.java:2671) at java.lang.Class.newInstance0(Class.java:321) at java.lang.Class.newInstance(Class.java:303) at org.microemu.app.Common.startMidlet(Common.java:351) at org.microemu.app.Common.initMIDlet(Common.java:870) at org.microemu.app.Main.main(Main.java:705) The I_Properties resides in a dependend project in eclipseme (this runs fine with WTK and microemu 2.0.1), thanks Marcel > -Rushabh > > -----Original Message----- > From: mic...@li... > [mailto:mic...@li...] On Behalf Of > Marcel Ruff > Sent: Friday, August 03, 2007 8:51 AM > To: mic...@li... > Subject: [Microemulator-users] Using jad with eclipseme > > Hi again, > > i have an eclipseme project, this works fine to debug with microemu. > But when i add custom properties in the Jad file, > these don't make it into the midlet during debugging. > > When debugging with WTK emulators these jad attributes are nicely > passed to the emulator. > > Is there any way to pass the attributes with microemu? > > Thanks > Marcel > > -- Marcel Ruff http://www.xmlBlaster.org |
From: Rushabh D. <ra...@pe...> - 2007-08-03 21:23:36
|
Enter --usejadproperties YourJad.jad This works in 2.0.2 snapshot builds. I'm not sure if it was backported to 2.0.1. Bartek? -Rushabh -----Original Message----- From: mic...@li... [mailto:mic...@li...] On Behalf Of Marcel Ruff Sent: Friday, August 03, 2007 8:51 AM To: mic...@li... Subject: [Microemulator-users] Using jad with eclipseme Hi again, i have an eclipseme project, this works fine to debug with microemu. But when i add custom properties in the Jad file, these don't make it into the midlet during debugging. When debugging with WTK emulators these jad attributes are nicely passed to the emulator. Is there any way to pass the attributes with microemu? Thanks Marcel --=20 Marcel Ruff http://www.xmlBlaster.org ------------------------------------------------------------------------ - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Microemulator-users mailing list Mic...@li... https://lists.sourceforge.net/lists/listinfo/microemulator-users |
From: Rushabh D. <ra...@pe...> - 2007-08-03 21:22:35
|
CustomItem is indeed not working in the current build. I had to use it for some other purposes as well and it was doing funny things. The thing is that I don't have a good demo midlet that uses custom item to do something useful that actually works on a regular emulator. If you have one (the source thereof), please send it over and I can try and hack custom item to work. -Rushabh=20 -----Original Message----- From: mic...@li... [mailto:mic...@li...] On Behalf Of Marcel Ruff Sent: Friday, August 03, 2007 8:45 AM To: mic...@li... Subject: Re: [Microemulator-users] Is CustomItem supported? Bartek Teodorczyk wrote: > CustomItem was implemented only partially in the past and I don't know > how complete is it right now. If you really need this feature send me > some code examples that I could work with and try to fix CustomItem > problems. The TableItem delivered with netbeans 5.5.1 is not displayed, so i can't use microemu in this context. Sure it would be nice to have this support, but i have no idea if it is a lot of work ... Thanks Marcel > > Bartek > > 2007/7/12, Marcel Ruff <mr...@ma...>: >> Hi, >> >> i'm using the TableItem (delivered with netbeans) to draw tables. >> This works fine on WTK emulator and on real devices. >> >> But on MicroEmulator 2.0.1 the tables are not dispayed. >> >> TableItem derives from CustomItem: Is this supported? >> >> Thanks >> Marcel >> >> ------------------------------------------------------------------------ -=20 >> >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> Microemulator-users mailing list >> Mic...@li... >> https://lists.sourceforge.net/lists/listinfo/microemulator-users >> > --=20 Marcel Ruff http://www.xmlBlaster.org ------------------------------------------------------------------------ - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Microemulator-users mailing list Mic...@li... https://lists.sourceforge.net/lists/listinfo/microemulator-users |
From: Marcel R. <mr...@ma...> - 2007-08-03 16:07:56
|
Hi again, i have an eclipseme project, this works fine to debug with microemu. But when i add custom properties in the Jad file, these don't make it into the midlet during debugging. When debugging with WTK emulators these jad attributes are nicely passed to the emulator. Is there any way to pass the attributes with microemu? Thanks Marcel -- Marcel Ruff http://www.xmlBlaster.org |
From: Marcel R. <mr...@ma...> - 2007-08-03 15:45:18
|
Bartek Teodorczyk wrote: > CustomItem was implemented only partially in the past and I don't know > how complete is it right now. If you really need this feature send me > some code examples that I could work with and try to fix CustomItem > problems. The TableItem delivered with netbeans 5.5.1 is not displayed, so i can't use microemu in this context. Sure it would be nice to have this support, but i have no idea if it is a lot of work ... Thanks Marcel > > Bartek > > 2007/7/12, Marcel Ruff <mr...@ma...>: >> Hi, >> >> i'm using the TableItem (delivered with netbeans) to draw tables. >> This works fine on WTK emulator and on real devices. >> >> But on MicroEmulator 2.0.1 the tables are not dispayed. >> >> TableItem derives from CustomItem: Is this supported? >> >> Thanks >> Marcel >> >> ------------------------------------------------------------------------- >> >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> Microemulator-users mailing list >> Mic...@li... >> https://lists.sourceforge.net/lists/listinfo/microemulator-users >> > -- Marcel Ruff http://www.xmlBlaster.org |
From: Vlad S. <ska...@gm...> - 2007-08-01 20:08:12
|
Sorry about empty post. I was just adding mailingLists to the main pom.xml and decided to test subscription process. >From now on I will also monitor this list. |
From: Vladyslav S. <vla...@am...> - 2007-08-01 20:01:13
|
This message and the information contained herein is proprietary and= confidential and subject to the Amdocs policy statement, you may review at http://www.amdocs.com/email_disclaimer.asp |
From: Bartek T. <ba...@ba...> - 2007-07-25 06:35:39
|
CustomItem was implemented only partially in the past and I don't know how complete is it right now. If you really need this feature send me some code examples that I could work with and try to fix CustomItem problems. Bartek 2007/7/12, Marcel Ruff <mr...@ma...>: > Hi, > > i'm using the TableItem (delivered with netbeans) to draw tables. > This works fine on WTK emulator and on real devices. > > But on MicroEmulator 2.0.1 the tables are not dispayed. > > TableItem derives from CustomItem: Is this supported? > > Thanks > Marcel > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Microemulator-users mailing list > Mic...@li... > https://lists.sourceforge.net/lists/listinfo/microemulator-users > |
From: Marcel R. <mr...@ma...> - 2007-07-12 05:19:23
|
Hi, i'm using the TableItem (delivered with netbeans) to draw tables. This works fine on WTK emulator and on real devices. But on MicroEmulator 2.0.1 the tables are not dispayed. TableItem derives from CustomItem: Is this supported? Thanks Marcel |
From: Rushabh D. <ra...@pe...> - 2007-06-20 21:55:41
|
Hey guys, Either I'm interpreting the MIDP2 spec wrong, or the Display thread synchronization is broken. According to (my interpretation of) the MIDP spec, Display.callSerially(Runnable r) executes r on the same thread as events and paints. This does not seem to be the case in micro - Display clearly has the event dispatcher thread and the paint thread. Can someone please clarify why these two are not synchronized? Would it be worthwhile for me to just collapse the two into one event loop the way (I think) MIDP intends it to be? Thanks! -Rushabh --=20 Rushabh Doshi http://keeda.stanford.edu/~radoshi |
From: Rushabh D. <ra...@pe...> - 2007-06-20 21:52:49
|
Thanks Bartek - I tried to hack around the classloader and use the instrumentMIDletClasses flag to turn off instrumentation - but to no avail. I'll hack around some more and see what I can do; otherwise, I could just restructure my code to not do various package private things that it is currently doing - this is ugly, but doable. Note that this is not the case for running the final jar through micro - this happens when I'm developing and running code from eclipse on micro. At that stage, the project naturally has a bunch of jars which have not been collapsed into one, however micro still tries to do funny class loading and things break. -Rushabh -----Original Message----- From: ba...@gm... [mailto:ba...@gm...] On Behalf Of Bartek Teodorczyk Sent: Tuesday, June 19, 2007 6:26 AM To: Rushabh Doshi Cc: mic...@li... Subject: Re: [Microemulator-users] Classloading changes in 2.0.1? Hi, Indeed, we changed classloading method in 2.0.1. Mostly because we wanted to fix some core library incompapilities beetween Java ME and Java SE and we started to use ASM bytecode intrumentation software for that purpose. Your example is a side effect of that change. However we designed new classloader code to be compatible with MIDP packaging scheme (jad/jar). Your example doesn't fit into that standard. If you want to change that behaviour look into the following parts of MicroEmulator code: 1. microemu-javase/src/main/java/org/microemu/app/Common.java public static void openJadUrl(String urlString) public static void openJadUrl(String urlString, MIDletClassLoader midletClassLoader) protected void loadFromJad(String jadUrl, MIDletClassLoader midletClassLoader) 2. microemu-javase/src/main/java/org/microemu/app/classloader/MIDletClassLo ader.java Bartek Teodorczyk 2007/6/18, Rushabh Doshi <ra...@pe...>: > > > > Hey folks, > > Did the classloading get changed in 2.0.1 onwards? Here is the symptom, I > haven't yet dug into exactly what is going on: > > I have Base.jar with namespace com.company which contains package private > class Package.class > > I have Dependent.jar with namespace com.company which contains class > App.class which reference Package.class. > > Note that this is perfectly valid (two jars with the same namespace > accessing package private classes). > > This works fine in micro-2.0.0 but fails with IllegalAccessError in 2.0.1 > and 2.0.2-SNAPSHOT. > > Does someone know off the top of their head what is going on? If not, I can > dig further into this issue. > > Thanks! > -Rushabh > > -- > > Rushabh Doshi > > http://keeda.stanford.edu/~radoshi > > > ------------------------------------------------------------------------ - > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Microemulator-users mailing list > Mic...@li... > https://lists.sourceforge.net/lists/listinfo/microemulator-users > > |