Thanks for the points felix.  The real issue is that the exception is
intermittent.  I've closed the bug 2 times only to be opened again when
customers start calling. The page is incredibly simple and I can safely say
everything is split up as much as possible.  Its a simple unsubscribe page
very disconnected from the rest of the app. All my machines are on java 6.
Luckily I dont work on any non unix based systems so case sensitivity is not
an issue.

Is there still no way to turn off live class reloading?

Thanks again,
Zack


Felix Gonschorek-2 wrote:
> 
> hi zack,
> 
> i'am very sorry to hear that it was'nt possible to find a solution and
> that you 
> are going to switch the framework. we've had problems too but luckily we
> were 
> able to solve them all so far.
> 
> since we are using tapestry we are way more productive than with other 
> frameworks or technologies before - i wish you could tell the same.
> 
> here are some more tipps:
> 
> - somtimes the page or page class rewriting fails - mostly if you access 
> services, session state object or symbols in event methods in nested
> method 
> calls. in these cases i divide and remove parts from the code until it
> starts to 
> work again and then i split up the method calls in several lines like:
> 
> before:
> boolean result = myService1.serviceCall1(myOhterService2.serviceCall2());
> 
> after:
> Bean b = myOtherService2.serviceCall2();
> boolean result = myService1.serviceCall1(b);
> 
> - make absolutely sure, that you have the right dependencies in your path
> (maven 
> dependency tree).
> 
> - use the latest jdk version
> 
> - since you posted a stack trace with filesystem related problems before:
> check 
> the lower/UPPER case names of files (classes/tml/gfx). we have people over
> here 
> working with windows and since the windows filesystems don't make a
> differeence 
> between uppper and lower case problems occur first on unix machines.
> 
> I am sure that you already knew my points, but maybe you missed one.
> 
> I hope that you will finally find a solution.
> 
> 
> Felix
> 

-- 
View this message in context: 
http://www.nabble.com/Intermittent-Stax-Exception-tp24648581p25051435.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

Reply via email to