Re: [T5] debugging in eclipse

2010-05-26 Thread Thiago H. de Paula Figueiredo
On Wed, 26 May 2010 12:40:34 -0300, Dmitry Gusev wrote: No, because there's no field to be set. Not true. If there was no field eclipse wouldn't show it in debugger. I stand corrected. Please file a JIRA about it if you haven't done it yet. It seems like a nice addition to me. -- Thiag

Re: [T5] debugging in eclipse

2010-05-26 Thread Dmitry Gusev
On Wed, May 26, 2010 at 16:10, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Wed, 26 May 2010 02:31:34 -0300, Dmitry Gusev > wrote: > > May be during transformation in non-production mode T5 should assign value >> to corresponding field also, not just to conduit? >> > > No, bec

Re: Res: [T5] debugging in eclipse

2010-05-26 Thread Thiago H. de Paula Figueiredo
On Wed, 26 May 2010 11:21:40 -0300, Everton Agner wrote: What about Inspection Expressions? Do they work? I haven't tried yet (and can't try it now). No, because the field isn't there, being replaced by method invocations. -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestry

Res: [T5] debugging in eclipse

2010-05-26 Thread Everton Agner
What about Inspection Expressions? Do they work? I haven't tried yet (and can't try it now). - Everton Agner Ramos De: Thiago H. de Paula Figueiredo Para: Tapestry users Enviadas: Quarta-feira, 26 de Maio de 2010 9:10:04 Assunto: Re: [T5] de

Re: [T5] debugging in eclipse

2010-05-26 Thread Thiago H. de Paula Figueiredo
On Wed, 26 May 2010 02:31:34 -0300, Dmitry Gusev wrote: May be during transformation in non-production mode T5 should assign value to corresponding field also, not just to conduit? No, because there's no field to be set. -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestry 5

Re: [T5] debugging in eclipse

2010-05-25 Thread Dmitry Gusev
I noticed that also, thats make debugging a hard process. May be during transformation in non-production mode T5 should assign value to corresponding field also, not just to conduit? Its not good to declare realXXX fields in a class while original field not used. On Wed, May 26, 2010 at 06:08, Th

Re: [T5] debugging in eclipse

2010-05-25 Thread Thiago H. de Paula Figueiredo
On Tue, 25 May 2010 20:28:44 -0300, Dariusz Majewski wrote: Hi All, Hi! @Parameter(value="120") private int maxWidth; Now my problem is that when I debug onMyCustomEvent method I can't see the real value of maxWidth parameter. That's Tapestry doing it heavy wizardry: when it

[T5] debugging in eclipse

2010-05-25 Thread Dariusz Majewski
Hi All, I'm having problems debugging my tapestry application. I'm using Eclipse 3.5.0 and tapestry 5.2-SNAPSHOT. I have a custom component with parameter @Parameter(value="120") private int maxWidth; which is then set during my component invocation inside page now I have a ev

Re: t5: debugging with jetty

2008-08-22 Thread Filip S. Adamsen
I use IntelliJ IDEA as well. But I simply create a Maven configuration that runs mvn jetty:run and launch it as a debugging session. -Filip On 2008-08-22 17:32, César Lesc wrote: I set MAVEN_OPTS, launch jetty with maven and just attach the debugger's IDE, in IntelliJ IDEA is called Remote Deb

Re: t5: debugging with jetty

2008-08-22 Thread César Lesc
I set MAVEN_OPTS, launch jetty with maven and just attach the debugger's IDE, in IntelliJ IDEA is called Remote Debug my debug script es like this: export MAVEN_OPTS="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=5005,server=y,suspend=n" mvn jetty:run César. --

RE: t5: debugging with jetty

2008-08-22 Thread limonn
ginal Message- >> From: limonn [mailto:[EMAIL PROTECTED] >> Sent: Friday, August 22, 2008 09:19 >> To: users@tapestry.apache.org >> Subject: t5: debugging with jetty >> >> >> How do you guys debug using jetty, any guidance steps for that ? >> >

Re: t5: debugging with jetty

2008-08-22 Thread Tobias Wehrum
Hi limonn, to start Jetty, we use an org.mortbay.jetty.Server object started in a simple public static void main - so we can debug our program like any other java program too. The "no restart needed"-Feature is enhanced by debugging the application this way: When simply run, "no restart needed

RE: t5: debugging with jetty

2008-08-22 Thread Jonathan Barker
Message- > From: limonn [mailto:[EMAIL PROTECTED] > Sent: Friday, August 22, 2008 09:19 > To: users@tapestry.apache.org > Subject: t5: debugging with jetty > > > How do you guys debug using jetty, any guidance steps for that ? > > How that affects the feature of no need to

t5: debugging with jetty

2008-08-22 Thread limonn
How do you guys debug using jetty, any guidance steps for that ? How that affects the feature of no need to restart jetty for changes to show ? Thank s in advance -- View this message in context: http://www.nabble.com/t5%3A-debugging-with-jetty-tp19107119p19107119.html Sent from the Tapestry -

t5: debugging with jpda/IDEA

2008-06-24 Thread Angelo Chen
Hi, I started Tomcat 6 with jpda, in the IDEA side, I use Tomcat remote option. if I click run in the IDEA side, the speed to navigate pages is normal, but if I click 'debug', the speed is very very slow, but once it reach the break point, stepping is in the normal speed, any idea why? Angelo -

Re: [T5] Debugging

2007-10-25 Thread Ognen Ivanovski
Michael Gerzabek wrote: +1 Created a jira entry: https://issues.apache.org/jira/browse/TAPESTRY-1859 -- Ognen Ivanovski | [EMAIL PROTECTED] phone +389 -2- 30 64 532 | fax +389 -2- 30 79 495 Netcetera | 1000 Skopje | Macedonia | http://netcetera.com.mk ---

Re: [T5] Debugging

2007-10-25 Thread Ognen Ivanovski
Michael Gerzabek wrote: +1 Walking through a custom written component in T5 is like a day in Alice's world. Magic where ever you look. From user perspective there needs to be a little support in debugging. :) Exactly! -- Ognen Ivanovski | [EMAIL PROTECTED] phone +389 -2- 30 64 532 | fax

Re: [T5] Debugging

2007-10-25 Thread Michael Gerzabek
+1 That's the same impression I have. My skills come from good old Java 1.4 days. These days I was able to solve any problem due to Eclipse and the proper use of the debugger. Walking through a custom written component in T5 is like a day in Alice's world. Magic where ever you look. From use

[T5] Debugging

2007-10-24 Thread Ognen Ivanovski
Perhaps you've noticed how difficult it is to debug a T5 application because of - the jassist enhancements tapestry does to the components / pages - the IoC proxies Far from saying that these are bad, I am just wondering if there is a possibility to add some debugger info along with these en