Tagged Questions

Apache Tapestry is a web application framework which implements the MVC pattern. It is in many ways similar to Apache Wicket. Tapestry is a component-based framework, attempting to structure web applications into small, manageable and re-useable parts. Components consist of a component class file and often a component template file; also, components can have their own JavaScript and CSS. Tapestry template files are XHTML files, so they can be edited in

learn more… | top users | synonyms

28
votes
10answers
9k views

Difference between Apache Tapestry and Apache Wicket

Apache Wicket ( http://wicket.apache.org/ ) and Apache Tapestry ( http://wicket.apache.org/ ) are both component oriented web frameworks - contrary to action based frameworks like Stripes - by the ...
6
votes
2answers
339 views

how to draw diamond using tapestry component t:loop

For my homework for Tapestry, I have to show a diamond on table from array of strings. Here's what I have so far: code Index.java public class Index { @Property private Integer ...
6
votes
5answers
2k views

Tapestry5 vs Play framework

I know there are many questions here comparing one framework with another. I feel i have to add one more. What is the advantage of play framework over Tapestry5 framework? Which one would you ...
5
votes
2answers
206 views

Good resources for building web-app in Tapestry

I'm currently researching into Tapestry for my company and trying to decide if I think we can port our pre-existing proprietary web applications to something better. Currently we are running Tomcat ...
5
votes
7answers
3k views

Which Java web framework best accomodates web designers?

Which Java web framework best supports the "web UI designer" role? That is, which framework lets you: Use popular web design tools (XHTML validators, CSS editors, &c.) on your views/pages View ...
4
votes
5answers
903 views

Which Web2.0 framework integrates best with JPA2?

My choice is between Tapestry 5 Vaadin JSF2 --- start EDIT 2010-05-13 18:04 -- Spring MVC (don't know why I forgot to mention this) --- stop EDIT 2010-05-13 18:04 -- I like Vaadin most, ...
4
votes
2answers
1k views

Refreshing a Tapestry zone on a regular basis

What is the best way to refresh a Tapestry zone on a regular basis to pull changes of a dataset from a server?
4
votes
8answers
1k views

Should one use Tapestry 5 for a production release?

We're starting a large web project, mostly green field. I like the Tapestry framework for java/web solutions. I have concerns about starting a Tapestry 5 project since T5 is still in beta. However, if ...
3
votes
2answers
153 views

Exposing an API to a Tapestry web application

I am working on a Tapestry 5 based web application that should expose an API to iPhone and Android devices. Currently the API is implemented using the built in MVC capabilities of tapestry. E.g all ...
3
votes
1answer
101 views

Does Tapestry 5 Have composite components

I'm trying to write a composite component like this <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ...
3
votes
3answers
1k views

Installing maven on windows 7 64bit

I want to create a Tapestry Skeletion Project. I follow to these guide: http://maven.apache.org/download.html#Installation, http://juanjoefe.com/tutoriales/instalar-maven-en-windows-7/ and other ...
3
votes
1answer
80 views

Tapestry5JSPEditorEclipse for the TML pages

I am using Tapestry5JSPEditorForEclipse to generate the TLD files by tapestry-tldgen Maven plugin. i have added entry in the project pom.xml. below is the entry for the reference. <plugin> ...
3
votes
1answer
253 views

Tapestry - Passing Parameters to method from tml

Is it possible to pass a parameter to the method which is being defined in controller, and called by tml ? tml ${getDynamicFieldValue("Subject")} java public String getDynamicFieldValue(String ...
3
votes
2answers
100 views

T5 page request return blank layout under heavy load test

I recently have an application develop with tapestry 5.1 deploy on Weblogic + oracle database. The pages work well under normal usage but went nuts after stress testing. I am using hibernate + spring ...
3
votes
2answers
323 views

Maven and pom.xml

I'm using m2eclipse and trying to learn some tapestry. I'm trying to update my project to pull some different resources from maven. (Or at least, I think that's what I'm trying to do). Here's part ...
3
votes
7answers
1k views

Java Server Faces 2.0 or Tapestry 5.2?

Are there any up to date articles comparing JSF 2 and Tap 5? Everything I seem to find is comparing JSF 1.2 and Tap4. Does anyone have any experience with T5 or JSF2 and time to evangelize one or the ...
3
votes
2answers
173 views

How to create a multiple basket selection with Tapestry

Let's consider following problem. There is a page that contains baskets. A basket is a component that contains a list of items such as fruits or cars or whatever. In the page there are three ...
3
votes
1answer
260 views

Testing Tapestry pages and components with JUnit

I usually try to minimize testing with Selenium and maximize the usage of plain old back-end testing (JUnit, mocking). With Tapestry I am finding it hard to test pages and components in the latter way ...
3
votes
2answers
1k views

Loading jQuery with Tapestry 5

Okay, so I'm not a Java guy, but I work with loads of them. We generally load Prototype with Tapestry 5, as Tapestry was built on this javascript library. As a UI/front end developer/engineer, I ...
3
votes
3answers
561 views

Piecemeal Conversion from Struts to Tapestry 5

I have a Struts (1.3.8) application that I'd like to convert to Tapestry 5. There will probably not be time to do the whole conversion in one fell swoop. I'd like to deliver new functionality in ...
3
votes
1answer
804 views

Tapestry 4: Asset Cache Control?

I use Tapestry 4, and whenever we push a release that changes any assets (image, style sheet, JS library), we get problems because users still have the old version of the asset in their browser cache. ...
3
votes
4answers
2k views

Setting ISO-8859-1 encoding for a single Tapestry 4 page in application that is otherwise totally UTF-8

I have a Tapestry application that is serving its page as UTF-8. That is, server responses have header: Content-type: text/html;charset=UTF-8 Now within this application there is a single page that ...
2
votes
2answers
78 views

Securing Tapestry eventhandlers with Annotations

How may I secure single eventhandlers by annotations? I know how to secure Complete pages, but i have no idea how to check before invocation if a a method has an annotation. Is this possible? I dont ...
2
votes
1answer
84 views

difference between t:type=“grid” and t:grid in tapestry

in tapestry we can use the component in two ways <t:type="grid" t:source="persons" t:row="person" t:encoder="personEncoder" t:include="id,firstname,lastname,startdate" t:add="delete"\> or we ...
2
votes
2answers
67 views

YUICompressor unescapes backslashes

In our application, we invoke YUICompressor to minify our javascript. Under some conditions we are having trouble identifying, it incorrectly unescapes backslash-escaped characters, so for example ...
2
votes
3answers
163 views

Monitor Platform access and spend time of the system in java

How can I implement following functionality in a project using or without using spring-security. 1. LoggedIn Count: Number of times the user has logged into the system. 2. Time Spend: Total time ...
2
votes
1answer
126 views

tapestry 5 session bean

The problem should be common, but i can't find any clear information about it. Basically, each client of my web app is building an object, i would like to store this object in a session bean in ...
2
votes
1answer
268 views

Tapestry: default value for a dropdown component

I use the following code for a select-component: Java-class: @Component(parameters = {"blankOption=AUTO", "model=someModel", "value=someId", "zone=someZone"}) private Select ...
2
votes
2answers
244 views

Yui compressor StringIndexOutOfBoundsException on jboss

When minimising yui with 2.4.6, I get this problem: java.lang.StringIndexOutOfBoundsException: String index out of range: 232 at java.lang.String.substring(String.java:1934) at ...
2
votes
4answers
355 views

Should I choose Apache Click or Tapestry 5?

I am to decide whether to use Apache Click or Apache Tapestry 5 framework. Which one I should choose? I'm looking for a framwork that I could use for building Java EE web applications for the next few ...
2
votes
1answer
249 views

Cross-form validation issue tapestry

I really new in Java....i work some research in java using tool Tapestry framework... I have some problem with exception when i calling @Component "Form"...tapestry throws me exception : Embedded ...
2
votes
1answer
189 views

Does an annotation exist for slf4j like the @Log for Tapestry?

There is an annotation @Log in the Tapestry fwk which traces, with debug level, the entry and exit of a method. Is there the same thing for slf4j ?
2
votes
7answers
803 views

Help selecting java component-based web framework

I'm interested in trying and learning a component-based web framework. Currently, I only have experience with action-based frameworks like Spring MVC and Grails. I'm deciding between: JSF 2.0, Wicket, ...
2
votes
3answers
504 views

How do you create a component in Tapestry 5?

I have been using Tapestry's built-in components, but now I'd like to try making my own. Assuming this is possible, how is it done and is it generally expected that developers are going to be ...
2
votes
2answers
400 views

How to set the focus after a zone update in Tapestry5

I have a zone that contains a form that contains a loop. When someone changes a text field within the loop, it updates the entire form and loop on the onKeyUp event. I am trying to find a way to ...
2
votes
1answer
239 views

Tapestry5 Logout exeption

I am facing an strange issue and not able to find out the root cause. Here is the problem statement. I have one tapestry page with logout button. when i click on logout button below code is executed ...
2
votes
3answers
350 views

Tapestry5 : No service implements the interface org.springframework.context.ApplicationContext

I'm using the Tapestry5 tapx template library to send an html email, as per this example. When I run the example I get the following error: Caused by: java.lang.RuntimeException: No service ...
2
votes
1answer
515 views

tapestry layouts and component libraries

I have a few different projects that basically use the same javascript/css and layout template. I want to move all of this into my tapestry-common-lib project and reference it from there. I have ...
2
votes
5answers
1k views

Submitting a form from inside a JavaScript function in Tapestry

I am trying to submit a form from inside a JavaScript function in Tapestry. Here is the tml file. <!DOCTYPE html> <html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd" ...
2
votes
0answers
71 views

How can I override the URL writing mechanism for .script <include-script> tags in Tapestry 4?

Previously on StackOverflow, I wrote this question where I asked how to append a build number parameter to the generated URLs for Tapestry assets to solve caching problems. I ultimately answered my ...
2
votes
4answers
798 views

Any success stories for JSF, GWT, Wicket or Tapestry on the web?

I am searching for framework references. In other words I am looking for companies, which have successfully implemented a framework solution in java web application environment (success stories). ...
2
votes
3answers
228 views

What do you think about Tapestry 5.2? [closed]

I want to create a new project and I'm studing diferent web frameworks In StackOverFlow there are diferent threads of tapestry but it talks about Tapestry 4 or old Tapestry 5.0.8 What about tapestry ...
2
votes
3answers
538 views

Session Timeout AJAX Error in Tapestry Application

I'm building a webapp using Tapestry in combination with Spring Security and the jQuery-library besides Prototype. When a user clicks on a link after his session timed out, he is automatically ...
2
votes
1answer
314 views

How do I use Tapestry-Security?

I discovered Tapestry 5, quite recently, its clear separation between view and controller, the use of name standardization instead of XML made me go for it straight. Quite frankly I don't plan on ...
2
votes
2answers
177 views

Return non-HTML, non-JSON http bodies in Tapestry 5?

I have to implement the service provider of the OAuth protocol in a project that uses Tapestry5. Therefor I just need to return a very simple HTTP response body that is neither HTML or JSON. At first ...
2
votes
1answer
309 views

Tapestry dynamic generated image

My Tapestry5 application generate dynamically images with jFreeChart every day. My problem is that i don't know how to show. I have tried to save them into the webapp folder, but it seems impossible, ...
2
votes
1answer
1k views

Updating a zone inside a form in Tapestry 5

I've got a Zone inside a Form, the Zone is updated with a block containing input fields which I would like to bind to the parent Form. Unfortunately this doesn't seem to work quite as easily as I ...
2
votes
1answer
565 views

How to display a confirmation message in Tapestry5?

I am developing a website as part of my final year project and I want to display a message which confirms that an email has been sent. I know how to display custom error messages on a form i.e. You ...
2
votes
1answer
639 views

Help creating a JavaScript mixin in Tapestry5?

I am creating a mixin which renders a javascript file when a textfield gains focus. I am new to the idea of mixins in Tapestry, and I am unsure of where to place my original javascript file which i ...
2
votes
2answers
980 views

Tapestry 5 and Spring beans with same interface

I have a problem with Tapestry 5 and Spring integration. Problem occurs if I have a multiple beans that implement the same interface and I try to inject them with @Inject annotation. Of course I got ...

1 2 3 4 5