Oops - don't modify ClasspathURLConverter as I did below.

The JBoss server log shows that Tapestry's services start but no 
pages/components/mixins have been found, ie. there are no INFO messages from 
ComponentClassResolver.

The solution will be to get ClasspathURLConverter working again.


On 07/05/2011, at 3:44 PM, Geoff Callender wrote:

> I'm also having trouble with JBoss 6. I'm trying to deploy jumpstart's ear.
> 
> First, a fix to the ClasspathURLConverter for JBoss 6. Instead of this...
> 
>               if (url != null && url.getProtocol().startsWith("vfs")) {
> 
> try this...
> 
>               if (url != null && url.getProtocol().startsWith("vfs") && 
> !url.getPath().endsWith("/")) {
> 
> Actually, it might not be needed at all, but I don't know for sure yet.
> 
> The business layer runs fine and I can run remote tests to it just fine.
> 
> The web layer appears to be deployed OK, and when I do requests to it I can 
> confirm they are passing through my PageProtectionFilter, so Tapestry's 
> running and my requests are reaching the servlet filters.
> 
> So it appears that Tapestry's getting short-circuited. My guess is that it 
> can't find the page class or template.
> 
> 
> On 06/05/2011, at 8:30 AM, Thiago H. de Paula Figueiredo wrote:
> 
>> On Thu, 05 May 2011 18:34:18 -0300, Jabbar <aja...@gmail.com> wrote:
>> 
>>> Hello Adam,
>>> 
>>> We've always used JBoss, it's the company standard. I could perhaps use
>>> Glassfish or Jetty to host the application. The application works perfectly
>>> using the run jetty run eclipse plugin.
>> 
>> What's the error message when you try to run the application in JBoss?
>> 
>> -- 
>> Thiago H. de Paula Figueiredo
>> Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and 
>> instructor
>> Owner, Ars Machina Tecnologia da Informação Ltda.
>> http://www.arsmachina.com.br
>> 
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>> For additional commands, e-mail: users-h...@tapestry.apache.org
>> 
> 

Reply via email to