[shale] Using with JSF 1.2 and JSTL

2006-06-20 Thread Bahadır Yağan
Hi, I think shale has an incompability with JSF 1.2. The following code piece works fine without the shale-core.jar When I include shale-core.jar I get javax.servlet.jsp.JspTagException: Don't know how to iterate over supplied "items" in T

[shale] subviews with backing beans

2006-06-06 Thread Bahadır Yağan
Hi. With shale's ViewController a managed bean named "index" is automatically associated with index.jsp. What I need is to have the same for subviews. Say, I included "loginForm.jsp" from index.jsp, is it possible to have the same association with my backing bean "loginForm" ? I don't know i

[OT] Choosing Java EE version for new projects

2006-04-14 Thread Bahadır Yağan
I want to ask your ideas about using Java EE 5. We are going to start coding a new project within a month. Do you see any problems using EE 5? We will mostly use these technologies: JSF, Shale, JMS, JAAS and web services I liked the new features in JSF 1.2 and Unified EL. But I dont feel very

Re: [JSF] Sun's feedback programs site

2006-01-20 Thread Bahadır Yağan
Legolas Woodland wrote: can you please let me know the Netcraft url ? In their last post feedback Program people said that it is running on sun. so it would be good to know that , whether they are true or not . http://toolbar.netcraft.com/site_report?url=http://feedbackprograms.sun.com And t

Re: [JSF] Sun's feedback programs site

2006-01-20 Thread Bahadır Yağan
Legolas Woodland wrote: Who told you this ? The server is running on solaris and in SUN hardware. there is not .net crap in sun site. There is aspx extention on some pages and netcraft says it is Windows 2003. I am not talking about sun.com. I am talking about *https://feedbackprograms.sun.co

[JSF] Sun's feedback programs site

2006-01-20 Thread Bahadır Yağan
I may be wrong but I think *feedbackprograms.sun.com *uses ASPX on a windows 2003 server. Isn't something wrong with this situation? I mean, I use this site to submit my feedbacks about "Sun Java Studio Creator 2 Early Access", which is promoted with its JSF features. And a site related with th

validation javascripts

2005-12-10 Thread Bahadır Yağan
Hi, Is there a way to change the behavior of the validation plug-in, to print the errors inside the page rather than showing them in a message box. Thanks. -- Bahadir Yagan - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: [Shale] Using standalone tiles?

2005-11-28 Thread Bahadır Yağan
I am getting a similar error with totally different configuration(struts 1.2, no shale of jsf). Apache web site seems down (or I can not reach it) so tomcat could not fetch the dtd files. I think the problem is related to that. Bjørn T Johansen wrote: I am using JSF, Shale and tiles (tiles-n

Re: page context

2005-11-25 Thread Bahadır Yağan
Sorry, my forward was defined as redirect="true". Now it works, thanks. So one other question. Is is normal to write an Action for every page, to register these variables.(no forms in page so far.) Or there is a simpler solution? Bahadır Yağan wrote: I tried it but couldn't

Re: page context

2005-11-25 Thread Bahadır Yağan
I tried it but couldn't get it working. Here is my code: Action: request.setAttribute("clist", clist); JSP: href="sunum.jsp?cid=${category.cid}">${category.name} ps: no it is not a form bean. Gareth Evans wrote: request.setAttribute() ? B

page context

2005-11-25 Thread Bahadır Yağan
Hi! Is there a way to register a bean from inside an Action, only for the next response. I have data to display on a JSP page. But it will only be needed for that page, so registering it to session seems an overhead to me. -- Bahadir Yagan ---