Re: How can you control the Form URL in tapestry 4.

2006-01-27 Thread Jesse Kuhnert
If you are not submitting your form to a tapestry servlet, then why would you need to build the form using tapestry? You could as easily just use @Insert components to fill in a manual form's value with dynamic data and then send it wherever you like. On 1/27/06, malm <[EMAIL PROTECTED]> wrote: >

How can you control the Form URL in tapestry 4.

2006-01-27 Thread malm
I need to be able to modify the action URL that a Form component generates. We are developing an application for a telco and they control the public URL, which inturn calls our app server. Example http://pub.telco.com/check/public-app -> http://myserver.xxx.com/myapp/app The ..

Re: Tapestry ImageGallery Component

2006-01-27 Thread Raul Raja Martinez
Hi Steven, I agree with you in fact that's what I was planning on doing passing an array or collection of objects as a parameter to the component and have it render as a Image Gallery, some optional parameters could be thumbnail sizes, thumbs per page, show descriptions... If you want to get in

Re: tapestry not really component based?

2006-01-27 Thread Chris Conrad
So in that case, take care of 90% of the job using a Border component and then, if there are certain pages which require layout changes as well, do a localized template for just those pages. Or have Tapestry generate a locale CSS. Tapestry has lots of localization capabilities built in.

Re: OT: Looking for agile object-relational framework

2006-01-27 Thread Sergei Dubov
Yep, there is one. It is called "AMD64 X2". -Serge Alexander Varakin wrote: Hi, Sorry if this is offtopic but I don't know where to ask. I am using Hibernate for my current project but it has annoying long startup of about 10-15 sec on 1.5GHz PC. I also tried iBATIS but it is also not v

OT: Looking for agile object-relational framework

2006-01-27 Thread Alexander Varakin
Hi, Sorry if this is offtopic but I don't know where to ask. I am using Hibernate for my current project but it has annoying long startup of about 10-15 sec on 1.5GHz PC. I also tried iBATIS but it is also not very fast to come up. Also it would be nice to have an option of dynamic generation o

Tap 3, Workbench Chart

2006-01-27 Thread Gunna Satria
Hi All, I already tried Workbench Chart. It run smoothly in Windows. But when i try it in Solaris it won't work. There is no error message. the image just don't show.. Can someone enlight me? Thanks. Gunna - What are the most popul

Re: instantiating components directly

2006-01-27 Thread Cliff Zhao
Very good point. I'm still new to Tapestry. But what you said confirmed my research on Tapestry. Thanks. On 1/27/06, Mind Bridge <[EMAIL PROTECTED]> wrote: > > Hi, > > Consider the following: > > - The base of Tapestry is IRender > - All Tapestry components and pages implement the IRender interfa

RE: tapestry not really component based?

2006-01-27 Thread Patrick Casey
You sometimes do have to change layout on a page by page layout when you do i18n stuff, especially if some of the languages you're translating into are significantly more verbose than English ( german ). So a nice little set of widgets that do, say: Label1 text1 Label2 t

Re: tapestry not really component based?

2006-01-27 Thread Chris Conrad
On Jan 27, 2006, at 11:11 AM, [EMAIL PROTECTED] wrote: Or what about i18nyou may need to change the layout of your web page based on the language selected. It would be really nice to have some kind of layout manager to dynamically alter the layout of the page. Having multiple pages, eac

Re: forcing Login

2006-01-27 Thread Chris Conrad
It looks like you're confusing Tapestry by having both an ASO and a persistent page property with the same name. Try changing your Login class to be annotated like this instead: @Persist("userProperty") public abstract User getUser(); public abstract void setUser(User usr); Or, if you reall

Re: Non-intuitive behavior from the For component

2006-01-27 Thread Chris Conrad
That works! Thanks Robert! I had tried just setting match to false but it resulted in an odd NPE (I don't remember the exact details right now). But setting both volatile to true and match to false works like a charm. Thanks again. --Chris On Jan 27, 2006, at 7:21 AM, Robert Zeigler wrot

Re: instantiating components directly

2006-01-27 Thread Mind Bridge
Hi, Consider the following: - The base of Tapestry is IRender - All Tapestry components and pages implement the IRender interface - You can render an IRender in the Java code by calling it directly, or you can use the Delegator component to render it in a template - What is on the other end of

Re: https again and still absolutely clueless :(

2006-01-27 Thread Alan Chandler
On Friday 27 January 2006 16:17, Cliff Zhao wrote: > I'm not a Apache expert, but I think that you can have Apache redirect your > pages. Namely, when Apache gets http requests supposed to be https, Apache > will redirect them to the https equivalent. > I think you have to be quite careful. The h

Re: Contrib table pagination problems

2006-01-27 Thread Daniel Lydiard
Thanks for tip, I moved the source/column initialization out of pageBeginRender and move it to the getters (init if needed). Everything is working even with caching disabled. - Original Message - From: "Andreas Andreou" <[EMAIL PROTECTED]> To: "Tapestry users" Sent: Friday, Januar

RE: ValidationDelegate null when not using Annotations [SOLVED]

2006-01-27 Thread Earnshaw, Wayne
Thanks! Home.page updated to :- & if you're ever back in DC, we'll buy you a beer. wayne -Original Message- From: Howard Lewis Ship [mailto:[EMAIL PROTECTED] Sent: Friday, January 27, 2006 5:19 PM To: Tapestry users Subject: Re: ValidationDelegate null when not using Annotations You

Re: Tapestry ImageGallery Component

2006-01-27 Thread Steven Bell
I'm also interested building a component to help create image galleries. I'm fairly new to Tapestry, but I'm interested in trying it. I plan to use it to create galleries of family photos. Some ideas: Possibly make the component work like an iterator to avoid locking the user into a specific la

(Solution) How to escape a conditional close tag ?

2006-01-27 Thread Jorge Quiroga
Hello: Well, the solution is ugly and for me (a newbie in Tap) wasn't obvious, but I think that for a experienced Tap user is far obvious. into my HTML can do this the raw parameter must be present an must be in true in order to achieve the expected result. I was confused because i tho

Re: ValidationDelegate null when not using Annotations

2006-01-27 Thread Howard Lewis Ship
You must add property="delegate" to the element to have it injected as a page property. On 1/27/06, Earnshaw, Wayne <[EMAIL PROTECTED]> wrote: > Hi folks, > > I've been working through the Enjoying Web Development with Tapestry > book (and applying it successfully to our current project - it's a

ValidationDelegate null when not using Annotations

2006-01-27 Thread Earnshaw, Wayne
Hi folks, I've been working through the Enjoying Web Development with Tapestry book (and applying it successfully to our current project - it's a good tutorial style book, probably not a reference book though :). Anyhow, in chapter 3 for Validating Inputs it all works up to page 65. On Page 66 w

ASO's and hibernate sessions

2006-01-27 Thread Dan Adams
Okay, I'm using session-per-request with hibernate and in my aso I have an object that associates the user with a school. Does anyone know of a good way of re-associating the school with the current session on each request or making sure it's in the session? -- Dan Adams Software Engineer Interac

Re: How to escape a conditional close tag ?

2006-01-27 Thread Jorge Quiroga
Andreas: Sorry, change the line on my .html for to see the problem the same for the other using the ognl: approach Bye and thanks for your time JQ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

Re: How to escape a conditional close tag ? (version 2)

2006-01-27 Thread Jorge Quiroga
Hello: this is my other version .html source="ognl:paramSelected" value="ognl:parametro"> raw="ognl:numColParamReached"/> raw="ognl:numColParamReached"/>

Re: How to escape a conditional close tag ?

2006-01-27 Thread Jorge Quiroga
Hello Andreas: Of course this is my .html source="ognl:paramSelected" value="ognl:parametro"> raw="ognl:numColParamReached"/> raw="ognl:numColParamReached"/>

Re: instantiating components directly

2006-01-27 Thread gaz jones
yeah the key concept is that its PROPERLY FACTORED. lol On 1/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I'm don't believe that would solve my problem, because when I render the > page, I never know what components I need until I read the database. > Yesterday, company A may have 5 cus

Re: BindingException Issues more prominent with annotations

2006-01-27 Thread Chris Chiappone
It looks like I can reproduce this issue easily. For instance say I have a page that contains: @InjectState("visit") public abstract Visit getVisitObj(); And have the exact same getter (annotation or not) in my component: public abstract Visit getVisitObj(); The binding exception seems to occu

RE: instantiating components directly

2006-01-27 Thread Mike . Barber
I'm don't believe that would solve my problem, because when I render the page, I never know what components I need until I read the database. Yesterday, company A may have 5 custom fields to add to the form, and today they may have 20--or maybe there is still 5, but the default values have chan

Re: Eclipse Autmatic Update and Spindle

2006-01-27 Thread Geoff Longman
The update site is fixed. Building a new archived site. Geoff On 1/27/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > It's a combination of a bug on my part and crappy version handling in > Eclipse update. > > I will fix my end shortly. > > Q Do you need the Groovestry support? > > If not you can

Re: How to escape a conditional close tag ?

2006-01-27 Thread Andreas Andreou
Did you really add the raw parameter? Jorge Quiroga wrote: > Hello: > > I agree with you the solution isn´t elegant, and doesn't work because > T4 transform the output in and I tried with literal: > but T4 put the same thing and of course it doesn´t work as I expected > > It cannot be po

RE: instantiating components directly

2006-01-27 Thread Patrick Casey
That's rather akin to the claim that if I have 120 cars in my garage, my BMW is actually a transformer, on the grounds that I could decide to drive a Buik instead, isn't it? The idea that I have to know a-priori every possible component I might, potentially, need to render, is the hangup, not to m

Re: Announcement: condense.it - a tapestry-based website - goes live

2006-01-27 Thread Andreas Andreou
Hi joe, you might like to create your own Exception page, cause the default one provides too many internal details... For instance, see this: http://condense.it/Features2.html Joe Trewin wrote: >Hi, > >Just want to announce another Tapestry-based website. > >I work for a technology consultancy a

RE: Eclipse Autmatic Update and Spindle

2006-01-27 Thread Patrick Casey
Thank's Geoff, I'll give the workaround a try as no, I don't use Groovestry. -- Pat > -Original Message- > From: Geoff Longman [mailto:[EMAIL PROTECTED] > Sent: Friday, January 27, 2006 11:19 AM > To: Tapestry users > Subject: Re: Eclipse Autmatic Update and Spindle > >

RE: instantiating components directly

2006-01-27 Thread Mark Stang
Mike, I have a page with over 120 components on it. They range from a single text field all the way up to components that are complex combinations of fields. The page is a "holder" page we don't every display it. Instead we have another page that is our View. We reference any one of the comp

Re: Eclipse Autmatic Update and Spindle

2006-01-27 Thread Geoff Longman
It's a combination of a bug on my part and crappy version handling in Eclipse update. I will fix my end shortly. Q Do you need the Groovestry support? If not you can update using a workaround. 1. Stop eclipse 2 delete the following files: eclipse/features/com.iw.features.groovy_*.jar (where *

RE: tapestry not really component based?

2006-01-27 Thread Mike . Barber
This is something that's bothered our dev team since we took up Tapestry. It seems that the Tapestry philosophy is to have a static web page. But what about forms that require dynamicly displayed fields (see my other posts from today). Or what about i18nyou may need to change the layout o

[TAP3] @ImageSubmit and javascript onClick problem

2006-01-27 Thread Taavi Sildeberg
Hey everybody, I have a problem with @ImageSubmit and javascript onClick function. In my html template is next line: selected="ognl:delCargo" tag="ognl:cargo"/> It raises a javascript confirmation box and user confirms deletion. For some reason it won't matter if a press yes or cancel resu

Eclipse Autmatic Update and Spindle

2006-01-27 Thread Patrick Casey
Hi Folks, I have a suspicion this may be related to the fact that I'm still on Tapestry 3.0.3, but for the last week or so, Eclipse auto-update has been trying to update my copy of Spindle. When it does though, I get this error message: Groovestry Support Add-in f

RE: tapestry not really component based?

2006-01-27 Thread Patrick Casey
I don't necessarily buy the slippery slope argument here. One might as well argue "well if we put listener functions in the page class that fire when users click links or buttons, the before you know it users are going to insist on the full swing set, so we shouldn't do listener functions"

Re: tapestry not really component based?

2006-01-27 Thread Cliff Zhao
IMO, this is not about one dynamic component. If you open the door to introduce the dynamically created component, you introduce a chain of things. People will ask for everything equivalent to Swing, you will need layout components, ..., etc. It will make everything complicated. In the hype of ajax

BindingException Issues more prominent with annotations

2006-01-27 Thread Chris Chiappone
At first I thought I could work around these issues but they seem to be popping up more and more throughout my application. Its really becoming an issue for me. Ever since I have moved from .page and .jwc files to annotations I get these exceptions more often. I don't believe I am doing anything

RE: forcing Login

2006-01-27 Thread Aaron Bartell
I had the same problem awhile back, see thread: http://www.mail-archive.com/tapestry-user@jakarta.apache.org/msg11419.html I kept searching around and here is the solution I came up with. Implement PageAttacheListener on your BasePage extending class and implement the PageAttachListener like so

Re: tapestry not really component based?

2006-01-27 Thread Norbert Sándor
rock on... is PROPERLY FACTORED in capitols because you are shouting it? lol Maybe he only wanted you to pay more attention to those words Why is it so hard to instantiate a component when needed? Tapestry's infrastructure could do it because it is a suboperation of instantiating a page, o

AW: Re: https again and still absolutely clueless :(

2006-01-27 Thread Gerald Schöffel
Hi Cliff, thank you for your feedback ! >I'm not a Apache expert, but I think that you can have Apache redirect your >pages. Namely, when Apache gets http requests supposed to be https, Apache >will redirect them to the https equivalent. >Personally, I really like this kind of things be configur

Strange exceptions in Tomcat log file, I think releted to HiveMind

2006-01-27 Thread tsvetelin saykov
Hi All, I have received the following exceptions in Tomcat log file in my Tapestry 4.0 application. I think it is releated with HiveMind registry but dont know what is wrong :( It is very strange because the same application is running without any problems under Eclipse+Jetty or on my desctop Tomc

Re: instantiating components directly

2006-01-27 Thread Mike . Barber
Robert/Jesse, Thanks for the great responses. To elaborate: As I mentioned we have a standard order form with address, phone, etc.. Then beneath it will be a list of text fields that are unique to each company. Each field has a label, a text field, and a default value. So, we have several d

Announcement: condense.it - a tapestry-based website - goes live

2006-01-27 Thread Joe Trewin
Hi, Just want to announce another Tapestry-based website. I work for a technology consultancy and development company in London, UK called Can Factory Ltd. (http://www.canfactory.com). We've recently put live a self-funded service called Condense.It: http://condense.it/ This is a simple URL sho

Re: How to escape a conditional close tag ?

2006-01-27 Thread Jorge Quiroga
Hello: I agree with you the solution isn´t elegant, and doesn't work because T4 transform the output in and I tried with literal: but T4 put the same thing and of course it doesn´t work as I expected It cannot be possible? JQ ---

Re: tapestry not really component based?

2006-01-27 Thread mike jones
"when is a component not a component? when its a tapestry component" which is not a bad thing you just have to learn how this great framework works. but the major problem for me is "when is a tapestry component not a tapestry compoent? when its in a loop" I have had problems with tap 3 with this

Re: tapestry not really component based?

2006-01-27 Thread gaz jones
>No, what it means is that Tapestry is PROPERLY FACTORED, such that >generating links is not the concern of the components that render >those links, rock on... is PROPERLY FACTORED in capitols because you are shouting it? lol >making it easy to get the same or similar behavior of a >component, su

Re: tapestry not really component based?

2006-01-27 Thread Ben Gidley
I think the template option does answer to a large degree this issue with pagelinks. However as per Mike Jones example above (the for issue) is much more critical. We have to go through all kinds workarounds to handle page level validation of fields inside a for loop. This seems to be a feature of

Re: How should @Persist + @InitialValue behave?

2006-01-27 Thread Jesse Kuhnert
P.S. If any of this is related to your kickstart project, I may be of service in helping you define some component enhancement contribution points in tapestrys bytecode enhancement chain (using javassist). That way you can provide a lot of functionality that is more or less hidden, or not a requir

Re: https again and still absolutely clueless :(

2006-01-27 Thread Cliff Zhao
I'm not a Apache expert, but I think that you can have Apache redirect your pages. Namely, when Apache gets http requests supposed to be https, Apache will redirect them to the https equivalent. Personally, I really like this kind of things be configured on Apache. On 1/27/06, Gerald Schöffel <[E

Re: How should @Persist + @InitialValue behave?

2006-01-27 Thread Howard Lewis Ship
Yes, this is the explicit, documented, behavior for @InitialValue. If you want to use a simpler value, you can set the properties initial value to a constant inside finishLoad(). In that case, the value you provide is retained and re-applied at the end of the request. With @InitialValue, the bin

How should @Persist + @InitialValue behave?

2006-01-27 Thread Schulte Marcus
I've just found, to my surprise, that a property annotated with @Persist + @InitialValue("someMethod()") in T4 get's re-initialised on every request. Is this the expected behaviour? Are those annotations not meant to be used together (the docs indicate that they _can_ be used together)? I was some

Re: tapestry not really component based?

2006-01-27 Thread Howard Lewis Ship
> imo that is a major disadvantage, as it prevents you from dynamically > creating components that are made up of _other_ components when you inherit > from AbstractComponet - that is a REAL pain. and something you can do easily > in other component based frameworks. > No, what it means is that Ta

forcing Login

2006-01-27 Thread Cagan
Hello all, I am quite new to Tapestry, trying to leave Struts behind... I'm using Tapestry 4.0 running on Tomcat 5.5.15. I'm trying to setup a system where there is a common base class for all Pages that require a user to login first. This is going to be a bit lenghty as I want to give all

Re: Including tapestry page with jsp:include doesn't work

2006-01-27 Thread Inge Solvoll
Ok, thanks! After some more debugging here, I see that the eclipse debugger lists a queryString ("show=true") of the request object in the service method of my Engine. There are also other request properties, like requestUri, that list other jsp's instead of the tapestry url (MyPage.external). Pos

RE: Including tapestry page with jsp:include doesn't work

2006-01-27 Thread Schulte Marcus
I've just done some testing with the following JSP: ___ TEST JSP Tapestry returns this: Now some JSP-Stuff ... this works (Tap4, Tomcat 5.5, no friendly url's) - but only to some extent. Tomcat's Jasper complains

RE: Need Help in Evaluation of Framework

2006-01-27 Thread Aaron Bartell
I think a lot of these questions cannot be answered in a boolean fashion. Take the first one "Provide Designer/developer separation?". Both JSF and Tapestry provide separation, but IMO JSF alienates the Creative UI designer that is used to working only with Dreamweaver whereas Tapestry has much le

favicon

2006-01-27 Thread Doug Lochart
This may be a bit off topic so please forgive me. We are running Apache 2.0.52 as our server. Our app purely uses SSL connections. Our tapestry application is handled by Tomcat and of course we are using mod_jk to connect httpd -> tomcat to run our tapestry app. Is there any way given thius sit

submitOnChange deprecated?

2006-01-27 Thread gcormier
Okay, so i see submitOnChange is deprecated and no longer works on my dropdown. I checked the manual page for my PropertySelection, and tried adding the onChance tag like this : However, I still get no auto-updating magic. Anything I'm missing here? Thanks, Greg --

Re: tapestry not really component based?

2006-01-27 Thread Geoff Longman
add a feature request to jira. Geoff On 1/27/06, Raul Raja Martinez <[EMAIL PROTECTED]> wrote: > It looks like the ability to dynamically add components is something > that a lot of people have asked for. Are there any plans to include this > feature in the future? > > Ivano wrote: > > I understa

Re: Non-intuitive behavior from the For component

2006-01-27 Thread Robert Zeigler
It seems to me that what ought to happen is that he needs to set "volatile" to true, and "match" to false. I don't use "For" yet since I'm still using tapestry 3.0.3, but I do use Base:For (albeit a bit older version which doesn't use the match parameter). In any event, it seems that setting that

Re: tapestry not really component based?

2006-01-27 Thread Raul Raja Martinez
It looks like the ability to dynamically add components is something that a lot of people have asked for. Are there any plans to include this feature in the future? Ivano wrote: I understand the problem better now. Probably what happens is that people used to work with Java on web (with JSP,

Re: Including tapestry page with jsp:include doesn't work

2006-01-27 Thread Inge Solvoll
I'm sorry to keep asking this question, but this problem is very critical for my project right now, so I really could use some input on why the jsp:include mechanism makes tapestry requests go to the home-service, instead of the requested page. I hope someone can bring some ideas or personal exper

Re: tapestry not really component based?

2006-01-27 Thread Ivano
I understand the problem better now. Probably what happens is that people used to work with Java on web (with JSP, JSTL, Struts, and so on) sees tapestry as one of the first component-based approach to web development. And if you compare that with previously available java web frameworks it re

Re: How to set ValidationMessages in T4.0?

2006-01-27 Thread Rudolf Baloun
I found a solution: "dd.MM." In one line it doesn't work (for me)?! Rudolf Baloun wrote: I found the solution in the api: class="my.package.LenientDateTranslator,pattern=dd.MM.,message=Date Wrong"/> but can´t use an ognl expression like this: class="my.package.Le

Re: How to set ValidationMessages in T4.0?

2006-01-27 Thread Rudolf Baloun
I found the solution in the api: class="my.package.LenientDateTranslator,pattern=dd.MM.,message=Date Wrong"/> but can´t use an ognl expression like this: class="my.package.LenientDateTranslator,pattern=dd.MM.,message=ognl:page.wrongDateMessage"/> is there a solution for my problem? b

Need Help in Evaluation of Framework

2006-01-27 Thread Sohaib Akhtar
I need someone's help. I am doing research study on open source frameworks. One of its requirements is that I should provide comparison analysis that which framework support which feature (These are the feature, which could be used for selection of framework). As I have not worked on Tapestry so

Re: How to set ValidationMessages in T4.0?

2006-01-27 Thread Rudolf Baloun
Nice, i can set the message for the "required" - field with your solution. But i want to set the message for wrong Data-Input. My code again: class="my.package.LenientDateTranslator,pattern=dd.MM."/> value="ognl:page.messagesUtil.birthdayMsg"/> value="ognl:pa

Re: Konqueror and DatePicker

2006-01-27 Thread Shing Hing Man
DataPicker works fine for me in Konqueror 3.3.0-8. I am using Tap 4. Shing --- Alan Chandler <[EMAIL PROTECTED]> wrote: > Anyone sucessfully using the DataPicker component > with Konqueror? > > I seem to get some days in a month that I can't > click on to set a date. It > might be some sort o

Re: Contrib table pagination problems

2006-01-27 Thread Andreas Andreou
Daniel, caching is not the cause of this problem, and it certainly isn't the cure for it either. >From the exceptions, I assume that you're specifying the source and the columns parameters of the table component and once you navigate to the next page one of them turns null (usually it's the source

Re: Including tapestry page with jsp:include doesn't work

2006-01-27 Thread Inge Solvoll
Yes, that works. That is just like accessing the page in a browser. The problem arises when a tapestry url is included with jsp:include, serverside. It seems that there are problems when tapestry is called from within a struts/servlet request. On 1/26/06, Schulte Marcus <[EMAIL PROTECTED]> wrote:

Re: How to set ValidationMessages in T4.0?

2006-01-27 Thread Martin Strand
or if you want l10n, add a % value="validators:required[%this.is.my.message.key]"/> Read more here: http://jakarta.apache.org/tapestry/UsersGuide/validation.html#validation.fields On Fri, 27 Jan 2006 12:23:38 +0100, Rudolf Baloun <[EMAIL PROTECTED]> wrote: Hi, i got this code in my *.p

How to set ValidationMessages in T4.0?

2006-01-27 Thread Rudolf Baloun
Hi, i got this code in my *.page: class="my.package.LenientDateTranslator,pattern=dd.MM."/> value="ognl:page.messagesUtil.birthdayMsg"/> I want to add use another validationmessage as the default message. how can i set the validationmessage? doesnt work!?

Re: tapestry not really component based? (Example of using child components in an AbstractComponent)

2006-01-27 Thread Paul Field
> i would be developing a component that > inherits from AbstractComponent and needs to have links to other pages > inside of it. now i would assume that i could use the components that have > already been written to do this -> PageLink for example but i cannot because > they cannot be instantiate

Re: https again and still absolutely clueless :(

2006-01-27 Thread Gerald Schöffel
Hi Chris, me again :) Yes, those port numbers will go away completely. This is because Apache won't even be talking to Tomcat on port 8080, it will be using the JK port, 8009. Using mod_jk makes Tomcat work much more like mod_php or mod_perl. All of the http/https stuff happens in Apache.

Re: Contrib table pagination problems

2006-01-27 Thread Daniel Lydiard
I figured out the problem :) If caching is turned off, you'll get the error. So: -Dorg.apache.tapestry.disable-caching=false = Tables will paginate. and -Dorg.apache.tapestry.disable-caching=true = Tables will not paginate. - Original Message - From: "Chris Chiappone" <[EMAIL PROTEC

Re: Contrib table pagination problems

2006-01-27 Thread Daniel Lydiard
I figured out the problem :) If caching is turned off, you'll get the error. So: -Dorg.apache.tapestry.disable-caching=false = Tables will paginate. and -Dorg.apache.tapestry.disable-caching=true = Tables will not paginate. - Original Message - From: "Chris Chiappone" <[EMAIL PROTEC

Re: How to popup excel file in the IE?

2006-01-27 Thread Raul Raja Martinez
In Tapestry 4 when you create an Engine Service you have to tell your hivemodule.xml that it exists so that Hivemind injects the service when needed. You might want to look at an introduction of IoC http://www.martinfowler.com/articles/injection.html Hivemind is kind of a inversion of control