Re: [Tapestry-developer] OGNL expression problem

2002-12-18 Thread Drew Davidson
Howard M. Lewis Ship wrote: Tapestry has some special hooks for EJB's ... check the docs. Since it references javax.ejb.*, javax.ejb.* needs to be in the classpath. No way around it. Of course if you're deploying to an enterprise server that already has the EJB jar in the classpath, you're

Re: [Tapestry-developer] OGNL expression problem

2002-12-18 Thread Howard M. Lewis Ship
Tapestry has some special hooks for EJB's ... check the docs. Since it references javax.ejb.*, javax.ejb.* needs to be in the classpath. No way around it. - Original Message - From: "Christian Sell" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 18, 2002 7:01 PM Su

Re: [Tapestry-developer] OGNL expression problem

2002-12-18 Thread Drew Davidson
Christian Sell wrote: Hello, I am encountering problems using OGNL expressions of the following form: the first time this binding is invoked it executes OK, but the second time it throws an exception, stating something about an invalid OGNL expression, pointing at some "Eq" token. It seems "E

[Tapestry-developer] OGNL expression problem

2002-12-18 Thread Christian Sell
Hello, I am encountering problems using OGNL expressions of the following form: the first time this binding is invoked it executes OK, but the second time it throws an exception, stating something about an invalid OGNL expression, pointing at some "Eq" token. It seems "Eq" is an OGNL-internal r

[Tapestry-developer] [ tapestry-Bugs-655993 ] ValidationStrings_de.properties

2002-12-18 Thread noreply
Bugs item #655993, was opened at 2002-12-18 23:30 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=104754&aid=655993&group_id=4754 Category: Tapestry Group: bug Status: Open Resolution: None Priority: 5 Submitted By: Michael Frericks (frericksm) Assigned to: Howard L

Re: [Tapestry-developer] The World is on fire and all I have is a buck of gas

2002-12-18 Thread Luis Neves
Have you seen this page: http://tapestry.sourceforge.net/wiki/index.php/EnablingUnicode replace UTF-8 for ISO8859-1. It works for me. Best regards, Luis Neves - Original Message - From: "Adam Greene" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 18, 2002 8:30 P

RE: [Tapestry-developer] The World is on fire and all I have is a buck of gas

2002-12-18 Thread Dorothy Gantenbein
Title: RE: [Tapestry-developer] The World is on fire and all I have is a buck of gas Hi - I talked to our i18n expert here.  Our suggestion is to go with UTF-8.  Here are here comments.    if it is just for displaying, we did this: response.setContentType("text/plain; charset=UTF-8

Re: [Tapestry-developer] getAbsoluteURL problems

2002-12-18 Thread Simon Robins
Thanks, That was my first go with Tapestry - I'm particularly pleased with the Subject Search component in the Search section. I must package that component up properly sometime and let everyone have a look. If only I didn't need sleep. :-) Cheers, Simon Simon, that's a very nice site you ha

Re: [Tapestry-developer] Discovered Partial Answer to Block Character Problem

2002-12-18 Thread Simon Robins
I think you may need to do something like the following: IEngineService service = cycle.getEngine().getService(IEngineService.PAGE_SERVICE); Gesture gesture = service.buildGesture(cycle, null, new String[]("ListAlpha")); new RedirectException(gesture.getAbsoluteURL()); Read the 'Page localizatio

[Tapestry-developer] The World is on fire and all I have is a buck of gas

2002-12-18 Thread Adam Greene
Has anyone else run into the problem of trying to deal with UTF-8 vs ISO8859-1 and trying to get multi-lingual characters to print. I have two page with é characters in them, one page displays fine under UTF-8 and the other only works under ISO8859-1 (switched via META TAGs). No matter what I do,

[Tapestry-developer] Discovered Partial Answer to Block Character Problem

2002-12-18 Thread Adam Greene
The problem is that the server is sending the page with a header encoding of UTF-8 and not looking at the ISO-8859-1 in the page, any ideas on how to stop it from doing that (setting the header encoding to UTF-8). --- This SF.NET email is spon

[Tapestry-developer] Further to What is the proper way to switch from English to French

2002-12-18 Thread Adam Greene
Oh, I should have mentioned this in regards to the "block" characters. The biggest trouble we are having is that we have Insert's that must run in raw mode so the Insert doesn't translate the é into é and writes it directly into the page. It works fine if I save the generated HTML to disk and reo

[Tapestry-developer] What is the proper way to switch from English to French

2002-12-18 Thread Adam Greene
I need to be able to switch from english and french and back again, but I keep getting half the page in English and half in French. The dynamic content comes up in French, but the static HTML is English. I have to leave the page, come back and refresh it to get it to work. And on top of that hal

Re: [Tapestry-developer] Calling a specific page + Event

2002-12-18 Thread Geoff Longman
> Gleaned from the Vlib demo: > > What you can do is use cycle.getPage("error page name"), cast it to your > error page class, and then invoke a method on it to set the error code, > before calling cycle.setPage(error page object). > You could also pass a page name to the ErrorPage, so the user co

[Tapestry-developer] [ tapestry-Feature Requests-650592 ] Add MaskEdit component

2002-12-18 Thread noreply
Feature Requests item #650592, was opened at 2002-12-08 22:44 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=354754&aid=650592&group_id=4754 Category: framework Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Malcolm Edgar (malcolm_edgar) A

[Tapestry-developer] [ tapestry-Feature Requests-651331 ] DatePicker, TimeZone Option request

2002-12-18 Thread noreply
Feature Requests item #651331, was opened at 2002-12-10 08:25 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=354754&aid=651331&group_id=4754 Category: framework Group: None >Status: Closed >Resolution: Later Priority: 5 Submitted By: Plamena Jordanova Hristova (pla

Re: [Tapestry-developer] Calling a specific page + Event

2002-12-18 Thread Richard Kirby
Lennart Benoot wrote: 2) What is the best way to do the following: I have a certain error page that i want to show when an error occurs at a certain part in the code. I use the the cycle.setPage( ...) to go to the error page. The error page contains a dynamic field with an error code. This c

[Tapestry-developer] Calling a specific page + Event

2002-12-18 Thread Lennart Benoot
Hey all, I have two questions to ask 1) Does anyone have any experience with events from the application server (e.g. a JMS Message that arrives) that should be delegated to the client (in this case a webclient). I see no other opportunity but an applet that connects to the server through tcpi