Hi,

www.softpro.ee/tapestry5/


app.war is with tapestry 5.0.13 lib it does'nt work with tomcat 5.5.26
app1.war is with tapestry 5.0.10 lib it work with tomcat 5.5.26



I change 4 lib file:
javaassists-3.6.ga.jar -> javaassists-3.7.ga.jar
tapestry-ioc-5.0.10.jar -> tapestry-ioc-5.0.13.jar
tapestry-core-5.0.10.jar -> tapestry-core-5.0.13.jar
tapestry-annotations-5.0.10.jar -> tapestry-annotations-5.0.13.jar



And also i change AppModule.java

5.0.10
import org.apache.tapestry.TapestryConstants;
import org.apache.tapestry.ioc.MappedConfiguration;
import org.apache.tapestry.ioc.OrderedConfiguration;
import org.apache.tapestry.ioc.ServiceBinder;
import org.apache.tapestry.ioc.annotations.InjectService;
import org.apache.tapestry.services.Request;
import org.apache.tapestry.services.RequestFilter;
import org.apache.tapestry.services.RequestHandler;
import org.apache.tapestry.services.Response;

        configuration.add(TapestryConstants.SUPPORTED_LOCALES_SYMBOL, "en");
        configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL,
"false");


5.0.13
import org.apache.tapestry5.SymbolConstants;
import org.apache.tapestry5.ioc.MappedConfiguration;
import org.apache.tapestry5.ioc.OrderedConfiguration;
import org.apache.tapestry5.ioc.ServiceBinder;
import org.apache.tapestry5.ioc.annotations.InjectService;
import org.apache.tapestry5.services.Request;
import org.apache.tapestry5.services.RequestFilter;
import org.apache.tapestry5.services.RequestHandler;
import org.apache.tapestry5.services.Response;

        configuration.add(SymbolConstants.SUPPORTED_LOCALES, "en");
        configuration.add(SymbolConstants.PRODUCTION_MODE, "false");



Whats the problem?


Argo Vilberg
[EMAIL PROTECTED]
www.softpro.ee






2008/7/27 Filip S. Adamsen <[EMAIL PROTECTED]>

Hi,
>
> Please show some code or we won't be able to help you. :)
>
> Also, please don't cross-post to the dev and users lists. This belongs
> here, in the users list, and has nothing to do with the development of
> Tapestry itself.
>
> -Filip
>
>
> On 2008-07-26 19:41, Argo Vilberg wrote:
>
>> Hello
>>
>> If i try just simple hello world application in tapestry 5, then it work
>> with 5.0.6 but not 5.0.13.
>>
>> I cant figure out what is problem?
>>
>>
>> HTTP Status 404 - /t5first/
>> ------------------------------
>>
>> *type* Status report
>>
>> *message* */t5first/*
>>
>> *description* *The requested resource (/t5first/) is not available.*
>> ------------------------------
>> Apache Tomcat/5.5.26
>>
>>
>>
>> Argo
>>
>>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to