Re: first tapestry component

2008-07-30 Thread Argo Vilberg
Thanks, i got detail stack trace in tomcat log. but how to set tapestry application development mode. In manual: tapestry.production-mode A flag (true or false) indicating whether the application is running in production or in development. The default is true, which means that runtime excepti

Re: first tapestry component

2008-07-29 Thread Howard Lewis Ship
I think I changed the 5.0.14 Maven archetype to enable debug logging of the application, something you definitely want to roll back once you get started. On Tue, Jul 29, 2008 at 2:47 PM, Sven Homburg <[EMAIL PROTECTED]> wrote: > this is the important part of the stacktrace: > >... 64 more

Re: first tapestry component

2008-07-29 Thread Sven Homburg
this is the important part of the stacktrace: ... 64 more Caused by: org.apache.tapestry5.internal.services.TransformationException: Class ee.softpro.components.Border contains field(s) (get User) that are not private. You should change these fields to private, and add accessor methods if

Re: first tapestry component

2008-07-29 Thread Argo Vilberg
I add this public static void contributeApplicationDefaults( MappedConfiguration configuration) { configuration.add(SymbolConstants.PRODUCTION_MODE, "false"); } to AppModule.java but still no more stac trace: An unexpected application exception has occurred. ja

Re: first tapestry component

2008-07-29 Thread Filip S. Adamsen
You need to enable production mode. See the tapestry.production-mode symbol: http://tapestry.apache.org/tapestry5/tapestry-core/guide/conf.html -Filip On 2008-07-29 22:59, Argo Vilberg wrote: And this is only stack trace in browser: An unexpected application exception has occurred. java

Re: first tapestry component

2008-07-29 Thread Argo Vilberg
And this is only stack trace in browser: An unexpected application exception has occurred. java.lang.ClassNotFoundException: caught an exception while obtaining a class file for ee.softpro.components.Border 2008/7/29 Carl Crowder <[EMAIL PROTECTED]> > Can you post the rest of the stack

Re: first tapestry component

2008-07-29 Thread Argo Vilberg
sorry www.softpro.ee/tapestry5/arendus5.zip Stack trace? Where do i get this. There are no message in console or tomcat log files. Argo 2008/7/29 Carl Crowder <[EMAIL PROTECTED]> > Can you post the rest of the stacktrace? > > Also I got a 404 for the zip file you linked to > > Argo Vilberg w

Re: first tapestry component

2008-07-29 Thread Carl Crowder
Can you post the rest of the stacktrace? Also I got a 404 for the zip file you linked to Argo Vilberg wrote: > hi, > > > What i do wrong? > > > I want create tapestry border component. > > > In webapp: > > tapestry.app-package > ee.softpro > > > Then i create > ee