T5: Timers/Schedulers

2009-02-27 Thread James Sherwood
Hello, I know this may not be a T5 problem but I am just wondering how people are doing this. I need to use timers(schedulers) for database work. Let's take for instance, every January 1st I need to reset everyone's position on a list(EX reps for a union position as votes happen).

RE: [OT] By boss decided

2009-02-18 Thread James Sherwood
Hi, http://www.workingmother.comwritten in T3:) 350k/month PAGE VIEWS(1million during top 100) --James -Original Message- From: Fernando Padilla [mailto:f...@alum.mit.edu] Sent: February-18-09 1:19 PM To: Tapestry users Subject: Re: [OT] By boss decided For general Java: How

RE: InPlaceEditor validation

2009-02-16 Thread James Sherwood
@tapestry.apache.org Subject: Re: InPlaceEditor validation I'm wondering the same thing :confused:.. If I run into something I get back to you :-D Cheers James Sherwood wrote: Hello, The t5components inplaceeditor is what I am referring to: http://87.193.218.134:8080/t5c-demo

RE: [T5] Updating Zone with Action Link using Select field value as Context

2009-02-13 Thread James Sherwood
Peter, I created a buttonfragment component that uses a button(and could be easily modified for an image) instead of using a radio/checkbox(sort of). You are welcome to have the code if you like. --James -Original Message- From: Dave Greggory [mailto:davegregg...@yahoo.com] Sent:

RE: IoC question - introducing a time delay in an ASO

2009-02-11 Thread James Sherwood
Hello, Doesn't most dictionary style attacks create a new request each time therefore creating a new ASO? Kind of like closing your browser and reopening it each time? If not this is a much better idea than mine of delaying the IP. --James -Original Message- From: Thiago H. de Paula

RE: IoC question - introducing a time delay in an ASO

2009-02-11 Thread James Sherwood
On Wed, Feb 11, 2009 at 10:46 AM, James Sherwood jsherw...@rgisolutions.com wrote: Hello, Hi! Doesn't most dictionary style attacks create a new request each time therefore creating a new ASO? Kind of like closing your browser and reopening it each time? They are done by bots (programs

RE: IoC question - introducing a time delay in an ASO

2009-02-11 Thread James Sherwood
Hello, Thanks for the nudge in the right direction. I created the service and I was wondering if you could have a look at how I created it to be sure I've done it right(Everything seems to work fine but it's my first service and I want to be sure it's done right): Steps in reverse order

RE: IoC question - introducing a time delay in an ASO

2009-02-11 Thread James Sherwood
Hello, I could be wrong but worse case it would just slow down the interval, how bad or at all would depend on how you have your barracuda(or whatever) set up(IP's route to same server)? Just a shot in the dark maybe:) --James -Original Message- From: Olle Hallin

RE: Site security

2009-02-11 Thread James Sherwood
address reliably. You should, rather, have a user/role system in place such that only those users who are logged in and have role-based access to the admin app can even see it, let alone use it. Christian. On 11-Feb-09, at 07:08 , James Sherwood wrote: Hello, Thanks for the reply. I have

Site security

2009-02-10 Thread James Sherwood
Hello, I was wondering what would be the best way to implement this security(sorry if it is outside the scope of T5): I am only going to allow a certain IP range to log into the site, however some people need to use the site from laptops on the road. What is the best way to accomplish

T5: D.O.B. Date component

2009-02-09 Thread James Sherwood
Hello, Just wondering what people are using for a date of birth component. I tried using the built in datefield but users complained that it starts off in the current year and you have to keep going back to far to get to their date. I agree(You and I know you could just choose a date then

RE: T5: Nice balloon error for 2 text fields possible?

2009-02-07 Thread James Sherwood
users Subject: Re: T5: Nice balloon error for 2 text fields possible? Not with the built in stuff. I went to a lot of trouble so that entering one field fades out the bubbles on any other fields. It's surprisingly tricky to get right! On Thu, Feb 5, 2009 at 5:38 AM, James Sherwood jsherw

T5: Nice balloon error for 2 text fields possible?

2009-02-05 Thread James Sherwood
Hello, Is it possible to have the nice balloon error run across 2 password fields? IE password and confirm password must equal, if not the balloon error shows(like a required error) instead of having to output a form error? Thanks, --James

T5: Hibernate/Session question

2009-02-05 Thread James Sherwood
Hello, I have an application state object(Visit) that is storing a hibernate entity object. In a page I ask for the visit.object.getchildobject.name and receive this error: [ERROR] hibernate.LazyInitializationException could not initialize proxy - the owning Session was closed

RE: T5: Hibernate/Session question

2009-02-05 Thread James Sherwood
:23 PM To: Tapestry users Subject: Re: T5: Hibernate/Session question there are two possible solutions: first: you declare the collection for childobjects read not lazy second: you attach the parentobject to a new session and re-read the childobjects collection 2009/2/5 James Sherwood jsherw

RE: T5: Hibernate/Session question

2009-02-05 Thread James Sherwood
:53 -0300, James Sherwood jsherw...@rgisolutions.com escreveu: Thanks, I do not want to have to change the actual POJOs as I generate them using reverse eng so I think I will just do the lookup.\ One solution is to call session.lock(object, LockMode.NONE) before reading any property values

RE: T5: Validation and message catalogue

2009-02-02 Thread James Sherwood
Hello, NVM I am an idiot. I was forgetting the t: for the id..:( Thanks, --James -Original Message- From: James Sherwood [mailto:jsherw...@rgisolutions.com] Sent: February-02-09 11:58 AM To: 'Tapestry users' Subject: RE: T5: Validation and message catalogue Hello, It is not a matter

RE: T5: Validation and message catalogue

2009-02-02 Thread James Sherwood
AM To: Tapestry users Subject: Re: T5: Validation and message catalogue try double slashed like this ssn-regexp=\\d{3}-\\d{2}-\\d{4} 2009/2/2 James Sherwood jsherw...@rgisolutions.com Hello, I cannot seem to get a textfield validate message to work using regexp and message catalogs. I

RE: Palette component

2009-01-27 Thread James Sherwood
Hello, I just ran into the same problem. You are probably creating the available and select lists in 2 different methods, you need to do it in the same method with the SAME object(or at least with a list that doesn't reload when you pull your select) otherwise you get that null error(or at least

Not able to save objects at a certain point

2009-01-27 Thread James Sherwood
Hello, I am using the in place editor component created in the tapestry for non believers tutorial. http://www.infoq.com/articles/tapestry5-intro In the setEdit() method in my java I am trying to do _session.save(Object) but it will not save. I have tried @CommitAfter as well as creating

OnActivate question

2009-01-26 Thread James Sherwood
Hello, I have security through page Activate. All my pages extend a page that has a method: @OnEvent(activate) Object onSecurityCheck(){ Check security if fails return Index.class } This works however any page that has its own onActivate() method, the method still runs (the

RE: Advanced Component help

2009-01-25 Thread James Sherwood
_buttonfragment = false; return zone; } } Thanks, --James -Original Message- From: James Sherwood [mailto:jsherw...@rgisolutions.com] Sent: January-24-09 9:13 PM To: 'Tapestry users' Subject: Advanced Component help Hello, I am looking for a good tutorial(or help) on advanced

Advanced Component help

2009-01-24 Thread James Sherwood
Hello, I am looking for a good tutorial(or help) on advanced components with forms and event bubbling. In particular a component that takes a value(with some paramaters) then spits out a form with a form fragment inside a zone. When the user clicks a button in this component the value

RE: T5: Component Suggestion/Question

2009-01-22 Thread James Sherwood
Figueiredo wrote: Em Wed, 21 Jan 2009 22:01:43 -0300, James Sherwood jsherw...@rgisolutions.com escreveu: You are like our own little tapestry tutor, and its MUCH appreciated:) I'm just a guy who wants to bring sanity and pleasure and elegance (Tapestry 5!) to the Java Web development world

RE: [Spam Rating:3.18] Re: Table and carriage return

2009-01-21 Thread James Sherwood
Hello, I have not used T4 going from T3 to T5 but I assume most of the components are the same. If you are using the standard insert component you can just declare the raw parameter as true so you output is changed in any way: component id=insertText type=Insert binding name=value

RE: RE: Re: Table and carriage return

2009-01-21 Thread James Sherwood
with Insert (format column2 for each line of table) ? thank you for your help Cathy James Sherwood wrote: Hello, I have not used T4 going from T3 to T5 but I assume most of the components are the same. If you are using the standard insert component you can just declare the raw

RE: RE: RE: Re: Table and carriage return

2009-01-21 Thread James Sherwood
) org.apache.tapestry.components.RenderBody.renderComponent(RenderBody.java:44 ) ** James Sherwood wrote: Hello, What is the exception you are getting? --James -Original Message- From: Cathy_123 [mailto:ndgt...@yahoo.com] Sent: January-21-09 9:40 AM To: users@tapestry.apache.org Subject: [Spam

T5: Component Suggestion/Question

2009-01-21 Thread James Sherwood
Hello, I am trying to create an application that just has a single page basically with many fields about a member. I need this page to be dynamic whereby and admin can change fields without refreshing the page. The T5Component InPlaceEditor sort of works however there is no validation

RE: RE: Re: Table and carriage return

2009-01-21 Thread James Sherwood
because of binding name=value value=components.pagesTable.tableRow.column2Column/ How can I do to format column2 with Insert (format column2 for each line of table) ? thank you for your help Cathy James Sherwood wrote: Hello, I have not used T4 going from T3 to T5 but I assume most

RE: T5: Component Suggestion/Question

2009-01-21 Thread James Sherwood
Paula Figueiredo [mailto:thiag...@gmail.com] Sent: January-21-09 1:49 PM To: Tapestry users Subject: Re: T5: Component Suggestion/Question Em Wed, 21 Jan 2009 12:20:33 -0300, James Sherwood jsherw...@rgisolutions.com escreveu: I need this page to be dynamic whereby and admin can change fields

RE: T5: Component Suggestion/Question

2009-01-21 Thread James Sherwood
14:08:09 -0300, James Sherwood jsherw...@rgisolutions.com escreveu: Thanks a bunch, :) I was actually looking at the screen cast on Ajax and Zones as I suspected this would be accomplished with zones. You can do a lot with them. Just be creative. :) Ideally what I would like to do

RE: T5: Component Suggestion/Question

2009-01-21 Thread James Sherwood
[mailto:thiag...@gmail.com] Sent: January-21-09 7:32 PM To: Tapestry users Subject: Re: T5: Component Suggestion/Question Em Wed, 21 Jan 2009 15:36:21 -0300, James Sherwood jsherw...@rgisolutions.com escreveu: Hello, Hi! 1: I am using a checkbox for the modify feature but I would like to have

Inplaceeditor question.

2009-01-20 Thread James Sherwood
Hello, This is for anyone that knows about the editor located here: (part of the t5components project) http://87.193.218.134:8080/t5c-demo/inplaceeditorpage Is there a way to disable the editing feature or do I have to just put an output instead of the inplaceeditor for items I do not

RE: Inplaceeditor question.

2009-01-20 Thread James Sherwood
Hello, I modified the component so it has a disable parameter. --James -Original Message- From: James Sherwood [mailto:jsherw...@rgisolutions.com] Sent: January-20-09 11:32 AM To: 'Tapestry users' Subject: Inplaceeditor question. Hello, This is for anyone that knows about

InPlaceEditor validation

2009-01-20 Thread James Sherwood
Hello, The t5components inplaceeditor is what I am referring to: http://87.193.218.134:8080/t5c-demo/inplaceeditorpage Does anyone know a way to do validation on this? Currently when you save with nothing in the text field there is a properties file that is read from and it just fills

Possible to override onActivate from an extended page?

2009-01-19 Thread James Sherwood
Hello, I have a login only application and for the most part you just need to be logged in to use it except for a couple of pages. To enforce this I made a class: Class SecurePage{ Object onActivate(){ If(!visitExists){ Return index.class; }

RE: Possible to override onActivate from an extended page?

2009-01-19 Thread James Sherwood
'? --James -Original Message- From: Thiago H. de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: January-19-09 3:07 PM To: Tapestry users Subject: Re: Possible to override onActivate from an extended page? Em Mon, 19 Jan 2009 15:02:07 -0300, James Sherwood jsherw...@rgisolutions.com

RE: T5 and hibernate slowing with more records

2009-01-16 Thread James Sherwood
write this. Jonathan -Original Message- From: James Sherwood [mailto:jsherw...@rgisolutions.com] Sent: Thursday, January 15, 2009 13:16 To: 'Tapestry users' Subject: T5 and hibernate slowing with more records Hello, I am using POI to take an excel file and put

T5 and hibernate slowing with more records

2009-01-15 Thread James Sherwood
Hello, I am using POI to take an excel file and put it into a Mysql database using hibernate. I put a counter on the records going into the database and it starts off fast but then slows to over 15 seconds a record and I cannot figure out why. My code is basically this: Public

RE: T5 and hibernate slowing with more records

2009-01-15 Thread James Sherwood
Hello, I suppose I could restrict the number of records allowed however I do not believe that I need to. I believe there is a problem somewhere, maybe in how I am doing the transactions or something. Before using t5/hibernate we were using t3/torque and if that system would have no problem with

RE: T5 and hibernate slowing with more records

2009-01-15 Thread James Sherwood
Hello, Sorry I forgot to mention that I do not believe indexing is an issue as it is only an 'over time' issue that it gets slow not a total number in the db that causes the slowness. I can have 0 records or 40k records in the db and the transactions are still blazing fast at the start. --James

RE: Re: T5 and hibernate slowing with more records

2009-01-15 Thread James Sherwood
, but would suggest to do following: 1) try to put everything into a list of objects without saving to the database, slow? 2) use a service to accept the list from #1, beging a transaction, save, commit, slow? Angelo James Sherwood wrote: Hello, I am using POI to take an excel file and put

RE: Tapestry 5, WAR files and deployment

2008-11-06 Thread James Sherwood
Hello, I deploy to tomcat but war essentials should be the same. I think the only difference between tomcat and Jetty are Tomcats classloaders which maven takes care of apparently. Just create the WAR with eclipse and drop it in your deploy folder(tomcat is the webapps directory and you don't

RE: Tapestry 5, WAR files and deployment

2008-11-06 Thread James Sherwood
Hello, I just file/export/war in eclipse. Works fine for tomcat. --James -Original Message- From: Olle Hallin [mailto:[EMAIL PROTECTED] Sent: November-06-08 11:15 AM To: Tapestry users Subject: Re: Tapestry 5, WAR files and deployment Everyday one learns something new is a good day :D

RE: Tapestry 5, WAR files and deployment

2008-11-06 Thread James Sherwood
Hello, You need to put those dependencies in your pom.xml file.(did you check if it works just using the eclipse built in war exporter?) --James -Original Message- From: tapestryphoto [mailto:[EMAIL PROTECTED] Sent: November-06-08 11:50 AM To: users@tapestry.apache.org Subject: Re:

RE: [Spam Rating:3.40] Re: T5: Ajax components

2008-11-04 Thread James Sherwood
widgets. James Sherwood wrote: Hello, I have been looking into some Ajax components to use in my upcoming T5 project. Tapestry itself does not seem to have much along these lines built in and I was wondering where people are getting there Ajax components from(besides building

T5: How to reverse engineer Tapestry Annotations with Hibernate

2008-10-30 Thread James Sherwood
Hello, I have the reverse engineering working correctly but I wish to modify it a bit. Tapestry requires and @Validate(required) annotation in front of the variables of the class that are required for global validation. (Unless there is a way to do global validation without using @validate

T5: Ajax components

2008-10-30 Thread James Sherwood
Hello, I have been looking into some Ajax components to use in my upcoming T5 project. Tapestry itself does not seem to have much along these lines built in and I was wondering where people are getting there Ajax components from(besides building them as this seems a bit above me right

RE: T5: Using with hibernate and Mysql

2008-10-27 Thread James Sherwood
-Original Message- From: Thiago H. de Paula Figueiredo [mailto:[EMAIL PROTECTED] Sent: October-26-08 7:38 PM To: Tapestry users Subject: Re: T5: Using with hibernate and Mysql Em Sun, 26 Oct 2008 16:23:46 -0300, James Sherwood [EMAIL PROTECTED] escreveu: Thank you, Hi, James! You wouldn't have

RE: T5: Using with hibernate and Mysql

2008-10-27 Thread James Sherwood
you handle foreign keys in beaneditform? --James -Original Message- From: Thiago H. de Paula Figueiredo [mailto:[EMAIL PROTECTED] Sent: October-27-08 9:27 AM To: Tapestry users Subject: Re: T5: Using with hibernate and Mysql Em Mon, 27 Oct 2008 09:20:01 -0300, James Sherwood [EMAIL

RE: T5: Using with hibernate and Mysql

2008-10-27 Thread James Sherwood
Paula Figueiredo [mailto:[EMAIL PROTECTED] Sent: October-27-08 9:50 AM To: Tapestry users Subject: Re: T5: Using with hibernate and Mysql Em Mon, 27 Oct 2008 09:42:25 -0300, James Sherwood [EMAIL PROTECTED] escreveu: Thank you again:) You're welcome again! :) I used: @OnEvent(component

RE: T5: Using with hibernate and Mysql

2008-10-27 Thread James Sherwood
to our current severely outdated use of T3:) Thanks again, --James -Original Message- From: Thiago H. de Paula Figueiredo [mailto:[EMAIL PROTECTED] Sent: October-27-08 11:13 AM To: Tapestry users Subject: Re: T5: Using with hibernate and Mysql Em Mon, 27 Oct 2008 10:36:39 -0300, James

T5: Global entity validation not in the entity

2008-10-27 Thread James Sherwood
Hello, I was wondering if there is a way to do global validation on entities without using @validate in the entity. If I have: Public class user{ @Validate(required) Private string username; Private string password; Getters/setters } I want to be able to replace the

RE: T5: Using with hibernate and Mysql

2008-10-26 Thread James Sherwood
Thanks for the information this far, I have used hibernate-tools to reverse engineer my tables and I built a small test database to try to work with a foreign key but so far I cannot get it to work. My tables are simple: Users Userid INTEGER FirstName VARCHAR LastName VARCHAR Ocid INTEGER(The

RE: T5: Using with hibernate and Mysql

2008-10-26 Thread James Sherwood
. de Paula Figueiredo [mailto:[EMAIL PROTECTED] Sent: October-26-08 2:45 PM To: Tapestry users Subject: Re: T5: Using with hibernate and Mysql Em Sun, 26 Oct 2008 11:31:49 -0300, James Sherwood [EMAIL PROTECTED] escreveu: The problem is, when I try to run it I get this error: Could

T5: Using with hibernate and Mysql

2008-10-25 Thread James Sherwood
Hello, I was wondering if anyone has a good example of using Tapestry 5 with Hibernate and Mysql or can tell me what I am doing wrong I use Eclipse/Tomcat/Mysql. I created a new project using Maven: mvn archetype:create -DarchetypeGroupId=org.apache.tapestry

RE: T5: Using with hibernate and Mysql

2008-10-25 Thread James Sherwood
to generate objects from it(this tutorial is the other way around). I am assuming this may be a hibernate situation and not tapestry-hibernate but any nudge in the right direction would be appreciated. Thanks, --James -Original Message- From: James Sherwood [mailto:[EMAIL PROTECTED] Sent

T5: Grid component removing a field

2008-10-24 Thread James Sherwood
Hello, Let's say I have a grid component running off a source with objects such as: Id Fname Lname How do I remove Id from the grid? Remove=Id in the html of t:grid does not work. Thanks, --James

T5: BeanEditForm and Date

2008-10-24 Thread James Sherwood
Hello, It seems that beaneditform does not like have a date as a field in the object. Is there a way around this? --James

T5: Beaneditform and Date problem

2008-10-24 Thread James Sherwood
Hello, I have an object Celebrity with the fields: private long id; private String firstName; private String lastName; private Date dateOfBirth;(java.util.Date) When I use the tag: t:beaneditform t:id=celebrity/ And access the page I get the console error: No service

T5: Extra Component Information

2008-10-24 Thread James Sherwood
Hello, I have seen components such as the Fckeditor being used but cannot figure out how to use them. The component reference docs at http://tapestry.apache.org/tapestry5/tapestry-core/ref/ does not list them. This site: http://87.193.218.134:8080/t5c-demo/editorpage lists many nice

T5:Submit component

2008-10-21 Thread James Sherwood
Hello, I am playing around with T5 and I have a submit inside of a form component like this: TML: input type=submit t:type=submit t:id=submitButton value=Submit/ Java: @OnEvent(component = submitButton) void onSubmitButton() { System.out.println(Submit button was

T5: Ajax Examples/Tutorials

2008-09-22 Thread James Sherwood
Hello, I was wondering if anyone knew of any good ajax Examples/Tutorials with T5? Things such as text fields that do not require form submits to change data. Thanks in advance, --James

T5: using with maven / tomcat / eclipse

2008-06-19 Thread James Sherwood
Hello, I like to develop in tomcat and have not used Jetty much. I have gone through the tutorials using Jetty and have T5 running with hibernate under Jetty/maven/eclipse. I have been trying to use tomcat instead of Jetty in the tutorial off the T5 homepage but have had no luck and I cannot

Re: T5: using with maven / tomcat / eclipse

2008-06-19 Thread James Sherwood
, Jun 19, 2008 at 11:16 AM, James Sherwood [EMAIL PROTECTED] wrote: Hello, I like to develop in tomcat and have not used Jetty much. I have gone through the tutorials using Jetty and have T5 running with hibernate under Jetty/maven/eclipse. I have been trying to use tomcat instead of Jetty

Re: T5: using with maven / tomcat / eclipse

2008-06-19 Thread James Sherwood
? Thanks, --James - Original Message - From: Andreas Andreou [EMAIL PROTECTED] To: Tapestry users users@tapestry.apache.org Sent: Thursday, June 19, 2008 1:00 PM Subject: Re: T5: using with maven / tomcat / eclipse try mvn tomcat:run On Thu, Jun 19, 2008 at 6:16 PM, James Sherwood [EMAIL

Re: T5: using with maven / tomcat / eclipse

2008-06-19 Thread James Sherwood
when running mvn tomcat:run or how I get it working? Thanks, --James - Original Message - From: James Sherwood [EMAIL PROTECTED] To: Tapestry users users@tapestry.apache.org Sent: Thursday, June 19, 2008 1:35 PM Subject: Re: T5: using with maven / tomcat / eclipse This almost gets

Starting T4, what database layer to use?

2008-06-12 Thread James Sherwood
Hello all, Currently all our development is in T3(I know we are behind). The word has come down its time to upgrade. My question is, what technology works best with T4 as the layer between it and the database? Currently we use Torque with T3(behind again I know). I have been researching it

Re: T3: Stop back button

2008-06-02 Thread James Sherwood
help, I would start another topic (but really I would just do some basic research before posting again). Zack James Sherwood wrote: Hello, Our application submits a form then shows the results(like a survey form). Problem is the users can hit the browser's back button and see the form again

Repost: T3: Stop back button view of a form

2008-06-02 Thread James Sherwood
Hello, I was told I posted this in the wrong spot so I am sending to the list again and hopefully it goes in the right spot.. I am trying to stop users from submitting a form and then pressing the back button and seeing the form again. I would like to either redirect them somehow or just

Re: Repost: T3: Stop back button view of a form

2008-06-02 Thread James Sherwood
they are viewing is in their browser cache (ie not a serverside hit). Probably the best solution is to set a flag (persistant property or in the db) on first form submit then fail any subsequent submits by redirecting to an error page. Cheers, Lance. 2008/6/2 James Sherwood [EMAIL PROTECTED

Re: REpost: T3: Stop back button view after form submits.

2008-06-02 Thread James Sherwood
disregard, im an idiot and sent it from the wrong account and didn't think it would go through:) --James - Original Message - From: James Carrie [EMAIL PROTECTED] To: Tapestry users users@tapestry.apache.org Sent: Monday, June 02, 2008 9:26 AM Subject: REpost: T3: Stop back button

Re: T3: Stop back button

2008-06-01 Thread James Sherwood
Sanchez [EMAIL PROTECTED] To: Tapestry users users@tapestry.apache.org Sent: Friday, May 30, 2008 6:46 PM Subject: Re: T3: Stop back button Isn't obvious? What exactly do you want your application to do? On Fri, May 30, 2008 at 1:46 PM, James Sherwood [EMAIL PROTECTED] wrote: Hello all

T3: Stop back button

2008-05-30 Thread James Sherwood
Hello all, We are using tapestry 3. We need to make it so when a user submits a form and then presses the back button, it does not show them the form. Any ideas? --James - To unsubscribe, e-mail: [EMAIL PROTECTED] For

T3: Type Block

2007-12-06 Thread James Sherwood
Hello, I am trying to make a portal page with DIVs and ajax to fill the html in them. The problem that I am running into is that currently it just puts out the portlets using the type Block then tapestry renders the blocks when the page loads and I cant figure out how to do this without

Re: T3: Type Block

2007-12-06 Thread James Sherwood
Actually, is there just a way to have a service render a page and then I could just return the html? --James - Original Message - From: James Sherwood [EMAIL PROTECTED] To: Tapestry users users@tapestry.apache.org Sent: Thursday, December 06, 2007 12:51 PM Subject: [Spam Rating:3.20

Re: T3: session length

2007-12-04 Thread James Sherwood
, but that's not recommended. -Filip James Sherwood skrev: Hello, Is there a way in T3 to make your session last until the browser is closed? Thanks, --James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: T3: session length

2007-12-04 Thread James Sherwood
, December 04, 2007 11:57 AM Subject: Re: T3: session length On 12/4/07, James Sherwood [EMAIL PROTECTED] wrote: What is the downfall to this? Each user session will last forerever even when the user is not using the application, leading to an always increasing server memory usage. Of course

Re: T3: session length

2007-12-04 Thread James Sherwood
if the browser doesn't support javascript. You can then leave the default servlet timeout for sessions, so that if the browser is closed, the session object will eventually timeout and be GCed. Cheers Richard Thiago HP wrote: On 12/4/07, James Sherwood [EMAIL PROTECTED] wrote: So

T3: session length

2007-12-03 Thread James Sherwood
Hello, Is there a way in T3 to make your session last until the browser is closed? Thanks, --James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

T3 Eclipse 3.3

2007-10-17 Thread James Sherwood
Hey all, I am trying to upgrade to the latest eclipse and was wondering what editor people use for Tapestry in the newer eclipses. We used spindle but it does not work in the newer eclipses. Any help would be appreciated, Thanks, --James

Measuring time spent on site using tapestry

2007-07-11 Thread James Sherwood
Hello, Is there a way to measure time spent surfing our website using tapestry 3.1. And if not in 3.1 is there a way in later versions? The reason for this is statistical sites are now using time spent on sites as a measure as much as using page views/sessions which we already track using

Upgrading Tapestry

2007-04-23 Thread James Sherwood
Hello, I am starting to upgrade to Tapestry 4 from 3 and noticed that spindle only supports 3. We use Eclipse/Spindle and I was wondering what people are using for Tapestry 4? Thanks, James - To unsubscribe, e-mail:

Re: Upgrading Tapestry

2007-04-23 Thread James Sherwood
- From: James Sherwood [EMAIL PROTECTED] To: Tapestry users users@tapestry.apache.org Sent: Monday, April 23, 2007 8:25 AM Subject: Upgrading Tapestry Hello, I am starting to upgrade to Tapestry 4 from 3 and noticed that spindle only supports 3. We use Eclipse/Spindle and I was wondering what

Re: Anybody have the FCKEditor working in IE7?

2007-04-19 Thread James Sherwood
Hello, I start work on integrating it into tapestry today but I have it working fine in IE7 on Vista on my development machine outside of tapestry. One thing Ive noticed though is that IE7 on my machine thinks its a security breach to accept the path to the js or the path to the editor above

Re: Tapestry RTE Component

2007-04-18 Thread James Sherwood
(${id}_widget).getEditorContent() }) /initialization /script Nick Westgate wrote: Hi James. I haven't used it, but perhaps: http://www.tapestrycomponents.org/Tassel/app?service=external/ViewComponentsp=SHtmlArea There are also several for T4 on Tassel. Cheers, Nick. James Sherwood

Tapestry RTE Component

2007-04-17 Thread James Sherwood
Hello, I am looking for a Rich Text Editor component for tapestry that is compatable with (or maybe i could modify) Tapestry 3 and all large browsers. If someone could point me in the right direction that would be great. I have tried creating my own and have been successfull in everything

Session

2007-03-20 Thread James Sherwood
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 indefinate and if so, is there any impact on resources etc? Thanks, James

Re: Page Validation

2007-02-26 Thread James Sherwood
Message- From: James Sherwood [mailto:[EMAIL PROTECTED] Sent: Fri 2/23/2007 6:34 AM To: Tapestry users Subject: Page Validation Hello, We use Tapestry 3.2 I have security (login) using PageValidateListener. The secure page in the site is called ISOPage which extends BasePage. I add the page

Re: Page Validation

2007-02-26 Thread James Sherwood
implementing it exactly as you suggested, which method there were two? It would help to post your code. regards, Mark Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: James Sherwood [mailto:[EMAIL PROTECTED] Sent

Page Validation

2007-02-23 Thread James Sherwood
Hello, We use Tapestry 3.2 I have security (login) using PageValidateListener. The secure page in the site is called ISOPage which extends BasePage. I add the page validation using: public ISOPage(){ super(); addPageValidateListener(new PageValidationListener()); } The PageValidationListener

Open new window on a form submit?

2006-10-11 Thread James Sherwood
Hello, Is it possible to use a component of type Form and have the form submit listner open the page in a new window? I am thinking it might have something to do with cycle.encodeURL() in the listener. Thanks in advance, James

Keep your visit going to https?

2006-09-22 Thread James Sherwood
Hello, We have a shopping cart site built and the actuall site is not secure until you go to the checkout phase. The checkout button sends you to the checkout page and everything worked fine untill we made that page secure. As soon as we made it secure we lose our visit. I assume it is

Possible to make any page your homepage?

2006-08-15 Thread James Sherwood
We have designed a robust platform that lets them select any page they have created as their homepage. Currently the way we do it is the homepage is simply a javascript redirect to the page they choose. The problem is, when we do it this way thier hompage has a

Can dynamic tapestry be done?

2006-06-13 Thread James Sherwood
This is the situation: I would like to create a page in such a way that the jwcid's in the html are standard but I can produce the html any way I wish. To do this there would have to be a way to pass tapestry the html of a page from a database for instance. Something to the effect of a jwc

Re: Can dynamic tapestry be done?

2006-06-13 Thread James Sherwood
want to maintain something like thator maybe it's a requirement you don't have a choice in ? On 6/13/06, James Sherwood [EMAIL PROTECTED] wrote: Thanks for the feedback, This does, however, pose a problem for me. I am building a site and I wish to make it diverse enough to change its

Connection to mssql server on windows slow

2006-06-02 Thread James Sherwood
Hello, For a few of our sites we use a MSSQL server 2000 database running on a win2003 server and connect to it from our linux box. Everything was fine until a few days ago when we added a router/firewall to the win2003 server. Now when we try to access those sites, sometimes they work