RE: [Tapestry-developer] Tapestry 2.02a and other appservers

2002-05-06 Thread Ara Abrahamian
Hi, While we're talking about incompatibilities... anyone here succeeded in running tutorial on Orion? I can run it, but all links just don't work, the same page is rendered on browser window not the target page. Funny it works on websphere 4!!! Ara. > -Original Message- > From: [EMAIL

[Tapestry-developer] re-use of component declaration

2002-05-06 Thread Chris Merrill
I have a page that contains ~10 uses of a Direct component. Each usage is similar, except for the binding of the context. HTML snippet: jwc spec snippet: vfr3-4.jpg Boolean.false Is there a way for me to move the values of the static binding ("context") into the HTML. The

[Tapestry-developer] Re: Tapestry 2.02a and other appservers

2002-05-06 Thread Christian Sell
Howard, heres the exception I get when I access the tutorial workbench. It seems to be related to localization, and its right inside your parser. I get it when I click on a tab after opening the page - it seems that the first exception gets swallowed somewhere. I find it a little disturbing th

RE: [Tapestry-developer] Newbie question : Property not found Exception

2002-05-06 Thread Dorothy Gantenbein
Hi -   This may or may not help.  If you are sure that your servlet is deployed properly, you may want to display your page differently.  I sometimes have Tapestry mask errors when I go to a page using a Direct component.  I placed into my footer a Page component and link directly to the

[Tapestry-developer] SourceForge stats

2002-05-06 Thread hlship
Did anyone notice that Tapestry has been well into the top 50 projects at SourceForge for the last week? Our worst day was #41, actually. I believe we're about #8 on the Java list at SourceForge. Of course, the SF stats are always all screwed up (for instance, it isn't recording file downloa

Re: [Tapestry-developer] Newbie question : Property not found Exception

2002-05-06 Thread Aejaz Muslim
Hi Howard, I changed the properties from "name" to "namex" in Home.java, Home.jwc & from "name" to "namep" in Values.java & Values.html in addition to changing get/set methods to reflect these properties. I am adding my test application to tutorial.war & use the same environment to run it as the t

Re: [Tapestry-developer] Tapestry 2.02a and other appservers

2002-05-06 Thread hlship
Something truly strange is going on. For instance, that parsing of templates should be affected is very odd. TemplateParser doesn't use an XML parser, it's a little state machine I threw together and has o dependencies on anything. Tapestry should be compatible with any XML parser; it uses

Re: [Tapestry-developer] Tapestry 2.02a and other appservers

2002-05-06 Thread Christian . Hall
Garrett, These all seem to be XML related. We are using 2.0.2, though, so not sure about 2.1. We removed dom.jar, sax.jar and jaxp.jar from resin lib and added. Then, we added the other jars to the expanded WEB-INF lib directory of the Web app. -C

Re: Re: [Tapestry-developer] Tapestry 2.02a and other appservers

2002-05-06 Thread Christian Sell
>I've found that Jetty is very good at following standards. In some cases, >the standards aren't well defined, or others (such as Tomcat) just flout >them. I've made adjustments in the past for this kind of situation and will >do so in the future, given sufficient details. Tapestry doesn't do a

Re: [Tapestry-developer] Tapestry 2.02a and other appservers

2002-05-06 Thread Chris Merrill
Christian Sell said: >Under tomcat, I see errors in the console stating that page cleanup failed > with a NullPointerException (this happens when the session times out and the > SessionBindingListener callbacks fire). I'm running the tutorials under Tomcat 4.01 and did not see any problems. Coul

Re: [Tapestry-developer] Tapestry 2.02a and other appservers

2002-05-06 Thread Garrett . Suhm
I was curious about this too -- I've deployed the tutorial a long time ago with earlier versions of Resin (1.x) and Tapestry with no problems. So I downloaded the latest Resin (2.1) and the latest Tapestry and deployed tutorial.war to Resin's webapps directory. I then moved the following jar file

Re: [Tapestry-developer] Tapestry 2.02a and other appservers

2002-05-06 Thread Howard M. Lewis Ship
> Hello, > > I just recently started evaluating tapestry, after having been put off for a while by the strong ties to Jetty that I perceived in the documentation/installation instructions. I've found that Jetty is very good at following standards. In some cases, the standards aren't well define

Re: [Tapestry-developer] Using non tapestry resources with tapestry

2002-05-06 Thread Howard M. Lewis Ship
> Hi > > Please forgive me if these questions have been answered elsewhere but I > haven't found > any definitive answers in the documentation or archives. > > I'm considering using Tapestry but I want to link to other resources, for > example I have a > servlet that I use for creating pdf docum

Re: [Tapestry-developer] Encodihg trouble with Visit object content

2002-05-06 Thread Howard M. Lewis Ship
By default, Tapestry uses the encoding for your default locale. This looks like a bug. Tapestry should be using the encoding for the user's Locale, as stored in the engine. - Original Message - From: "Vladimir Roth" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 06, 2002

Re: [Tapestry-developer] Newbie question : Property not found Exception

2002-05-06 Thread Howard M. Lewis Ship
In addition, the property "name" is already used by Tapestry (each page has a fixed name, the name you give it in the application specification). - Original Message - From: "Richard Lewis-Shell" <[EMAIL PROTECTED]> To: "Aejaz Muslim" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday,

Re: [Tapestry-developer] Tapestry 2.02a and other appservers

2002-05-06 Thread Tom Davies
Christian Sell wrote: > Hello, > > I just recently started evaluating tapestry, after having been put off for a while >by the strong ties to Jetty that I perceived in the documentation/installation >instructions. > > Now that I have it running under Resin 2.1 and Tomcat 4.01, I see my fears co

Re: [Tapestry-developer] Using non tapestry resources with tapestry

2002-05-06 Thread Tom Davies
Nicholas Sanderson wrote: > Hi > > Please forgive me if these questions have been answered elsewhere but I > haven't found > any definitive answers in the documentation or archives. > > I'm considering using Tapestry but I want to link to other resources, for > example I have a > servlet that I

Re: [Tapestry-developer] Newbie question : Property not found Exception

2002-05-06 Thread Aejaz Muslim
Hi Richard, Thanks for your reply. I read Howard's article "How do pages comunicate ?" & have changed my application based on that. Changing "Name" to "name" had given me the following exception(in the browser), HTTP ERROR: 503 Service Unavailablejava.lang.IllegalArgumentException: First element o

[Tapestry-developer] Tapestry 2.02a and other appservers

2002-05-06 Thread Christian Sell
Hello, I just recently started evaluating tapestry, after having been put off for a while by the strong ties to Jetty that I perceived in the documentation/installation instructions. Now that I have it running under Resin 2.1 and Tomcat 4.01, I see my fears confirmed to some degree. The tutor

[Tapestry-developer] Encodihg trouble with Visit object content

2002-05-06 Thread Vladimir Roth
How i can change request encoding? The problem is that when i try to post data in windows-1251 encoding, the result page seems to have wrong codepage(the Visit object containing russian text from first page shows on next page in a wrong encoding with Insert component). Both pages has encodin