Re: Dynamicly Created Checkboxes

2010-01-22 Thread Stephan Windmüller
Am 22.01.2010 02:40, schrieb Hilco Wijbenga: If I simply add "onSuccess()" I only get the result for "Mno". Adding one or more parameters (for item and checkbox) doesn't seem to work. That sounds very familiar. Please have a look at this bug report: https://issues.apache.org/jira/browse/TAP5-

Tapestry 5 and external web service

2010-01-22 Thread abangkis
Hello, I have 2 question concerning tapestry and web service. 1. I have a service that being exposed as a web service using open esb. What is the easiest way to invoke the web service from tapestry ? do i need another library or is there some kind of tapestry-webservice plugin that tapestry alrea

Re: T5: some automagical way to export versioned assets to CDN?

2010-01-22 Thread britske
Just to get this straight: That code takes care of rewiring the templates to use the correct asset-path right? But it doesn't take care of actually getting the updated assets to CDN in the first place? Thanks, Geert-Jan 2010/1/22 Jun Tsai [via Tapestry Users] < ml-node+4438110-1664249...@n2.nabb

Re: T5: some automagical way to export versioned assets to CDN?

2010-01-22 Thread Thiago H. de Paula Figueiredo
On Fri, 22 Jan 2010 09:44:48 -0200, britske wrote: Just to get this straight: That code takes care of rewiring the templates to use the correct asset-path right? Yes. But it doesn't take care of actually getting the updated assets to CDN in the first place? No, it doesn't. You would need

Re: Tapestry 5 and external web service

2010-01-22 Thread Thiago H. de Paula Figueiredo
On Fri, 22 Jan 2010 09:10:58 -0200, abangkis wrote: Hello, Hi! I have 2 question concerning tapestry and web service. 1. I have a service that being exposed as a web service using open esb. What is the easiest way to invoke the web service from tapestry ? do i need another library or is th

AbstractSelectModel is not in a controlled package

2010-01-22 Thread kamiseq
hi all, I run into a strange problem, I was googling for this, but still have no idea what is going on :( i followed the http://wiki.apache.org/tapestry/Tapestry5HowtoSelectWithObjects and after running the page I got error message java.lang.RuntimeException: Base class org.apache.tapestry5.util.

Re: Tapestry 5 and external web service

2010-01-22 Thread Howard Lewis Ship
On Fri, Jan 22, 2010 at 4:25 AM, Thiago H. de Paula Figueiredo wrote: > On Fri, 22 Jan 2010 09:10:58 -0200, abangkis wrote: > >> Hello, > > Hi! > >> I have 2 question concerning tapestry and web service. >> >> 1. I have a service that being exposed as a web service using open >> esb. What is the

Re: AbstractSelectModel is not in a controlled package

2010-01-22 Thread Joost Schouten (ml)
Did you replace the mypackage with your actual package name? Lets say your AppModule lives in com.domain.services your AbstractSelectModel should be places in com.domain.base Hope it helps, Joost kamiseq wrote: hi all, I run into a strange problem, I was googling for this, but still have n

Re: Tapestry 5 and external web service

2010-01-22 Thread Peter Stavrinides
> There isn't anything I know that deals with webservices in Tapestry, but I > guess any webservice package would be easily integrated with Tapestry-IoC > (and thus Tapestry itself. An example of this would be great Thiago, to me this seems harder than it should be, currently the best way I

[Tapestry Central] In the Brain of Ben Gidley: Mar 23 in London

2010-01-22 Thread Howard
Along with my upcoming Tapestry training at SkillsMatter, there is now a session w/ Ben Gidley on March 23: In the Brain of Ben Gidley: Tapestry 5 In Action. Ben will be talking about project SeeSaw, a video-on-demand service built on top of Tapestry 5. He'll be going into depth about converting St

Re: Tapestry 5 and external web service

2010-01-22 Thread Thiago H. de Paula Figueiredo
On Fri, 22 Jan 2010 14:05:55 -0200, Peter Stavrinides wrote: There isn't anything I know that deals with webservices in Tapestry, but I guess any webservice package would be easily integrated with Tapestry-IoC (and thus Tapestry itself. An example of this would be great Thiago, to me th

[ANNOUNCEMENT] Tapestry-resteasy 0.0.1 released!

2010-01-22 Thread Kalle Korhonen
JAX-RS is simple and cool, and we at Tynamo project (http://tynamo.org) wanted to make it even simpler for you Tapestry dudes! Tapestry-resteasy is a drop-in module for making your webapplication RESTful. Follow our tapestry-resteasy guide (http://tynamo.org/tapestry-resteasy+guide) to set it up. T

Re: [ANNOUNCEMENT] Tapestry-resteasy 0.0.1 released!

2010-01-22 Thread Howard Lewis Ship
Looks nice; you guys have been very busy! I'm a little surprised at the amount of web.xml configuration; I don't know enough about the JBoss code, but it seems like something that could be handled using a contribution to the HttpServletRequest pipeline, and not require web.xml configuration to wor

Re: Dynamicly Created Checkboxes

2010-01-22 Thread Josh Canfield
> I am trying to get the submit results of a dynamic set of checkboxes > and I'm stumped. I'm not sure what you expect the value to be? Also, I don't see t:context in the checkbox documentation, does that do something? You are having trouble because you have a list of values going out, but only a

Re: [ANNOUNCEMENT] Tapestry-resteasy 0.0.1 released!

2010-01-22 Thread Kalle Korhonen
On Fri, Jan 22, 2010 at 10:49 AM, Howard Lewis Ship wrote: > Looks nice; you guys have been very busy! Thanks Howard! Oh I think we are mostly just publishing code we've been sitting on for some time. > I'm a little surprised at the amount of web.xml configuration; I don't > know enough about th

Return image asset from onActivate

2010-01-22 Thread ross.efi
How do I get an input stream from an injected asset on my page? The activation context is which image to use, so I want to stream one asset or the other. @Inject @Path( "context:/images/myimage1.png") private Asset myImageLogo1; @Inject @Path( "context:/images/myimage2.png")

Re: Return image asset from onActivate

2010-01-22 Thread ross.efi
I figured it out on my own. The section below just needs to be replaced with public InputStream getStream() throws IOException { return myImageLogo1.getResource().openStream() } Works great! Ross ross.efi wrote: > > How do I get an input stream from an in