Re: [help] questions

2006-07-06 Thread Matthias Wessendorf
forEach won't work use tomahawk dataList anyway, you can use Shale (ViewController). in the init() you can set the desired values for that. -Matthias On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote: I want to display a list of products in a loop something like However this is

Re: [help] questions

2006-07-06 Thread Matthias Wessendorf
Also is there an easy way to pass to the action which product it is when you click on the link? t:updateActionListener from MyFaces (or setPropertyActionListener is JSF 1.2). you can pass the complete *current* object to another backing bean property. -Matthias Thanks for any help you can pr

Re: [help] questions

2006-07-06 Thread Sean Schofield
btw, congratulations on the first user post to the list :-) (at least i think its the first) sean On 7/6/06, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: > Also is there an easy way to pass to the action which product it is > when you click on the link? t:updateActionListener from MyFaces

Re: [help] questions

2006-07-06 Thread Matthias Wessendorf
hehe was thinking the same! On 7/6/06, Sean Schofield <[EMAIL PROTECTED]> wrote: btw, congratulations on the first user post to the list :-) (at least i think its the first) sean On 7/6/06, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: > > Also is there an easy way to pass to the action whi

Re: [help] questions

2006-07-06 Thread Wendy Smoak
On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote: However this is the first page and I don't know how to get the values in the productsBean from the database. However this only needs to be application scope and loaded once when the application is loaded. How do I go about this? This sounds

Re: [help] questions

2006-07-06 Thread Garner Shawn
I have posted about shale before but that was before when it was under the struts project still and on the struts mailing list. Back then I was investigating using with JRun 4 for work. Now I'm interested using Tomcat 5.5 for personal interests. Shawn

Re: [help] questions

2006-07-06 Thread Garner Shawn
How does shale determine which backing beans to call the methods for the viewcontroller? Does it do all managed beans that implement the interface in the config file or does it only do beans used in rendering the view that implement the interface? I'm at a loss as to why forEach won't work. Can

Re: [help] questions

2006-07-06 Thread Matthias Wessendorf
each page has a viewcontroler (one backing bean) name must be page$backing.property page = page.jsp backing = your bean property = a property JSF 1.1 has some issue with JSP / JSTL Read [1] for more. Great article. -Matt [1] http://www.onjava.com/pub/a/onjava/2004/06/09/jsf.html On 7/6/06

Re: [help] questions

2006-07-06 Thread Garner Shawn
hmm this makes it difficule because I'm using facelets and a template my page is navigation.xhtml but it is used in template.xhtml from welcome.xhtml so I assume i would declare my backing bean welcome$backingBean not sure why I need to declare the property if the bean is managed. Shawn On 7/6/

Re: [help] questions

2006-07-06 Thread Matthias Wessendorf
I *think* it is viewId based in JSP a url /foo.faces has the viewId foo.jsp in Facelets it is (should be) foo.xhtml the property is if you like to use the properties for instance: ... -Matthias On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote: hmm this makes it difficule because I'm usi

Re: [help] questions

2006-07-06 Thread Craig McClanahan
On 7/6/06, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: I *think* it is viewId based Yes it is indeed view-id based, which IIRC in facelets will be things like "/index.xml" instead of "/index.jsp". The view identifier has to map to a corresponding backing bean. It is also possible to supp

Re: [help] questions

2006-07-06 Thread Garner Shawn
what is the minimum set of jars do I need for the viewcontroller do I need the chain or oro jars? On 7/6/06, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: I *think* it is viewId based in JSP a url /foo.faces has the viewId foo.jsp in Facelets it is (should be) foo.xhtml the property is if you

Re: [help] questions

2006-07-06 Thread Sean Schofield
Facelets and Shale work fine together. If you have foo.xhtml and it has a your backing bean should still be name foo. Sean On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote: hmm this makes it difficule because I'm using facelets and a template my page is navigation.xhtml but it is used in tem

Re: [help] questions

2006-07-06 Thread Craig McClanahan
On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote: what is the minimum set of jars do I need for the viewcontroller do I need the chain or oro jars? If view controller is the only part of Shale you're using, then you need shale-core.jar, Commons Logging, a JSF implementation (MyFaces or the R

Re: [help] questions

2006-07-06 Thread Garner Shawn
so in my dataList I can do #{welcome$products.productsList} productsMangedBean java.util.ArrayList application welcome$products com.age.j.soft.beans.ProductBackingBean requ

Re: [help] questions

2006-07-06 Thread Craig McClanahan
On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote: so in my dataList I can do #{welcome$products.productsList} productsMangedBean java.util.ArrayList application welcome$products com.age.j.soft

Re: [help] questions

2006-07-06 Thread Garner Shawn
I was going to do that in the init method of the viewcontroller interface for the bean init method unless you have another better place to do it? I'm just going to do a Hibernate query which should return a list. On 7/6/06, Craig McClanahan <[EMAIL PROTECTED]> wrote: On 7/6/06, Garner Shawn <[

Re: [help] questions

2006-07-06 Thread Craig McClanahan
On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote: I was going to do that in the init method of the viewcontroller interface for the bean init method unless you have another better place to do it? That works, but it'll get executed once per request rather than once at startup. I'm just going

Re: [help] questions

2006-07-06 Thread Garner Shawn
So something like this? Do I need the part? AppSetupBean com.age.j.soft.beans.AppSetupBean application welcome$products com.age.j.soft.beans.ProductBackingBean request

Re: [help] questions

2006-07-06 Thread Craig McClanahan
On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote: So something like this? Do I need the part? You actually don't need to specify for the runtime part of JSF to work -- but it's possible that this would provide for information for tools. Craig AppSetupBean

Re: [help] questions

2006-07-06 Thread Garner Shawn
Is it possile to map it to a generic page instead of a specific. Since this is used on a template I don't want to have to declare the bean for every possible view that uses the template. So can I do *$products ... instead of welcome$p

Re: [help] questions

2006-07-08 Thread Garner Shawn
Can you go into how to use t:updateActionListener and setPropertyActionListener? Shawn ---Original Message-- Also is there an easy way to pass to the action which product it is when you click on the link? t:updateActionListener fr

Re: [help] questions

2006-07-08 Thread Matthias Wessendorf
This page is nice http://wiki.apache.org/myfaces/ExecutingMethodsFromLinkButtonParameters It describes the *problem* and updateActionListener as a solution On 7/8/06, Garner Shawn <[EMAIL PROTECTED]> wrote: Can you go into how to use t:updateActionListener and setPropertyActionListener? Shawn

Re: [help] questions

2006-07-08 Thread Garner Shawn
How dose MyBean.navigate know about the "YourBeanClass tmpBean = null;" set in OrderActionListener? Seems to me that you can't connect the two very easily. On 7/8/06, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: This page is nice http://wiki.apache.org/myfaces/ExecutingMethodsFromLinkBut

Re: Application path

2006-07-28 Thread Craig McClanahan
On 7/28/06, Marty Phee <[EMAIL PROTECTED]> wrote: How do I get the application path. I can see it in the debugger through the ApplicationContextFacade, but not sure how to access it. I need the path of the application to pass on to a report generator. (Quoting my answer from the Struts User

Re: Application path

2006-07-28 Thread Viswanath Ramineni
I am using getExternalContext().getRequestContextPath(). This gives my application path. Hope nothing is wrong with this approach. -- View this message in context: http://www.nabble.com/Application-path-tf2017447.html#a5551183 Sent from the Shale - User forum at Nabble.com.

Re: Application path

2006-07-28 Thread Craig McClanahan
On 7/28/06, Viswanath Ramineni <[EMAIL PROTECTED]> wrote: I am using getExternalContext().getRequestContextPath(). This gives my application path. Hope nothing is wrong with this approach. There is indeed nothing wrong with this approach. However, the original poster has asked for the "appl

Re: Central Authentication

2006-08-08 Thread Craig McClanahan
On 8/8/06, Nikish Parikh <[EMAIL PROTECTED]> wrote: I want to implement centralized authentication and authorization using shale framework. So when any user tries to access any of application pages or faces, this authorization process will allow/restrict as per there security configurations.

Re: Central Authentication

2006-08-08 Thread Adam Brod
08/2006 11:46 AM Please respond to user@shale.apache.org To user@shale.apache.org cc Subject Re: Central Authentication On 8/8/06, Nikish Parikh <[EMAIL PROTECTED]> wrote: > > I want to implement centralized authentication and authorization using > shale framework. > >

Re: ViewController question

2006-08-08 Thread Craig McClanahan
On 8/8/06, Adrian Mitev <[EMAIL PROTECTED]> wrote: Hi guys! I`ve wrote my own ViewControllerMapper implementation but its not working. I mapped it in the web.xml like that: org.apache.shale.view.VIEW_CONTROLLER_MAPPER

Re: ViewController question

2006-08-08 Thread Adrian Mitev
Hi again! I`m using Shale 1.0.2 (Alpha) downloaded from this url http://people.apache.org/dist/struts/shale/v1.0.2/ I substituted log.debug with System.out.println but the result is the same. - Seeing is believing

Re: ViewController question

2006-08-08 Thread René Zanner
e. Cheers, René - Original Message - From: Craig McClanahan [mailto:[EMAIL PROTECTED] To: user@shale.apache.org Sent: Wed, 09 Aug 2006 07:52:00 +0200 Subject: Re: ViewController question > On 8/8/06, Adrian Mitev <[EMAIL PROTECTED]> wrote: > > > > Hi guys! I`ve wr

Re: ViewController question

2006-08-09 Thread Adrian Mitev
Hi again! Do i need to add the ShaleApplicationFilter in order to use the ViewController ability? -- Seeing is believing

Re: ViewController question

2006-08-09 Thread René Zanner
+0200 Subject: Re: ViewController question > Hi again! Do i need to add the ShaleApplicationFilter in order to use > the ViewController ability? > > -- > Seeing is believing >

Re: ViewController question

2006-08-09 Thread Adrian Mitev
Hi again! When i use the default view controller mapper everything works fine. But when i define my own implementation with: org.apache.shale.view.VIEW_CONTROLLER_MAPPER test.VCMapper and my default mapper is not being invoked and the default mapper is invoked instead. Any suggestion

Re: ViewController question

2006-08-09 Thread Craig McClanahan
On 8/9/06, Adrian Mitev <[EMAIL PROTECTED]> wrote: Hi again! When i use the default view controller mapper everything works fine. But when i define my own implementation with: org.apache.shale.view.VIEW_CONTROLLER_MAPPER test.VCMapper and my default mapper is not being invoked

Re: ViewController question

2006-08-09 Thread Adrian Mitev
Thx for your answer Craig! Any suggestion how to add a bean in aplication scope from the ServletContextListener? -- Seeing is believing

Re: ViewController question

2006-08-09 Thread Craig McClanahan
On 8/9/06, Adrian Mitev <[EMAIL PROTECTED]> wrote: Thx for your answer Craig! Any suggestion how to add a bean in aplication scope from the ServletContextListener? Your ServletContextListener receives a ServletContextEvent as a parameter. That object has a getServletContext() method to get th

Re: ViewController callbacks

2006-08-12 Thread Enrique Medina Montenegro
Seems that there's a file called shale-config.xml within the shale-core.jarfile that has chain commented both for preprocess() and prerender(). Is there any reason why this is commented and disabled? How can I enable it? On 8/12/06, Enrique Medina Montenegro <[EMAIL PROTECTED]> wrote: Hi, I'v

Re: ViewController callbacks

2006-08-12 Thread Craig McClanahan
On 8/12/06, Enrique Medina Montenegro <[EMAIL PROTECTED]> wrote: Hi, I've configured my JSF bean to be aware of ViewController callbacks, both using annotations and extending AbstractViewController, but my prerender() and preprocess() methods never get invoked. Hmm ... it looks like somethin

Re: ViewController callbacks

2006-08-12 Thread e . medina . m
Craig, Is there any workaround in the meantime? Thanks. --- -Original Message- From: "Craig McClanahan" <[EMAIL PROTECTED]> Date: Sat, 12 Aug 2006 10:58:59 To:user@shale.apache.org Subject: Re: ViewController callbacks On 8/12/06, Enrique Medina Montenegro <[EMAI

Re: ViewController callbacks

2006-08-12 Thread e . medina . m
? --- -Original Message- From: "Craig McClanahan" <[EMAIL PROTECTED]> Date: Sat, 12 Aug 2006 10:58:59 To:user@shale.apache.org Subject: Re: ViewController callbacks On 8/12/06, Enrique Medina Montenegro <[EMAIL PROTECTED]> wrote: > > Hi, > > I'v

Re: ViewController callbacks

2006-08-12 Thread Craig McClanahan
rom: "Craig McClanahan" <[EMAIL PROTECTED]> Date: Sat, 12 Aug 2006 10:58:59 To:user@shale.apache.org Subject: Re: ViewController callbacks On 8/12/06, Enrique Medina Montenegro <[EMAIL PROTECTED]> wrote: > > Hi, > > I've configured my JSF bean to be aware of View

Re: ViewController callbacks

2006-08-12 Thread Craig McClanahan
On 8/12/06, Craig McClanahan <[EMAIL PROTECTED]> wrote: On 8/12/06, Enrique Medina Montenegro <[EMAIL PROTECTED]> wrote: > Hi, > > I've configured my JSF bean to be aware of ViewController callbacks, > both > using annotations and extending AbstractViewController, but my > prerender() > and p

Re: Logo contest

2006-08-14 Thread Craig McClanahan
On 8/14/06, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: Forward ... -- Forwarded message -- From: Matthias Wessendorf <[EMAIL PROTECTED]> Date: Aug 14, 2006 4:24 PM Subject: Logo contest To: MyFaces Development I have a question, did we allow users to upload as many logos

Re: Logo contest

2006-08-14 Thread Matthias Wessendorf
ok, was just a question :) they logos look all great, but I guess only one makes it. will be very hard!!! On 8/14/06, Craig McClanahan <[EMAIL PROTECTED]> wrote: On 8/14/06, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: > > Forward ... > > -- Forwarded message -- > From: Matthi

Re: Logo contest

2006-08-15 Thread James Mitchell
I agree. IMHO, limiting this to one entry per person will only stifle creativeness and may lead to rampant dissociative disorders, including, but not limited to -- The infamous dakotajack syndrome (read: multiple personality disorder ;) -- James Mitchell 678.910.8017 On Aug 14, 2006,

Re: Logo contest

2006-08-17 Thread Sean Schofield
I suggest when it comes time to vote we pick our top 5 and rank order them. We can give 5 points to the first choice, 4 points to the second, etc. The top 5 point getters could then be announced and we could vote based on those. I'm assuming the decision will be a committer vote but do we want

Re: Logo contest

2006-08-17 Thread Greg Reddin
The requirement for a CLA was mentioned at some point. If that is a requirement we should probably filter out al entries for which a CLA has not been filed. Then we could give each remaining entry a number and issue a vote like this: [ ] 1 (Link) [ ] 2 (Link) Please check your top 5 choi

Re: Logo contest

2006-08-17 Thread James Mitchell
So, to recap, when the deadline is reached, a vote will be taken for all the entries. The more entries ranked, the better the outcome, so it would probably be best to go with a top 10 ranking. The important point is in how the ranking works. I think I am hearing 2 different types of votin

Re: Logo contest

2006-08-17 Thread Greg Reddin
On Aug 17, 2006, at 2:13 PM, James Mitchell wrote: For example (3 votes per person): Craig Sean James Greg Wendy Image 1005xx x <- tie ... except I think a better listing would be: Image 1005 3 binding, 15 non-binding. Image 1006 2 binding, 10 non

Re: Logo contest

2006-08-17 Thread delbd
My 2 cents: Have everyone mark the logos they like, that is don't restrict to a top 5 or top 4 or whatever. Extract from this the top 3 most liked logos. If there is a tie extends to top 4, top 5 or whatever Do a second run, where voters can only choose 1 of the 3 remaining logos. btw, who is

Re: Shale dialogs

2006-08-21 Thread Craig McClanahan
On 8/21/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi There was a hint on the list a little back that a solution for the Dialogs problems was near - Any progress on this http://issues.apache.org/struts/browse/SHALE-175 http://issues.apache.org/struts/browse/SHALE-48 I'm not sure "near

Re: Shale dialogs

2006-08-21 Thread Sean Schofield
n Sendt: 21. august 2006 19:35 Til: user@shale.apache.org Emne: Re: Shale dialogs On 8/21/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi > > There was a hint on the list a little back that a solution for the Dialogs > problems was near - Any progress on this > >

Re: Shale dialogs

2006-08-21 Thread Craig McClanahan
g melding- > Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] På vegne av Craig > McClanahan > Sendt: 21. august 2006 19:35 > Til: user@shale.apache.org > Emne: Re: Shale dialogs > > On 8/21/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > Hi > &

Re: Shale book

2006-09-19 Thread Wendy Smoak
On 9/19/06, Adrian Mitev <[EMAIL PROTECTED]> wrote: Hi guys! These days i found in emule a pdf called struts-shale.pdf and there was the documentation from the web site. Is this auto generated and is it there something like that for the newest documentation of shale? It was auto-generated duri

Re: Shale book

2006-09-19 Thread Liuzhr
Wendy, Could you send a copy of this pdf to me ? Thanks Zhaoren 2006/9/20, Wendy Smoak <[EMAIL PROTECTED]>: On 9/19/06, Adrian Mitev <[EMAIL PROTECTED]> wrote: > Hi guys! These days i found in emule a pdf called struts-shale.pdf and > there was the documentation from the web site. Is this aut

Re: Shale book

2006-09-19 Thread Wendy Smoak
On 9/19/06, Liuzhr <[EMAIL PROTECTED]> wrote: Could you send a copy of this pdf to me ? Sorry, the Maven 2 build does not currently generate a PDF. I'm aware of two options for creating PDFs with Maven 2. One is the Maven Doxia project, and the other is a Docbook plugin (actually, I think th

Re: common areas

2006-09-19 Thread Irv Salisbury
Ok, so gmail just sent the above without me getting to finish. I must have hit some weird quick key... Would I just setup multiple .jspf pages and include them at the appropriate time? Or is there a way to do: <@renderPageCss> <@pageTitle> etc. (I have done thing

Re: common areas

2006-09-19 Thread Gary VanMatre
>From: "Irv Salisbury" <[EMAIL PROTECTED]> > > Ok, so gmail just sent the above without me getting to finish. I must have > hit some weird quick key... > > Would I just setup multiple .jspf pages and include them at the appropriate > time? Or is there a way to do: > > > > > >

Re: common areas

2006-09-20 Thread Irv Salisbury
I am glad you sent this to me. Clay feels a lot more natural to me. As it seems with all things JSF related, there are many different ways to accomplish the same thing. It seems like templating is the same way, even inside clay. Of the ways listed, which one do you use/prefer for templating wi

Re: common areas

2006-09-20 Thread Wendy Smoak
On 9/20/06, Irv Salisbury <[EMAIL PROTECTED]> wrote: Of the ways listed, which one do you use/prefer for templating with Clay? Gary, can you list the different ways to use Clay in order of complexity (or some other metric that makes sense to you) and explain when a user might want to choose on

Re: common areas

2006-09-20 Thread Gary VanMatre
>From: "Irv Salisbury" <[EMAIL PROTECTED]> > > I am glad you sent this to me. Clay feels a lot more natural to me. As it > seems with all things JSF related, there are many different ways to > accomplish the same thing. It seems like templating is the same way, even > inside clay. > There are

Re: ViewController JavaDoc

2006-10-06 Thread Rahul Akolkar
On 10/6/06, Brad Smith <[EMAIL PROTECTED]> wrote: When I browse the javadocs for Shale Core at http://shale.apache.org/shale-core/apidocs/index.html I do not see a package for ViewController (e.g. org.apache.shale.view). Am I missing something? Moved recently out of shale-core as part of SHA

Re: ViewController JavaDoc

2006-10-06 Thread Brad Smith
Excellent, Thank you Rahul. I recommend that the links to Shale View also be added to http://shale.apache.org/index.html#documentation Brad On Fri, 2006-10-06 at 20:31 -0400, Rahul Akolkar wrote: > On 10/6/06, Brad Smith <[EMAIL PROTECTED]> wrote: > > When I browse the javadocs for Shale Core at

Re: ViewController JavaDoc

2006-10-06 Thread Rahul Akolkar
On 10/6/06, Brad Smith <[EMAIL PROTECTED]> wrote: Excellent, Thank you Rahul. I recommend that the links to Shale View also be added to http://shale.apache.org/index.html#documentation Agreed. I suspect it will be taken care of as part of a larger site revamp dealing with the new modules comi

Re: ViewController problem

2006-10-13 Thread Craig McClanahan
On 10/13/06, Deady <[EMAIL PROTECTED]> wrote: I've read about shale and tried to use it, but got a problem. I have 2 beans: image$list - in request scope (previously it was normal sessionScope bean) imageBean - in session scope I have page with images. In generated page there is list of grou

Re: calling authors

2006-10-25 Thread Matthias Wessendorf
I am writing one on Trinidad for the German Java Magazine, maybe we can translate it later (deadline is december 20th or so) (I know I need to send you the portlet article too :) ) -M On 10/25/06, Kito D. Mann <[EMAIL PROTECTED]> wrote: Hello, I'm currently looking for people who are interest

Re: calling authors

2006-10-26 Thread Wesley Hales
Hi Kito - I am currently working on a productio RIA of Myfaces/Tomahawk/Trinidad/IceFaces/Ajax4JSF/Facelets all rolled up into one solution. As you know each project has its strengths! I did all of the R&D and prototyping for the current company I am consulting for. Anyway, I would be very intere

Re: failure notice

2006-11-09 Thread James Mitchell
The message says that your spam score is too high, try resending as text (not html). Copying user@ so others can see this as well (this pertains to any list at apache, not just shale) -- James Mitchell 678.910.8017 On Nov 9, 2006, at 7:58 AM, chand sekhar wrote: hi James, I am tring

Re: Modelling dialogs

2006-12-04 Thread Rahul Akolkar
On 12/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi I guess this is first and foremost targeted at Rahul: Does anybody know of an opensource tool (preferably Eclipse based) that will let you model Dialogs flow (i.e Statediagrams) and from that create scxml files? None that I'm awar

Re: Modelling dialogs

2006-12-04 Thread Rahul Akolkar
D] Sendt: 4. desember 2006 20:33 Til: user@shale.apache.org Emne: Re: Modelling dialogs On 12/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi > > I guess this is first and foremost targeted at Rahul: Does anybody know of an opensource tool (preferably Eclipse based)

Re: EL question

2007-01-16 Thread Craig McClanahan
On 1/16/07, JS Portal Support <[EMAIL PROTECTED]> wrote: Hi, Maybe an ignorant (and more a simple JSP) question, but I can't seem to figure out how to make an EL call that does: org.apache.lucene.document.Document.get(String nameOfField) I have my Hits (wrapped in a custom HitsToListWra

RE: EL question

2007-01-16 Thread JS Portal Support
lto:[EMAIL PROTECTED] On Behalf Of Craig McClanahan Sent: Wednesday, January 17, 2007 2:45 AM To: user@shale.apache.org Subject: Re: EL question On 1/16/07, JS Portal Support <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Maybe an ignorant (and more a simple JSP) question, but I

Re: Startup Error

2007-01-17 Thread Rahul Akolkar
On 1/17/07, Reynolds, James <[EMAIL PROTECTED]> wrote: My app isn't starting and I think it's due to the dialog configuration. I don't have any dialogs set up, but the error messages seem to relate to this feature. I've googled the error without success. Any suggestions on this one? I'm using

RE: Startup Error

2007-01-17 Thread Reynolds, James
/WEB-INF/dialog-config.xml The error stems from a connection time out. Could this be related to a firewall issue? Good luck at the Conference! -Original Message- From: Rahul Akolkar [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 17, 2007 10:39 AM To: user@shale.apache.or

Re: Startup Error

2007-01-17 Thread Craig McClanahan
Craig Good luck at the Conference! -Original Message- From: Rahul Akolkar [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 17, 2007 10:39 AM To: user@shale.apache.org Subject: Re: Startup Error On 1/17/07, Reynolds, James <[EMAIL PROTECTED]> wrote: > My app isn't starting

RE: Startup Error

2007-01-18 Thread Reynolds, James
catalina.core.ApplicationContext log -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Craig McClanahan Sent: Wednesday, January 17, 2007 6:39 PM To: user@shale.apache.org Subject: Re: Startup Error On 1/17/07, Reynolds, James <[EMAIL PR

RE: Startup Error

2007-01-18 Thread Gary VanMatre
>From: "Reynolds, James" <[EMAIL PROTECTED]> > > Thanks Craig, > > I changed the dialog dtd to the scxml version as you showed me. > However, it's still trying to load the basic dialog. Do I need to > manuall register a copy of this dtd somewhere? > > I'm also getting an error for my faces-c

Re: Startup Error

2007-01-18 Thread Greg Reddin
On 1/18/07, Gary VanMatre <[EMAIL PROTECTED]> wrote: I had not realized that facelets was a subproject of JSF 1.2 . Humm interesting... That is interesting. I guess it's just a subproject of the java.netproject. It's not actually part of the spec is it? Greg

Re: Startup Error

2007-01-18 Thread Craig McClanahan
On 1/18/07, Greg Reddin <[EMAIL PROTECTED]> wrote: On 1/18/07, Gary VanMatre <[EMAIL PROTECTED]> wrote: > > I had not realized that facelets was a subproject of JSF 1.2 > . Humm interesting... That is interesting. I guess it's just a subproject of the java.netproject. It's not actuall

Re: Startup Error

2007-01-18 Thread Gary VanMatre
>From: "Greg Reddin" <[EMAIL PROTECTED]> > > On 1/18/07, Gary VanMatre wrote: > > > > I had not realized that facelets was a subproject of JSF 1.2 > > . Humm interesting... > > > That is interesting. I guess it's just a subproject of the > java.netproject. It's not actually part of the

RE: Startup Error

2007-01-18 Thread Reynolds, James
Using Facelets (on its own) I am able to run JSF 1.2 on Tomcat 5.5.17. I guess the trouble starts when I start to mix in other technologies. I'll need to re-evaluate my setup. -Original Message- From: Gary VanMatre [mailto:[EMAIL PROTECTED] Sent: Thursday, January 18, 2007 12:19

Re: Startup Error

2007-01-18 Thread Gary VanMatre
>From: "Craig McClanahan" <[EMAIL PROTECTED]> > > On 1/18/07, Greg Reddin wrote: > > > > On 1/18/07, Gary VanMatre wrote: > > > > > > I had not realized that facelets was a subproject of JSF 1.2 > > > . Humm interesting... > > > > > > That is interesting. I guess it's just a subproject

Re: Startup Error

2007-01-18 Thread Craig McClanahan
On 1/18/07, Gary VanMatre <[EMAIL PROTECTED]> wrote: >From: "Craig McClanahan" <[EMAIL PROTECTED]> > > On 1/18/07, Greg Reddin wrote: > > > > On 1/18/07, Gary VanMatre wrote: > > > > > > I had not realized that facelets was a subproject of JSF 1.2 > > > . Humm interesting... > > > > > > That

Re: Shale ExceptionHandling

2007-01-19 Thread Craig McClanahan
On 1/19/07, Reynolds, James <[EMAIL PROTECTED]> wrote: I have a question about the org.apache.shale.view.ExceptionHandler interface. Comments in the Shale Wiki indicate that Shale "...can optionally do a RequestDispatcher.forward() call to the context relative path of an error display page..."

Re: Shale ExceptionHandling

2007-01-19 Thread Gary VanMatre
From: "Reynolds, James" <[EMAIL PROTECTED]> > > I have a question about the org.apache.shale.view.ExceptionHandler > interface. Comments in the Shale Wiki indicate that Shale "...can > optionally do a RequestDispatcher.forward() call to the context relative > path of an error display page..."

Re: Shale ExceptionHandling

2007-01-20 Thread Duong BaTien
Hello Craig: I am trying to look at shale-apps/shale-test-view to see an example of ViewController exception handling. I download from svn and try to build it from mvn but get the following exception: The plugin 'org.codehaus.mojo:cobertura-maven-plugin' does not exist or no valid version could b

Re: Shale ExceptionHandling

2007-01-20 Thread Craig McClanahan
On 1/20/07, Duong BaTien <[EMAIL PROTECTED]> wrote: Hello Craig: I am trying to look at shale-apps/shale-test-view to see an example of ViewController exception handling. I download from svn and try to build it from mvn but get the following exception: The plugin 'org.codehaus.mojo:cobertura-m

Re: Shale ExceptionHandling

2007-01-21 Thread Duong BaTien
Hello Craig: Thank for a quick response. I downloaded the 1.1.0-SNAPSHOT but cannot find a binary for trunk/shale-apps/*. Do you think it will be available soon? What is the difference between shale-apps and shale-application directories? On Sat, 2007-01-20 at 17:43 -0800, Craig McClanahan wrote:

Re: Shale ExceptionHandling

2007-01-21 Thread Craig McClanahan
On 1/21/07, Duong BaTien <[EMAIL PROTECTED]> wrote: Hello Craig: Thank for a quick response. I downloaded the 1.1.0-SNAPSHOT but cannot find a binary for trunk/shale-apps/*. Each individual application is packaged and uploaded separately. The test apps are in [1]. Do you think it will be a

Re: Shale ExceptionHandling

2007-01-21 Thread Duong BaTien
On Sun, 2007-01-21 at 14:20 -0800, Craig McClanahan wrote: Thanks. I got it. > On 1/21/07, Duong BaTien <[EMAIL PROTECTED]> wrote: > > > > Hello Craig: > > Thank for a quick response. I downloaded the 1.1.0-SNAPSHOT but cannot > > find a binary for trunk/shale-apps/*. > > > Each individual appl

Re: and i18n

2007-01-21 Thread Craig McClanahan
On 1/21/07, JS Portal Support <[EMAIL PROTECTED]> wrote: Hi, My backing beans set some info messages though calling the .info("message"). The messages I set however are ResourceBundle id's. In my JSP's I then want to collect the id and present the message. I have: Which now nicely displays m

RE: setting rowStyleClass

2007-01-26 Thread Ian.Priest
See https://issues.apache.org/jira/browse/TOMAHAWK-523 for problem and work-around. Cheers, Ian. > -Original Message- > From: Ian.Priest [mailto:[EMAIL PROTECTED] > Sent: 26 January 2007 15:30 > To: user@shale.apache.org > Subject: setting rowStyleClass > > Hi, > > > > I seem to have

RE: setting rowStyleClass

2007-01-26 Thread Gary VanMatre
>From: "Ian.Priest" <[EMAIL PROTECTED]> > > See https://issues.apache.org/jira/browse/TOMAHAWK-523 for problem and > work-around. > Hey, what do you know, facelets has the same problem :--). Thanks for reporting the work around. > Cheers, > Ian. > Gary > > > -Original Message

RE: Shale + Ajax4jsf

2007-01-31 Thread Reynolds, James
Apparently, the shale-view.jar is the culprit that is breaking ajax4jsf in my app. Using trial and error, I removed various components of my app until the a4j "Echo" example worked. Even with *all* Shale settings removed from my web.xml, just adding the shale-view.jar to my project breaks it.

Re: Shale + Ajax4jsf

2007-02-01 Thread Danny Worm
Hi, I'm currently using JSF 1.2, Facelets, Tomahawk & Sandbox and Shale. Now I want to integrate Ajax4Jsf and I have some trouble too. Tomorrow I will trying to extract Shale and fit in Ajax4jsf to solve the errors. I got some conflicts with duplicated component - ID's after an post-request.

Re: Shale + Ajax4jsf

2007-02-02 Thread Craig McClanahan
On 2/2/07, Worm, Danny <[EMAIL PROTECTED]> wrote: Hi again, I've successfully integrate Ajax4Jsf without Shale. But I don't understand the problem. I hope my report in the extern forum can help to solve the problem, because I'm very interested in shale :-) But I've to use ajax4jsf. I plan to

Re: Clay challange

2007-02-13 Thread Ryan Wynn
On 2/13/07, Hermod Opstvedt <[EMAIL PROTECTED]> wrote: Hi I'm struggling with a component that I have defined:

RE: Clay challange

2007-02-13 Thread hermod.opstvedt
@shale.apache.org; [EMAIL PROTECTED] Subject: Re: Clay challange On 2/13/07, Hermod Opstvedt <[EMAIL PROTECTED]> wrote: > Hi > > I'm struggling with a component

<    1   2   3   4   5   6   7   8   9   10   >