Re: getClientId() seems to output the wrong value

2006-10-29 Thread Patrick Moore
your problem may be the same as mine. Did you see if you have 2 different forms on the same page? https://issues.apache.org/jira/browse/TAPESTRY-1131 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

stale link checking....

2006-10-29 Thread Patrick Moore
is there a way to turn this off? In particular when I am trying to view the html source -- I can't because I get this exception. So since I don't care if multiple duplicate posts are submitted -- how can this be disabled? -Pat ---

strange problem with oro and tapestry 4.1.1

2006-10-29 Thread Patrick Moore
Has anyone else seen this exception? It shows up sporatically when the asset service is being ask if it is managing a resource. Oro blows up trying to compile the 'tapestry/*' string. 'tapestry/*' is the first unprotected resource. The path being matched against is '/dojo/src/widget/templates/imag

Re: EventListener on components within a @For loop

2006-10-29 Thread Patrick Moore
https://issues.apache.org/jira/browse/TAPESTRY-1132 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Using Jetty 5.1.1 for simple project: hivemodule.xml being duplicated

2006-10-29 Thread Carfield Yim
I encounter this problem before because of the way the eclipse-jetty plugin load same jar twice. However, I am not sure why this is a problem of hivemind Just pick either isn't ok? Probably worth to show a warning to user but I don't see there is a point to forbid user from running the applic

Re: problem injecting service

2006-10-29 Thread Warner Onstine
Definitely a step closer! Thanks so much Howard, now I just have to figure out how to use the getLink() method properly, digging through others' code now ;-). -warner On Oct 29, 2006, at 8:22 PM, Howard Lewis Ship wrote: Warner, I'm still unsure what's happening with your stack trace, but

Re: problem injecting service

2006-10-29 Thread andyhot
Jesse Kuhnert wrote: > I use the ServiceLink quite often but am not as familiar with the > configuration point you are contributing to. For example, tacos plugs > in to > the "tapestry.services.FactoryServices" configuration point to add > special > services: > > http://tacos.svn.sourceforge.net/vi

Re: problem injecting service

2006-10-29 Thread Howard Lewis Ship
Warner, I'm still unsure what's happening with your stack trace, but things are beginning to come together. The core problem is that your engine service, ICalService, is not invoking the LinkFactory service correctly: public ILink getLink(boolean isPost, Object parameters) { return li

Re: problem injecting service

2006-10-29 Thread Warner Onstine
Hmm, according to the hivedoc those should be (roughly) the same, one is for Tapestry's factory (what your using) and the other overrides factory defaults and (i believe) is meant to be used externally (if i'm reading the docs right). http://tapestry.apache.org/tapestry4/tapestry/hivedocs/c

Re: problem injecting service

2006-10-29 Thread Jesse Kuhnert
I use the ServiceLink quite often but am not as familiar with the configuration point you are contributing to. For example, tacos plugs in to the "tapestry.services.FactoryServices" configuration point to add special services: http://tacos.svn.sourceforge.net/viewvc/tacos/tacos-4.0/trunk/tacos-co

Re: EventListener on components within a @For loop

2006-10-29 Thread Jesse Kuhnert
Ohh,Right, parameters . I don't know if a JIRA issue is opened for it (support parameters using @EventListener, somehow..) , but that would be a good start towards getting that resolved. On 10/27/06, Patrick Moore <[EMAIL PROTECTED]> wrote: What I am hoping to do is something like this:

Re: Problem with too long urls

2006-10-29 Thread DarĂ­o Vasconcelos
If you don't want to mess with DataSqueezers and other esoterical stuff, you could use the FormLinkRenderer by MindBridge, you can download it from http://www.t-deli.com/. In short, specifying the "renderer" attribute of any DirectLink will automatically turn the request into a POST instead of GE

Re: Problem with too long urls

2006-10-29 Thread Sam Gendler
Generally, this occurs because Tapestry has been forced to serialize an object, or a collection of objects, to the form in order ensure consistency when the form is rewound. You can prevent this by defining a 'DataSqueezer' for your entities which will allow you to send a simple primary key from

Problem with too long urls

2006-10-29 Thread Julian Sinai
Hi--I'm having a problem with Tapestry URLs from a DirectLink in my application. It seems to only be a problem in Internet Explorer. My guess is the URLs are too long. I've tried the documented advice to use the DirectLink service encoder, but that doesn't shorten the session information that ge

Re: problem injecting service

2006-10-29 Thread Dennis Sinelnikov
There is a nice example on how to use ServiceLink component with your own EngineService in Chapter 8 (Handling File Downloads and Uploads) of "Enjoying Web Development w/ Tapestry" book. It also has nice explanations on the "flow"... Dennis Warner Onstine wrote: After some more diging I deci

Re: Using Jetty 5.1.1 for simple project: hivemodule.xml being duplicated

2006-10-29 Thread andyhot
Check the classpath settings that jetty-launcher uses... Your hivemind-1.1.1.jar is getting included twice Bill Holloway wrote: > Apologies if this is already covered. Probabaly is, but when I run > the jetty launcher in eclipse, I get > > Unable to initialize application servlet: Error: Module

Re: Using Jetty 5.1.1 for simple project: hivemodule.xml being duplicated

2006-10-29 Thread Jesse Kuhnert
Sounds like you have the jar on your classpath twice. Tapestry uses jetty to run all of the internal/sample applications from eclipse, so you should find plenty of working examples in the repo. On 10/29/06, Bill Holloway <[EMAIL PROTECTED]> wrote: Apologies if this is already covered. Probaba

Using Jetty 5.1.1 for simple project: hivemodule.xml being duplicated

2006-10-29 Thread Bill Holloway
Apologies if this is already covered. Probabaly is, but when I run the jetty launcher in eclipse, I get Unable to initialize application servlet: Error: Module hivemind is duplicated! Definition in jar:file:/Users/texomaleo/eclipse/workspace/mindbites_site_jetty/context/WEB-INF/lib/hivemind-1.

Re: Re: tapestry-acegi questions

2006-10-29 Thread Shing Hing Man
Step C at the following might help. http://wiki.javascud.org/display/hsa/Acegi+and+Tapestry--A+Step-by-Step+Guide shing --- Robin Ericsson <[EMAIL PROTECTED]> wrote: > On 10/29/06, James Carman > <[EMAIL PROTECTED]> wrote: > > Hi, Robin. I haven't implemented form-based > authentication in >

Re: Re: tapestry-acegi questions

2006-10-29 Thread Robin Ericsson
On 10/29/06, James Carman <[EMAIL PROTECTED]> wrote: Hi, Robin. I haven't implemented form-based authentication in tapestry-acegi, yet. But, I don't think it's that difficult, really. Your need to use the AuthenticationProcessingFilter (I don't define it in my hivemodule.xml, but it would be ea

Re: tapestry-acegi questions

2006-10-29 Thread James Carman
Hi, Robin. I haven't implemented form-based authentication in tapestry-acegi, yet. But, I don't think it's that difficult, really. Your need to use the AuthenticationProcessingFilter (I don't define it in my hivemodule.xml, but it would be easy to do so in yours) and your form has to have two fi

tapestry-acegi questions

2006-10-29 Thread Robin Ericsson
Hi, There still isn't any tapestry-acegi specific list is there? What I like is to have is to use a webpage for login instead of http basic auth. However, after checking the source of tapestry-acegi it seems like a monster to accomplish based on that I know practially not much at all about acegi