Re: Tapestry update from T5.0.12 to T5.0.18

2009-02-11 Thread Peter Stavrinides

That error occurs if you set a default value on a field eg:

@Persist
private boolean formSuccess_ = false; (IS WRONG)

and should be:
@Persist
private boolean formSuccess_;

Use @SetupRender or the like to initialize it.

Cheers,
Peter
 

- Original Message -
From: "Artur_eol" 
To: users@tapestry.apache.org
Sent: Wednesday, 11 February, 2009 02:16:02 GMT +02:00 Athens, Beirut, 
Bucharest, Istanbul
Subject: Re: Tapestry update from T5.0.12 to T5.0.18


Now I have another error on my first page:

Render queue error in BeginRender[Index:layout.header.pagelink_0]: Error
persisting field Submit:formSuccess: Persistent fields may not be updated
until after the page has finished loading. This may be due to a persistent
field with a default value. The default value should be removed.

Header.java

public class Header {

/*---*\
| I N S T A N C E   V A R I A B L E S |
\*---*/
   
@Inject
@Service("IniParameterManager")
private IniParameterManager paramMgr;
   
/*---*\
|P R O P E R T I E S  |
\*---*/
   
public String getshortPortalName() {
return paramMgr.getValue("ShortPortalName");
}
}

And template:

header.tml

http://www.w3.org/1999/xhtml";
xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>
   


${shortPortalName}



Home
Submit
Browse
Links
About
Contact






Is there are any changes in Persistence fields since T5.0.12? 
-- 
View this message in context: 
http://www.nabble.com/Tapestry-update-from-T5.0.12-to-T5.0.18-tp21939289p21945781.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Tapestry update from T5.0.12 to T5.0.18

2009-02-10 Thread Artur_eol

Now I have another error on my first page:

Render queue error in BeginRender[Index:layout.header.pagelink_0]: Error
persisting field Submit:formSuccess: Persistent fields may not be updated
until after the page has finished loading. This may be due to a persistent
field with a default value. The default value should be removed.

Header.java

public class Header {

/*---*\
| I N S T A N C E   V A R I A B L E S |
\*---*/
   
@Inject
@Service("IniParameterManager")
private IniParameterManager paramMgr;
   
/*---*\
|P R O P E R T I E S  |
\*---*/
   
public String getshortPortalName() {
return paramMgr.getValue("ShortPortalName");
}
}

And template:

header.tml

http://www.w3.org/1999/xhtml";
xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>
   


${shortPortalName}



Home
Submit
Browse
Links
About
Contact






Is there are any changes in Persistence fields since T5.0.12? 
-- 
View this message in context: 
http://www.nabble.com/Tapestry-update-from-T5.0.12-to-T5.0.18-tp21939289p21945781.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Tapestry update from T5.0.12 to T5.0.18

2009-02-10 Thread Artur_eol

Now I have another error on my first page:

Render queue error in BeginRender[Index:layout.header.pagelink_0]: Error
persisting field Submit:formSuccess: Persistent fields may not be updated
until after the page has finished loading. This may be due to a persistent
field with a default value. The default value should be removed.

Header.java

public class Header {

/*---*\
| I N S T A N C E   V A R I A B L E S |
\*---*/

@Inject
@Service("IniParameterManager")
private IniParameterManager paramMgr;

/*---*\
|P R O P E R T I E S  |
\*---*/

public String getshortPortalName() {
return paramMgr.getValue("ShortPortalName");
}
}

And template:

header.tml

http://www.w3.org/1999/xhtml";
xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>



${shortPortalName}



 Home 
 Submit 
 Browse 
 Links  
 About 
 Contact 






Is there are any changes in Persistence fields since T5.0.12?



Artur_eol wrote:
> 
> I think problem was with spring-web module. I completely rewrite pom.xml.
> Now it looks like this:
> 
>  
>   
>   org.apache.tapestry
>   t5c-commons
>   0.5.18
>   
>   
>   org.apache.tapestry
>   tapestry-core
>   5.0.18
>   
>   
>   org.apache.tapestry
>   tapestry-spring
>   5.0.18
>   
>   
>   org.apache.tapestry
>   tapestry-upload
>   5.0.18
>   
>   
>   nu.localhost.tapestry
>   tapestry5-acegi
>   1.1.1
>   
>
>   org.springframework
>   spring
>   2.5.2
>   
> 
>   org.hibernate
>   hibernate-entitymanager
>   3.3.1.ga
>   
>   
>   concurrent
>   concurrent
>   1.3.4
>   
>  
> 
> I have changes version of spring from 2.0 to 2.5.2 and tapestry-acegi from
> 1.1.0 to 1.1.1. And did deployed the application.
>   
> 
> 
> Thiago H. de Paula Figueiredo wrote:
>> 
>> Em Tue, 10 Feb 2009 17:50:09 -0300, Artur_eol   
>> escreveu:
>> 
>>> I`m using T5components and tapestry5-acegi.
>> 
>> I guess they have dependencies in old (pre 5.0.18) versions of Tapestry.  
>> If you're using Maven, use the  tag to prevent it to put old  
>> Tapestry versions in the classpath. By the way, T5Components became  
>> ChenilleKit and there is Tapestry5-Spring Security, and, AFAIK, both have  
>> up-to-date Tapestry dependencies.
>> 
>> -- 
>> Thiago H. de Paula Figueiredo
>> Independent Java consultant, developer, and instructor
>> http://www.arsmachina.com.br/thiago
>> 
>> -
>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>> For additional commands, e-mail: users-h...@tapestry.apache.org
>> 
>> 
>> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Tapestry-update-from-T5.0.12-to-T5.0.18-tp21939289p21943495.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Tapestry update from T5.0.12 to T5.0.18

2009-02-10 Thread Artur_eol

I think problem was with spring-web module. I completely rewrite pom.xml.
Now it looks like this:

 

org.apache.tapestry
t5c-commons
0.5.18


org.apache.tapestry
tapestry-core
5.0.18


org.apache.tapestry
tapestry-spring
5.0.18


org.apache.tapestry
tapestry-upload
5.0.18


nu.localhost.tapestry
tapestry5-acegi
1.1.1

   
org.springframework
spring
2.5.2


org.hibernate
hibernate-entitymanager
3.3.1.ga


concurrent
concurrent
1.3.4

 

I have changes version of spring from 2.0 to 2.5.2 and tapestry-acegi from
1.1.0 to 1.1.1. And did deployed the application.
  


Thiago H. de Paula Figueiredo wrote:
> 
> Em Tue, 10 Feb 2009 17:50:09 -0300, Artur_eol   
> escreveu:
> 
>> I`m using T5components and tapestry5-acegi.
> 
> I guess they have dependencies in old (pre 5.0.18) versions of Tapestry.  
> If you're using Maven, use the  tag to prevent it to put old  
> Tapestry versions in the classpath. By the way, T5Components became  
> ChenilleKit and there is Tapestry5-Spring Security, and, AFAIK, both have  
> up-to-date Tapestry dependencies.
> 
> -- 
> Thiago H. de Paula Figueiredo
> Independent Java consultant, developer, and instructor
> http://www.arsmachina.com.br/thiago
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Tapestry-update-from-T5.0.12-to-T5.0.18-tp21939289p21943422.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Tapestry update from T5.0.12 to T5.0.18

2009-02-10 Thread Thiago H. de Paula Figueiredo
Em Tue, 10 Feb 2009 17:50:09 -0300, Artur_eol   
escreveu:



I`m using T5components and tapestry5-acegi.


I guess they have dependencies in old (pre 5.0.18) versions of Tapestry.  
If you're using Maven, use the  tag to prevent it to put old  
Tapestry versions in the classpath. By the way, T5Components became  
ChenilleKit and there is Tapestry5-Spring Security, and, AFAIK, both have  
up-to-date Tapestry dependencies.


--
Thiago H. de Paula Figueiredo
Independent Java consultant, developer, and instructor
http://www.arsmachina.com.br/thiago

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Tapestry update from T5.0.12 to T5.0.18

2009-02-10 Thread Artur_eol
n.mbeans.ApplicationsConfigMBean.start(ApplicationsConfigMBean.java:744)
>>  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>>  at
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>>  at
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>>  at java.lang.reflect.Method.invoke(Method.java:597)
>>  at
>> com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:375)
>>  at
>> com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:358)
>>  at
>> com.sun.enterprise.admin.config.BaseConfigMBean.invoke(BaseConfigMBean.java:464)
>>  at
>> com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836)
>>  at
>> com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761)
>>  at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
>>  at
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>>  at java.lang.reflect.Method.invoke(Method.java:597)
>>  at
>> com.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:90)
>>  at $Proxy1.invoke(Unknown Source)
>>  at
>> com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:304)
>>  at
>> com.sun.enterprise.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:174)
>>  at
>> com.sun.enterprise.admin.jmx.remote.server.callers.InvokeCaller.call(InvokeCaller.java:69)
>>  at
>> com.sun.enterprise.admin.jmx.remote.server.MBeanServerRequestHandler.handle(MBeanServerRequestHandler.java:155)
>>  at
>> com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.processRequest(RemoteJmxConnectorServlet.java:122)
>>  at
>> com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.doPost(RemoteJmxConnectorServlet.java:193)
>>  at javax.servlet.http.HttpServlet.service(HttpServlet.java:738)
>>  at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
>>  at
>> org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
>>  at
>> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:290)
>>  at
>> org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
>>  at
>> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
>>  at
>> org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
>>  at
>> org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
>>  at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
>>  at
>> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
>>  at
>> org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
>>  at
>> org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
>>  at
>> org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
>>  at
>> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
>>  at
>> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
>>  at
>> org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
>>  at
>> org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
>>  at
>> org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
>>  at
>> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
>>  at
>> org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
>>  at
>> com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
>>  at
>> com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
>>  at
>> com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
>>  at
>> com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
>>  at
>> com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
>>  at
>> com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
>>  at
>> com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
>>  at
>> com.sun.enterprise.web.connector.grizzly.WorkerThreadImpl.run(WorkerThreadImpl.java:116)
>> Caused by: java.lang.ClassNotFoundException:
>> org.apache.tapestry.services.RequestFilter
>>  at
>> org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1498)
>>  at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
>>  ... 82 more
>> |#]
>>   
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Tapestry-update-from-T5.0.12-to-T5.0.18-tp21939289p21941673.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Tapestry update from T5.0.12 to T5.0.18

2009-02-10 Thread Artur_eol


Robert Zeigler wrote:
> 
> 
>>
>>  at
>> org
>> .apache
>> .tapestry5.ioc.IOCUtilities.addModulesInList(IOCUtilities.java:137)
>>  at
>> org
>> .apache
>> .tapestry5.ioc.IOCUtilities.addModulesInManifest(IOCUtilities.java: 
>> 107)
> ^ 
> ^ 
> ^ 
> ^ 
> 
> 
> This is the interesting part of this stack-trace: the exception is  
> occurring when loading a third-party module.
> So what third-party tapestry modules are you using? One of them is the  
> problem.
> 
> Robert
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
> 
> 
> 


I`m using T5components and tapestry5-acegi.

-- 
View this message in context: 
http://www.nabble.com/Tapestry-update-from-T5.0.12-to-T5.0.18-tp21939289p21941569.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Tapestry update from T5.0.12 to T5.0.18

2009-02-10 Thread Charles Coleman
Do you have any hard-coded references to the old package names in any 
Spring or other configuration files? The last time I upgraded a project 
from an older version, I forgot to do update

such a reference, and, of course, the class could not be found.

Artur_eol wrote:

I have recently update my project from T5.0.12 to T5.0.18.  I solved most of
the problems, thanks to upgrade notes but I have one that I cannot so far..

server could find RequestFilter class in org.apache.tapestry lib because it
in org.apache.tapestry5, I can not understand why it looks there. I rename
all reference to tapestry to tapestry5. 


Error:

[#|2009-02-09T15:40:36.598-0500|SEVERE|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=19;_ThreadName=httpWorkerThread-4848-3;_RequestID=22f6b7f9-757a-424a-a91a-907e6a72b6ea;|WebModule[/cimlweb]PWC1270:
Exception starting filter app
java.lang.NoClassDefFoundError: org/apache/tapestry/services/RequestFilter
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:247)
at 
org.apache.tapestry5.ioc.RegistryBuilder.add(RegistryBuilder.java:147)
at
org.apache.tapestry5.ioc.IOCUtilities.addModulesInList(IOCUtilities.java:137)
at
org.apache.tapestry5.ioc.IOCUtilities.addModulesInManifest(IOCUtilities.java:107)
at
org.apache.tapestry5.ioc.IOCUtilities.addDefaultModules(IOCUtilities.java:77)
at
org.apache.tapestry5.internal.TapestryAppInitializer.(TapestryAppInitializer.java:75)
at org.apache.tapestry5.TapestryFilter.init(TapestryFilter.java:76)
at
org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:257)
at
org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:369)
at
org.apache.catalina.core.ApplicationFilterConfig.(ApplicationFilterConfig.java:103)
at
org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:4389)
at
org.apache.catalina.core.StandardContext.start(StandardContext.java:5189)
at com.sun.enterprise.web.WebModule.start(WebModule.java:326)
at
org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:973)
at 
org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:957)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:688)
at
com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1584)
at
com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1222)
at
com.sun.enterprise.server.WebModuleDeployEventListener.moduleDeployed(WebModuleDeployEventListener.java:182)
at
com.sun.enterprise.server.WebModuleDeployEventListener.moduleDeployed(WebModuleDeployEventListener.java:278)
at
com.sun.enterprise.admin.event.AdminEventMulticaster.invokeModuleDeployEventListener(AdminEventMulticaster.java:974)
at
com.sun.enterprise.admin.event.AdminEventMulticaster.handleModuleDeployEvent(AdminEventMulticaster.java:961)
at
com.sun.enterprise.admin.event.AdminEventMulticaster.processEvent(AdminEventMulticaster.java:464)
at
com.sun.enterprise.admin.event.AdminEventMulticaster.multicastEvent(AdminEventMulticaster.java:176)
at
com.sun.enterprise.admin.server.core.DeploymentNotificationHelper.multicastEvent(DeploymentNotificationHelper.java:308)
at
com.sun.enterprise.deployment.phasing.DeploymentServiceUtils.multicastEvent(DeploymentServiceUtils.java:226)
at
com.sun.enterprise.deployment.phasing.ServerDeploymentTarget.sendStartEvent(ServerDeploymentTarget.java:298)
at
com.sun.enterprise.deployment.phasing.ApplicationStartPhase.runPhase(ApplicationStartPhase.java:132)
at
com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:108)
at
com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:919)
at
com.sun.enterprise.deployment.phasing.PEDeploymentService.start(PEDeploymentService.java:591)
at
com.sun.enterprise.deployment.phasing.PEDeploymentService.start(PEDeploymentService.java:635)
at
com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.start(ApplicationsConfigMBean.java:744)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:375)
at
com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:358)
at
com.sun.enterprise.admin.config.BaseConfigMBean.invoke(BaseConfigMBean.java:464)
at
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836)

Re: Tapestry update from T5.0.12 to T5.0.18

2009-02-10 Thread Robert Zeigler




at
org
.apache
.tapestry5.ioc.IOCUtilities.addModulesInList(IOCUtilities.java:137)
at
org
.apache
.tapestry5.ioc.IOCUtilities.addModulesInManifest(IOCUtilities.java: 
107)
^ 
^ 
^ 
^ 



This is the interesting part of this stack-trace: the exception is  
occurring when loading a third-party module.
So what third-party tapestry modules are you using? One of them is the  
problem.


Robert

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Tapestry update from T5.0.12 to T5.0.18

2009-02-10 Thread Artur_eol
 java.lang.reflect.Method.invoke(Method.java:597)
at
com.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:90)
at $Proxy1.invoke(Unknown Source)
at
com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:304)
at
com.sun.enterprise.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:174)
at
com.sun.enterprise.admin.jmx.remote.server.callers.InvokeCaller.call(InvokeCaller.java:69)
at
com.sun.enterprise.admin.jmx.remote.server.MBeanServerRequestHandler.handle(MBeanServerRequestHandler.java:155)
at
com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.processRequest(RemoteJmxConnectorServlet.java:122)
at
com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.doPost(RemoteJmxConnectorServlet.java:193)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:738)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
at
org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:290)
at
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
at 
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
at 
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
at 
org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
at
com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
at
com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
at
com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
at
com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
at
com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
at
com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
at 
com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
at
com.sun.enterprise.web.connector.grizzly.WorkerThreadImpl.run(WorkerThreadImpl.java:116)
Caused by: java.lang.ClassNotFoundException:
org.apache.tapestry.services.RequestFilter
at
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1498)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
... 82 more
|#]
-- 
View this message in context: 
http://www.nabble.com/Tapestry-update-from-T5.0.12-to-T5.0.18-tp21939289p21939289.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org