Re: how to manually deploy a tapestry5 project into Tomcat

2010-05-27 Thread Geoff Callender
If you're happy to use Ant then the process here might help you: http://jumpstart.doublenegative.com.au/jumpstart4.9/tips.html#OTHER_SERVERS Cheers, Geoff On 28/05/2010, at 12:11 AM, Genís Pujol wrote: > Hello, > > Does anybody have documentation regarding how to deploy a Tapestry5 p

Re: how to manually deploy a tapestry5 project into Tomcat

2010-05-27 Thread Greg Pagendam-Turner
Genis, Check that your web.xml is directing requests to the Tapestry filter. Also have a look at the maven tomcat plugin. If you set it up you can deploy your application by: mvn tomcat:deploy Regards, Greg On 28/05/2010 1:24 AM, Genís Pujol wrote: Al 27/05/2010 17:03, En/na Josh Canfield

Re: how to manually deploy a tapestry5 project into Tomcat

2010-05-27 Thread françois facon
Hi Genis wtp plug-in can help you to setup your environnement. have a look at http://baptiste-meurant.developpez.com/tutoriaux/tapestry5-spring-hibernate/ it's in french but with lots of screenshot. hope this will help you françois

Re: how to manually deploy a tapestry5 project into Tomcat

2010-05-27 Thread Josh Canfield
I meant that Tomcat does find the Index.tml but it doesn't pass control to Tapestry so it renders the template as plain text... What is the path to your .tml files located in your exploded folder? -- Josh On May 27, 2010, at 8:24 AM, Genís Pujol wrote: Al 27/05/2010 17:03, En/na Josh Ca

Re: how to manually deploy a tapestry5 project into Tomcat

2010-05-27 Thread Genís Pujol
Al 27/05/2010 17:03, En/na Josh Canfield ha escrit: Tapestry is built using maven but your project doesn't need to care about that. You can download all the dependencies yourself and deploy your app as a WAR or an exploded webapp folder. In the end to the container Tapestry is just a Servlet fi

Re: how to manually deploy a tapestry5 project into Tomcat

2010-05-27 Thread Genís Pujol
Al 27/05/2010 17:03, En/na Josh Canfield ha escrit: Tapestry is built using maven but your project doesn't need to care about that. You can download all the dependencies yourself and deploy your app as a WAR or an exploded webapp folder. In the end to the container Tapestry is just a Servlet fi

Re: how to manually deploy a tapestry5 project into Tomcat

2010-05-27 Thread Josh Canfield
Tapestry is built using maven but your project doesn't need to care about that. You can download all the dependencies yourself and deploy your app as a WAR or an exploded webapp folder. In the end to the container Tapestry is just a Servlet filter. -- Josh On May 27, 2010, at 7:11 AM, Gení

how to manually deploy a tapestry5 project into Tomcat

2010-05-27 Thread Genís Pujol
Hello, Does anybody have documentation regarding how to deploy a Tapestry5 project into Tomcat? The official docs just say "it's the same as jetty"... Does one have to use Maven? can I just drop the folders into webapps (if so, how)? Thanks, Genis