"template component not found" when running from source but WAR file running OK

2007-12-04 Thread Tim
Hi, I am develping project on Tapestry 4.0.2 in Eclipse3.3. I encounter "Could not find template for component StipHome/searchByCode in locale en." each time I use custom component when run the project from Eclipse src directories on tomcat 5.5.25. But surprisingly when I build it to WAR file and

"Could not find template" when running from source but WAR file running OK

2007-12-04 Thread Tim
Hi, I am develping project on Tapestry 4.0.2 in Eclipse3.3. I encounter "Could not find template for component StipHome/searchByCode in locale en." each time I use custom component when run the project from Eclipse src directories on tomcat 5.5.25. But surprisingly when I build it to WAR file and

Where to store site settings?

2011-09-28 Thread Tim
in a normal Java class? Thanks. -- Tim Koop - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Page .tml location

2011-10-05 Thread Tim
tried to put my Index.tml in /src/main/resources, and I tried /src/main/resources/com/app/pages/ and it didn't work. Can somebody please confirm or deny that it's possible to put your .tml page files somewhere else? Thank

Re: Page .tml location

2011-10-05 Thread Tim
files? -- Tim Koop On 05/10/2011 1:18 PM, Lenny Primak wrote: What you are doing is absolutely correct. Make sure that your war file is packaged as expected. That seems to be recurring problem that the tml files aren't deployed in your war file correctly. On Oct 5, 2011, at 2:14 PM

Re: Page .tml location

2011-10-05 Thread Tim
Thanks Lenny and Thiago. My Eclipse wasn't copying everything from my resources to my target. But it works now. Thank you very much. What about other files like .js files or image files? Can they be put into my jar file? -- Tim Koop On 05/10/2011 1:28 PM, Lenny Primak wrote: Th

Form field focusing

2011-10-26 Thread Tim
in advance. -- Tim - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

How to get a SessionState object in AppModule.contributeTypeCoercer ?

2011-11-09 Thread Tim
tate inside the AppModule.contributeTypeCoercer method, so I can give it to SearchCriteria when it is created there. I hope that makes sense. Anyone have a nifty line of code that can let me do this? Thanks a lot. -- Tim - To unsubscribe

How easy is this to do?

2012-02-01 Thread Tim
itself. So the main component needs to know how many will be rendered, not just how many there are in the .tml file. Right now I'm staring at the code of the class AbstractConditional, in the beginRender method, hoping to find some inspiration. But maybe someone on this list has a better id

Component that lowercases the first letter of the body

2012-02-01 Thread Tim
o the transformation on it? Thanks. -- Tim Koop - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Re: Component that lowercases the first letter of the body

2012-02-01 Thread Tim
Thanks Chris. I knew about the css text-transform, but not about "first-letter". I think this will work nicely. -- Tim On 01/02/2012 4:18 PM, Chris Mylonas wrote: couldn't you do it in CSS? https://drupal.org/node/222543#comment-732983 "...first-letter css pseudo-elem

Re: Showing text with line breaks converted to or

2012-04-18 Thread Tim
Does anyone know a convenient and secure way to escape HTML? -- Tim - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Re: Showing text with line breaks converted to or

2012-04-18 Thread Tim
Am 18.04.2012 um 20:32 schrieb Tim: On 18/04/2012 1:25 PM, Martin Strand wrote: Another option is to leave the code as it is right now and fix this with CSS instead: p.mytext { white-space: pre; } I originally did it this way, but I found that really long lines didn't wrap at

Problem after upgrade to 5.0.10

2008-02-26 Thread Tim Sawyer
Hi, I've just upgraded my app from 5.0.6 to 5.0.10 and I have the following error. What does it mean? Where do I start looking? Thanks, Tim. An unexpected application exception has occurred. Render queue error in BeginRender[txn/SingleXmlClass:typerenderer.if]:Failure reading para

Re: Problem after upgrade to 5.0.10

2008-02-26 Thread Tim Sawyer
Much better...thanks! Tim. On Tuesday 26 Feb 2008, Tobias Wehrum wrote: > Hi, > > I do not know how to fix this error, but maybe this helps searching: > Add "-Dtapestry.production-mode=false" to your JVM arguments to get the > detailed exception again. > > R

T5 Checkbox Problem

2008-04-03 Thread Tim Sawyer
hanks, Tim. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Adding Script Only Once

2006-07-08 Thread Tim Sawyer
}'); </let> <body> function disableLinks() { var lAnchors = document.anchors; for ( var i=0; i&lt;lAnchors.length; i++ ) { var lElement = lAnchors[i]; lElement.disabled = true; } return true; } </body> Thanks, Tim. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Adding onClick to PageLink

2006-07-19 Thread Tim Sawyer
having trouble working out how to add the onsubmit call into my subclass of PageLink. Can someone point me in the right direction please? thanks, Tim. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Adding onClick to PageLink

2006-07-22 Thread Tim Sawyer
click to my PageLink component subclass. Thanks, Tim. On Thursday 20 July 2006 03:58, Jesse Kuhnert wrote: > I did something similar yesterday but chose the cowardly way out and just > flashed up a "progress dialog" instead using a dojo modal dialog widget. > > ie onClick="

Validation

2006-08-10 Thread Tim Sawyer
, Tim. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Validation

2006-08-10 Thread Tim Sawyer
, Tim. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Question about validation

2006-08-10 Thread Tim Sawyer
On Thursday 10 August 2006 20:02, Vinicius Carvalho wrote: > But delegate.isInError() is returning false. I think that's the wrong method - try delegate.hasErrors() or something similar. Tim. - To unsubscribe, e-mail

Mixed up sessions

2006-08-21 Thread Tim Sawyer
test multi-user now. My first thought was that someone had used instance variables in the tapestry pages, but I can't find any evidence of that. Does anyone have any idea what this could be? Thanks, Tim. - To unsubscribe,

Re: Mixed up sessions

2006-08-21 Thread Tim Sawyer
I don't think we're using any complex hivemind stuff - here's the hivemind.xml

Re: Mixed up sessions

2006-08-21 Thread Tim Sawyer
We believe we know what's causing this now. The customer had multiple thin-clients running IE from a citrix box, all logged into citrix as the same user. This means that they are all sharing the same session in IE on the citrix box. Not a good idea! Thanks, Tim. On Monday 21 August 20

Re: Mixed up sessions

2006-08-21 Thread Tim Sawyer
r only seems to imply persisting sessions across tomcat restarts. Our current plan is to tell the customer to set up citrix properly! Tim. On Monday 21 August 2006 11:59, James Carman wrote: > Are you using Tomcat? If you are, turn off persistent sessions. See if > that fixes it. >

Form submitting problem

2006-08-24 Thread Tim Sawyer
entered cheque number does not get through to the model behind the array of cheque number fields. Does anyone have any idea why? Or any pointers as to where to look? Cheers, Tim. - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Form submitting problem

2006-08-24 Thread Tim Sawyer
idation in the front end. Does anyone know why the original problem I outlined occurs? Is tapestry doing some validation on the form submit to ensure it is not double submitted? Ta, Tim. On Thursday 24 August 2006 14:21, Ron Piterman wrote: > Use validation instead of a custom exception pag

Re: Form submitting problem

2006-08-24 Thread Tim Sawyer
lidationDelegate, we just show the exception page, and allow the user to go back. Thanks again, Tim. On Thursday 24 August 2006 20:04, Ron Piterman wrote: > Me again... > > Two things: the exception page is not for business logic exceptions but > should be used as a fallback in case

Re: [OpenLayers-Users] dragmakerer

2007-11-01 Thread Tim Schaub
that is an option for you, I can give a bit more detail. Tim Paul Stanton wrote: Thanks Tim, Believe me I would if I could find time! I've noticed the drag marker demo does not work whatsoever in IE 6, however the drag feature one does. Is this due to recieve any attention soon or should I

T5: Two links to same event method

2007-11-19 Thread Tim Sawyer
two OnEvent annotations on the same method. Cheers, Tim. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

T5 Annotations Question

2007-03-03 Thread Tim Sawyer
some way being considered for T5 to handle this situation? Cheers, Tim. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: T5 Annotations Question

2007-03-04 Thread Tim Sawyer
Good answer :-) Thanks Howard! Tim. On Sunday 04 March 2007 07:12, Howard Lewis Ship wrote: > Don't mistake the convenience of the annotations for an > annotations-only approach. > > Tapestry can automatically build the necessary BeanModel (used by > BeanEditForm and Grid)

T4 -- Filter in WebRequestServicerPipeline Issue

2007-03-05 Thread Tim Downey
ch of contributions used to find the proper application life cycle handlers. Regards, Tim

Re: T4 -- Filter in WebRequestServicerPipeline Issue

2007-03-05 Thread Tim Downey
d that works fine. On 3/5/07, Tim Downey <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm trying to implement a pattern that does some automatic cleanup and > checking using the WebRequestServicerPipeline. I'm performing some URL > checks to detect when a user is swit

Re: Session

2007-03-22 Thread Tim Sawyer
I believe the timeout for this is configured through web.xml 30 Hello, > > We have an admin side with a user login etc. > > The problem is, the session times out after soo many minutes(we run under > tomcat) of being idle and they user has to log back in. > > Is there any way to make this ind

T5 Class Not Found Error

2007-04-17 Thread Tim Sawyer
me in the right direction? It's probably a libraries thing, where I have the wrong version or two versions of a library present. I definitely only have tapestry 5.0.3 and javassist 3.2 in there though . ta, Tim. - To unsubsc

Re: T5 Class Not Found Error

2007-04-20 Thread Tim Sawyer
Many thanks for that, that got me past that error! Tim. On Wednesday 18 April 2007 00:21, Ben Sommerville wrote: > I believe that tapestry uses javassist 3.4ga. > > It is likely that the tapestry ClassFactoryClassPool class is > trying to use a javaassist method that isn't

T5: No root element has been defined

2007-04-20 Thread Tim Sawyer
ache.org/schema/tapestry_5_0_0.xsd";> Title The time is not here. http://java.sun.com/dtd/web-app_2_3.dtd";> Title tapestry.app-package uk.co.title app org.apache.tapestry.TapestryFilter app /*

Re: T5: No root element has been defined

2007-04-25 Thread Tim Sawyer
lhost:8080/warfilename/Start http://localhost:8080/warfilename/ or http://localhost:8080/warfilename/CopyOfStart1 I get the no root element error. If I go anywhere else, for example http://localhost:8080/warfilename/Blah I get a 404. Any thoughts anyone? ta, Tim. On Saturday 21 April 2007 15:08,

Re: T5: No root element has been defined

2007-04-25 Thread Tim Sawyer
Sorry, my bad - the Start.java and CopyOfStart1.java exist, not the HTML files. Apologies, Tim. On Wednesday 25 April 2007 21:43, Tim Sawyer wrote: > Not progress, but a clarification. > > I get the "no root element has been defined" error whenever I navigate to a > UR

Re: T5: No root element has been defined

2007-04-25 Thread Tim Sawyer
Sorted - works now. With Start.html inside WEB-INF it works, with it outside it didn't. Thanks, Tim. On Wednesday 25 April 2007 21:47, Tim Sawyer wrote: > Sorry, my bad - the Start.java and CopyOfStart1.java exist, not the HTML > files. > > Apologies, > > Tim. > &g

T5 LinkSubmit?

2007-04-25 Thread Tim Sawyer
Is there any equivalent in T5 of LinkSubmit? Ta, Tim. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

T5: Same event from multiple components

2007-05-05 Thread Tim Sawyer
dn't seem to work either. Can someone point me in the right direction please? Or is this not possible and I have to write another method for the second login link? ta, Tim. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: T5: Same event from multiple components

2007-05-06 Thread Tim Sawyer
Thanks for that - that's where I ended up myself. I wondered if it was possible to get away without having to do the onActionFromLogin2() method, but it's not exactly difficult to write! ta, Tim. On Sunday 06 May 2007 02:08, Howard Lewis Ship wrote: > You can capture the act

How do I set up logging with Tapestry 5 and Tomcat?

2010-04-14 Thread Tim Koop
Hi everyone. I've been using Tapestry 5 for a while. I like it, but I can't seem to get logging working. In my page java class I have this: @Inject private Logger log; Object onSuccess() { log.debug("Tim was here."); return null; } This compiles and runs. I wo

Re: How do I set up logging with Tapestry 5 and Tomcat?

2010-04-14 Thread Tim Koop
work with slf4j, I would be happy with that. Thanks. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> On 14/04/2010 1:52 PM, Igor Drobiazko wrote: Tapestry logs with slf4j. You need the slf4j - log4j - bridge. Make sure log4j-over-sl

Re: How do I set up logging with Tapestry 5 and Tomcat?

2010-04-14 Thread Tim Koop
, but I guess that the missing file in Tomcat's directory caused an irrecoverable error with log4j (I did have a log4j error in the Tomcat startup script), so nothing else worked after that. But now it all works fine. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoo

Re: How do I set up logging with Tapestry 5 and Tomcat?

2010-04-15 Thread Tim Koop
properties when your application starts, not with Tomcat starts. And it might find it in your WEB-INF/classes directory. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> On 15/04/2010 2:36 AM, Ivano Luberti wrote: But if I deploy on a s

Re: How do I set up logging with Tapestry 5 and Tomcat?

2010-04-28 Thread Tim Koop
asses/log4j.properties file is being ignored. Why is my log4j.properties file being ignored? I even have its location specified in my web.xml file. What's going on? Thanks. -- Tim Koop <mailto:t...@timkoop.com> On 16/04/2010 3:05 PM, Peter Stavrinides wrote: You need a log4j.proper

Tutorial Import Project Into Eclipse

2010-05-12 Thread Tim Koop
above tutorial didn't work--at least I couldn't get it working) But when I try to Import Existing Project Into Workspace, the project made by Maven, Eclipse says "No projects are found to import". What's the deal? Thanks. -- Tim Koop t...@timkoop.com <mailto:t...@t

Re: Tutorial Import Project Into Eclipse

2010-05-12 Thread Tim Koop
No, I hadn't done that. Perhaps it should be documented somewhere. But I just tried it now. Eclipse has imported the project, but it is now complaining about a lot of "Unbound classpath variable: 'M2_REPO/..." Tim Koop t...@timkoop.com <mailto:t...@timkoop.com

Re: Tutorial Import Project Into Eclipse

2010-05-12 Thread Tim Koop
Thanks for the idea Christian. I already have m2eclipse 0.9.8 installed, and it looks like installing 0.10 is a big pain. I can't find an import for "existing maven projects". Maybe that only came out with 0.10. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com>

Re: Tutorial Import Project Into Eclipse

2010-05-12 Thread Tim Koop
I would be happy to install m2eclipse if it wasn't so painful to do. But I tried this and it seems to work. Thanks a lot Matheus. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> On 12/05/2010 4:35 PM, Matheus Eduardo Mach

Re: Tutorial Import Project Into Eclipse

2010-05-12 Thread Tim Koop
d everything still works. Except I still can't see a "import maven". But I don't mind now, because my project is working. Thanks everyone for your help. I appreciate it all. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.t

Configuring the Tapestry Eclipse environment for use with external Tomcat

2010-05-26 Thread Tim Koop
.class files and the Tapestry's .tml files. But according to the standard Maven project layout, the WEB-INF folder is in /src/main/webapp, and the classes folder is in /target. Why isn't "classes" inside of "WEB-INF"? And how can it be put there? Thanks. --

500 error with a brand new Tapestry project

2010-05-26 Thread Tim Koop
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450) /Powered by Jetty:// <http://jetty.mortbay.org/>/ -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com>

Re: Expansion for Javascript

2010-07-14 Thread Tim Koop
Cool! It works! I still had to do the escaping of the quotation marks myself, but at least the html encoding doesn't need to be undone first. (Now if only there was outputjsstring, outputurl, outputtextarea, outputcsv, and outputcustom) Tim Koop t...@timkoop.com <

How to display form success?

2010-09-15 Thread Tim Koop
pens after onSuccess (on the reload). Thanks. -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com>

pageAttached and onActivate

2010-11-11 Thread Tim Koop
variables in onActivate? Thanks. -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional com

Calling the Tapestry server from plain Javascript

2010-12-08 Thread Tim Koop
any better ideas? I've looked into Mixins, but I don't know if that would apply. I just want the Javascript code that calls the correct URL. Thanks. -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.c

Inject Cookies into a SessionState object

2010-12-29 Thread Tim Koop
think you can inject Tapestry objects on a non-component or non-page object, can you? Any ideas? Thanks. -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> - To unsubscri

Query string

2011-04-27 Thread Tim Koop
I have some third party code that calls one of my Tapestry pages, passing in some values in the query string. From in my Tapestry page (the Java class), how can I retrieve this query string? Thanks. -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com

Redirect throws NullPointerException

2011-05-04 Thread Tim Koop
ndler_12fbbad7a23.java) at $PageRenderRequestHandler_12fbbad7a1a.handle($PageRenderRequestHandler_12fbbad7a1a.java) at org.apache.tapestry5.internal.services.ComponentRequestHandlerTerminator.handlePageRender(ComponentRequestHandlerTerminator.java:48) -- Tim Koop t...@timkoop.com <mailto:t...@t

Request getRequestURL method

2011-05-04 Thread Tim Koop
o respond to this group answering our questions! -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For

Re: Request getRequestURL method

2011-05-04 Thread Tim Koop
To answer my own question, this works: @Inject private RequestGlobals requestGlobals; javax.servlet.http.HttpServletRequest request = requestGlobals.getHTTPServletRequest(); Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com&g

Execute JavaScript from dynamic component

2011-05-06 Thread Tim Graf
? (I know, it's probalby a stupid question, but I'm a bloody tapestry noob; thank your for your patience ;-) -Tim

SessionState problems with a String type

2011-05-11 Thread Tim Koop
licationStateManagerImpl.get(ApplicationStateManagerImpl.java:133) o org.apache.tapestry5.internal.transform.ApplicationStateWorker$1.get(ApplicationStateWorker.java:91) -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com&

Re: SessionState problems with a String type

2011-05-11 Thread Tim Koop
tored correctly? And no, I don't plan to actually use a String as a SessionState Object. I'm just testing with it. Thanks. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> On 11/05/2011 12:39 PM, Josh Canfield wrote: http://ta

Re: SessionState problems with a String type

2011-05-11 Thread Tim Koop
user back to my site, Tapestry forgets the session... Hang on. I just got Josh's email. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> On 11/05/2011 1:25 PM, Thiago H. de Paula Figueiredo wrote: On Wed, 11 May 2011 15:17:42 -0300

Re: SessionState problems with a String type

2011-05-11 Thread Tim Koop
left scratching my head wondering why. Thank you both for your ideas. Maybe something fixed it, but I don't know what. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> On 11/05/2011 1:33 PM, Josh Canfield wrote: Are you sure you'

Function Tapestry.Initializer.formEventManager() does not exist

2011-05-25 Thread Tim Koop
em? Did I forget to include a jar file? Does anyone know which jar file Tapestry.Initialrizer.formEventManager() is in? Thanks. -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> --

Re: Function Tapestry.Initializer.formEventManager() does not exist

2011-05-25 Thread Tim Koop
Oops. It just stopped doing that. It seems when I clean the project (with Eclipse), that sometimes certain behaviours change. I don't know why. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> On 25/05/2011 11:21 AM, Tim K

Re: Function Tapestry.Initializer.formEventManager() does not exist

2011-05-25 Thread Tim Koop
OK It's back again, but only on certain pages. Anyone have any ideas? Thanks. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> On 25/05/2011 11:30 AM, Tim Koop wrote: Oops. It just stopped doing that. It seems when I clean t

Re: SessionState problems with a String type

2011-06-29 Thread Tim Koop
in front of it. But when the authenticating site forwarded the user back to my site, it used the URL with "www." in front, thus causing it to be a different site with different cookies, thus a different session id, and thus different SSOs. Thank you to this great community for

How to create a war from Eclipse

2011-08-24 Thread Tim Koop
is not a Web Application. - I think I'm using Maven somewhere in the background, because I sometimes see Maven notices on the console, and I suspect you can create a war with Maven, but I have no idea how. -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com>

Tomcat gives me a 404 when trying to get a Tapestry website loaded

2011-09-14 Thread Tim Koop
d package location substituted. But when I browse there (by following the link in the Tomcat manager page), all I get is a 404 page given to me by Tomcat. Any ideas? I'm running out of them. In fact, sending an email to this list was my last idea. Help! -- Tim Koop t...@t

RenderQueueException

2011-09-22 Thread Tim Koop
Thanks. hint: the page renders fine on one site, but not on another. I suspect I might not be copying something across correctly. -- Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoop.com <http://www.timkoop.com> -

Re: RenderQueueException

2011-09-22 Thread Tim Koop
OK I'll answer my own question: I was including the file tapestry-beanvalidator-?.?.?.jar. When I removed that file from the war file, it all worked fine. It seems I don't need it, and its very presence was throwing an exception. Tim Koop t...@timkoop.com <mailto:t..

Web services using Tapestry

2011-11-08 Thread Tim Fletcher
, Tim

Re: Web services using Tapestry

2011-11-08 Thread Tim Fletcher
Thanks for all the input! I think I'm starting to understand where Tapestry sits on the software stack. I have gone with Derkoe's JAX-WS integration. Regards, Tim On 8 November 2011 15:24, derkoe wrote: > > Tim Fletcher wrote: > > > > Hi All, > > > > I

IoC alone and annotations

2011-11-08 Thread Tim Fletcher
Hi All, I have followed the instructions at [wiki Tapestry5HowToIocOnly]<http://wiki.apache.org/tapestry/Tapestry5HowToIocOnly> and got that working. However, is it possible to use annotations instead of passing the instance in the constructor? Thanks in advance, Tim

Re: IoC alone and annotations

2011-11-08 Thread Tim Fletcher
resource? Again, many thanks, Tim On 8 November 2011 20:37, Thiago H. de Paula Figueiredo wrote: > On Tue, 08 Nov 2011 18:20:40 -0200, Tim Fletcher > wrote: > > Hi All, >> > > Hi! > > I have followed the instructions at [wiki >> Tapestry5HowToIocOnl

Re: IoC alone and annotations

2011-11-08 Thread Tim Fletcher
I missed the final keyword in the code. indeed removing it allows the annotation to do its job. Thanks for the information regarding constructor Vs, field injection. I am very new to IoC and DI, so haven't yet come up with my own preference. Many thanks to everyone. Tim On 9 November 20

beaneditform and ManyToOne entities

2011-11-15 Thread Tim Fletcher
te Long id; @ManyToOne(optional=false) private Client client; public Client getClient() { return client; } public void setClient(Client client) { this.client = client; } } Many thanks, Tim

ActivationRequestParameter and URLEncoder

2013-10-11 Thread Boehler, Tim
tils.decode(input, "UTF-8"); } catch (UnsupportedEncodingException e) { throw new AssertionError("UTF-8 not supported"); } } } Thank you Tim

Showing text with line breaks converted to or

2012-04-18 Thread Tim Koop
display text with ${myText}, all my eol characters stay as eol characters and thus get ignored by the browser, showing up as one long line of text. Is there some way I can convert eol's to or something? Thanks. Tim Koop t...@timkoop.com <mailto:t...@timkoop.com> www.timkoo

Dynamic forms

2012-04-25 Thread Tim Koop
I'm making a way for the user to create a dynamic form, with their own defined fields. But how can I do this with Tapestry, since it links the form fields with Java variables? I can't create dynamic variables. Any ideas? Thanks. Tim Koop t...@timkoop.com <mailto:t..

Updating persistent list in event handler

2016-06-07 Thread Tim Hearn
e the method completes. What can I do to see that the list updates with the new 'cluster' value appended? Tim

Re: [ANNOUNCEMENT] Tapestry 5.9.0-preview 2

2024-10-09 Thread D Tim Cummings
      10         8080             Regards Tim On 19/9/24 23:41, Thiago H. de Paula Figueiredo wrote: Hello, Tapestry community! Apache Tapestry 5.9.0-preview-2 was released. Notice the &

T5 Questions

2008-06-09 Thread Tim de jager
priate user before saving the entity. Thanks, Tim de Jager -- View this message in context: http://www.nabble.com/T5-Questions-tp17733559p17733559.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To un

Re: T5 Questions

2008-06-10 Thread Tim de jager
Thanks a lot for the prompt response! Regarding the customer editor, do you have a link which has an explanation or example? Is it like extending the BeanEditForm so it correctly displays an input field for the (in my case User entity) object of the underlying bean? Thanks, Tim Robert

[T5.4] Does exanpe-t5-lib work with Tapestry 5.4 ?

2014-06-10 Thread D Tim Cummings
r at console.js (line 104) Regards Tim signature.asc Description: Message signed with OpenPGP using GPGMail

tapestry.thread-pool.max-pool-size not doing anything

2014-06-30 Thread D Tim Cummings
7.0.52. Cheers Tim signature.asc Description: Message signed with OpenPGP using GPGMail

Re: tapestry.thread-pool.max-pool-size not doing anything

2014-07-01 Thread D Tim Cummings
in the pool before any have been invoked is always zero. Tim On 1 Jul 2014, at 16:25, Lance Java wrote: > If you read the javadoc for java.util.concurrent ThreadPoolExecutor you'll > see that the number of threads will only increase when the queue has > reached its capacity.

tapestry-security looking for sample code

2014-08-04 Thread D Tim Cummings
tapestry-security with Cayenne (or Hibernate) using Tapestry 5.3.7, tapestry-security 0.5.1. I don't need federated accounts at this stage. Regards Tim signature.asc Description: Message signed with OpenPGP using GPGMail

Re: tapestry-security looking for sample code

2014-08-04 Thread D Tim Cummings
Thanks Chris This is really helpful. Getting an error that I can't parse hibernate.cfg.xml at the moment but I should be able to work it out. Tim On 5 Aug 2014, at 12:27, Chris Mylonas wrote: > And here's some notes from my wiki for a tapestry-security file based auth > a

Re: tapestry-security looking for sample code

2014-08-04 Thread D Tim Cummings
rnate-configuration-3.0.dtd" should be "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"; Little things but they took me a while to find. :) Tim On 5 Aug 2014, at 12:51, Chris Mylonas wrote: > Blog entry from previous reply seeing as it is out in the e

5.4 beta 22 - Select component secure="auto" throws exception: model is bound to null.

2014-11-17 Thread D Tim Cummings
EL, defaultPrefix = BindingConstants.LITERAL) private SecureOption secure; This appears to be related to the bug https://issues.apache.org/jira/browse/TAP5-2204 <https://issues.apache.org/jira/browse/TAP5-2204> Select component fails if SelectModel doesn't exist on submit which was resolved in November last year. Regards Tim smime.p7s Description: S/MIME cryptographic signature

Re: 5.4 beta 22 - Select component secure="auto" throws exception: model is bound to null.

2014-11-17 Thread D Tim Cummings
is why do I need to init the model in one of these methods for secure="auto" or the default secure attribute (which is supposed to be backward compatible)? Tim > On 17 Nov 2014, at 22:25, Chris Poulsen wrote: > > If you init your model in setupRender it will be null upon

  1   2   >