Davor, Thank you, that was exactly what I needed!
For the sake of anyone else who has the same issue...this is what I added to my pom.xml to fix it: <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.hbm.xml</include> </includes> <filtering>false</filtering> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*</include> </includes> <filtering>false</filtering> </resource> <resource> <targetPath>com/homeed/components</targetPath> <filtering>false</filtering> <directory>src/main/java/com/homeed/components</directory> <includes> <include>*.tml</include> </includes> </resource> <resource> <targetPath></targetPath> <filtering>false</filtering> <directory>src/main/java/com/homeed/pages</directory> <includes> <include>**/*.tml</include> </includes> </resource> </resources> Thanks again! Andy On Sat, 2008-02-23 at 20:40 +0100, Davor Hrg wrote: > the error represents missing templates for pages or components > > after it is unpacked, you may want to manualy copy pages > and components there > > pages in webapp directly, > and components in WEB-INF/classes > > copy all from $yourProject/src/main/resources > to $webapp/WEB-INF/classes > > > Davor Hrg > > On Sat, Feb 23, 2008 at 7:58 PM, Andy Huhn <[EMAIL PROTECTED]> wrote: > > Hello, > > > > I'm trying to set up my production server for the first time. I don't > > know anything about Jetty, so I may be missing something obvious. I can > > start up Jetty without problems, and receive no errors in the log. It > > seems to unpack my WAR, again without errors. > > > > However, when I attempt to access a URL, I receive the following: > > > > Render queue error in BeforeRenderTemplate[Static:substitute]: This > > markup writer does not have a current element. The current element is > > established with the first call to element() and is maintained across > > subsequent calls. > > > > No matter what page I access, I get the same error message...different > > page components listed, but the last two sentences are the same ("This > > markup writer does not have a current element. The current element is > > established with the first call to element() and is maintained across > > subsequent calls."). > > > > Help? > > > > I'm using Jetty6, Tap 5.0.10. > > > > Thanks a bunch, > > Andy > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]