Re: Tapestry ClassLoading errors

2014-06-08 Thread Boris Horvat
Glad to report that this resolved my issue. Thank you :) On Mon, Jun 2, 2014 at 11:59 PM, Lance Java lance.j...@googlemail.com wrote: http://tapestry.apache.org/class-reloading.html On 2 Jun 2014 22:49, Boris Horvat horvat.z.bo...@gmail.com wrote: Hm...I did not know about this. Will try

Re: Tapestry ClassLoading errors

2014-06-02 Thread Boris Horvat
Hm...I did not know about this. Will try it out over the weekend. Thank you very much. BTW is there some place in documentation where I can read about this trick? On Sun, Jun 1, 2014 at 11:05 PM, Lance Java lance.j...@googlemail.com wrote: Components and services are loaded by different

Re: Tapestry ClassLoading errors

2014-06-02 Thread Lance Java
http://tapestry.apache.org/class-reloading.html On 2 Jun 2014 22:49, Boris Horvat horvat.z.bo...@gmail.com wrote: Hm...I did not know about this. Will try it out over the weekend. Thank you very much. BTW is there some place in documentation where I can read about this trick? On Sun, Jun

Re: Tapestry ClassLoading errors

2014-06-01 Thread Boris Horvat
That does sound promising. Will try it out. Thanks On Sun, Jun 1, 2014 at 12:38 AM, Chris Mylonas ch...@opencsta.org wrote: What if you move your classes from tapestry.utility to tapestry.base.utility which is controlled by tapestrymaybe http://tapestry.apache.org/class-reloading.html

Re: Tapestry ClassLoading errors

2014-06-01 Thread Thiago H de Paula Figueiredo
On Sat, 31 May 2014 19:38:43 -0300, Chris Mylonas ch...@opencsta.org wrote: What if you move your classes from tapestry.utility to tapestry.base.utility which is controlled by tapestrymaybe 'base' is a controlled package for classes that are meant to be superclasses of pages,

Re: Tapestry ClassLoading errors

2014-06-01 Thread Boris Horvat
Not much more code can be given so let me copy it from the beginning of the mail So where should one put the class below in order to be able to simple inject it into a page and that after reloaded I dont get a given exception java.lang.LinkageError loader constraint violation: when resolving

Re: Tapestry ClassLoading errors

2014-06-01 Thread Lance Java
Components and services are loaded by different classloaders. Services should never reference component classes. Your service has a method: refreshAjaxZones(Zone) This is the problem since Zone is a component. Try referencing the interface ClientElement instead. On 1 Jun 2014 12:41, Boris

Re: Tapestry ClassLoading errors

2014-05-31 Thread Boris Horvat
In what package should I put this component? Currently it resides in package com.bomahabo.flow.tapestry.utility and it uses private AjaxResponseRenderer ajaxResponseRenderer; private Request request; private JavaScriptSupport javascript; Should I move it outside of the tapestry in

Re: Tapestry ClassLoading errors

2014-05-31 Thread Chris Mylonas
What if you move your classes from tapestry.utility to tapestry.base.utility which is controlled by tapestrymaybe http://tapestry.apache.org/class-reloading.html On 01/06/2014 4:58 am, Boris Horvat horvat.z.bo...@gmail.com wrote: In what package should I put this component? Currently it

Re: Tapestry ClassLoading errors

2014-05-27 Thread Boris Horvat
Anyone has any idea? On 24 May 2014 11:30, Boris Horvat horvat.z.bo...@gmail.com wrote: Hi everyone, I have create a service to help me reload different ajax zone but I get the following exception java.lang.LinkageError loader constraint violation: when resolving method

Re: Tapestry ClassLoading errors

2014-05-27 Thread Taha Siddiqi
It looks like a dependency problem. Two versions of tapestry-core in class path perhaps. Sent from my iPhone On May 27, 2014, at 5:30 PM, Boris Horvat horvat.z.bo...@gmail.com wrote: Anyone has any idea? On 24 May 2014 11:30, Boris Horvat horvat.z.bo...@gmail.com wrote: Hi everyone,

Re: Tapestry ClassLoading errors

2014-05-27 Thread Boris Horvat
But it is only triggered in class re loading On 27 May 2014 15:11, Taha Siddiqi tawus.tapes...@gmail.com wrote: It looks like a dependency problem. Two versions of tapestry-core in class path perhaps. Sent from my iPhone On May 27, 2014, at 5:30 PM, Boris Horvat horvat.z.bo...@gmail.com

Re: Tapestry ClassLoading errors

2014-05-27 Thread Thiago H de Paula Figueiredo
On Tue, 27 May 2014 10:29:09 -0300, Boris Horvat horvat.z.bo...@gmail.com wrote: But it is only triggered in class re loading It could be a reloadable service being used both injected from Tapestry-IoC and directly, not through T-IoC. If something is live class reloadable, you should

Re: Tapestry ClassLoading errors

2014-05-27 Thread Boris Horvat
I will try to search for the direct usage of the class and to remove it if I find it Thanks On Tue, May 27, 2014 at 5:50 PM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Tue, 27 May 2014 10:29:09 -0300, Boris Horvat horvat.z.bo...@gmail.com wrote: But it is only triggered in

Tapestry ClassLoading errors

2014-05-24 Thread Boris Horvat
Hi everyone, I have create a service to help me reload different ajax zone but I get the following exception java.lang.LinkageError loader constraint violation: when resolving method