t:saveState and SpringBeanFacesELResolver

2010-05-12 Thread Quintin Kerby
I am using JSF RI 1.2 and Tomahawk for JSF 1.2 with built in facelets support. For some reason when I change the following in my faces-config: org.springframework.web.jsf.DelegatingVariableResolver to org.springframework.web.jsf.el.SpringBeanFacesELResolver t:saveState no longer works. All I

Re: Bookmarking and Crawling of JSF

2006-05-13 Thread Quintin Kerby
tered results, using wizards, setting preferences, etc. Google has this same issue with their maps.  Go to maps.google.com and you will see a 'Link to this page' link that redirects you using parameters to get back to that exact page. Quintin Kerby CACI, Inc. Chrisi <[EMAIL PROTECTE

WebLogic 8.1

2006-05-12 Thread Quintin Kerby
lterChainImpl.java:27)         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:326)         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:415)         ... 18 more > Quintin Kerby CACI, Inc.

Re: [OT] Storing files outside of the web context

2006-04-07 Thread Quintin Kerby
;); // Open the file and output streams FileInputStream in = new FileInputStream(file); OutputStream out = response.getOutputStream(); // Copy the contents of the file to the output stream byte[] buf = new byte[1024]; int count = 0; while ((count = in.read(buf)) >= 0) {         out.write

RE: Servlet Filter? I'm stuck

2006-04-07 Thread Quintin Kerby
      }         }         /* (non-Javadoc)          * @see javax.servlet.Filter#destroy()          */         public void destroy() {                 exemptions.clear();         } } Quintin Kerby CACI, Inc. 101questionjsf <[EMAIL PROTECTED]> 04/07/2006 03:46 Please respond to "

Re: MyFaces Facelets Tomahawk Panel Tab Woes

2006-04-06 Thread Quintin Kerby
Been a while.  I think I just dropped it in the lib and added this to my web.xml         <context-param>                 <param-name>facelets.LIBRARIESparam-name>                 <param-value>classpath*:/META-INF/tomahawk.taglib.xmlparam-value>         context-param&g

Re: MyFaces Facelets Tomahawk Panel Tab Woes

2006-04-06 Thread Quintin Kerby
I've used this with really good luck. http://satva.skalasoft.com/~martin/dl/tomahawk-facelets.jar found it here: http://mail-archives.apache.org/mod_mbox/myfaces-commits/200602.mbox/[EMAIL PROTECTED] Quintin Kerby "Travis Alexander" <[EMAIL PROTECTED]> 04/06/2006 15

Re: displayValueOnly not working

2006-04-06 Thread Quintin Kerby
For the record, the tomahawk TLD I am using is <tlib-version>1.0.10tlib-version>.  I use the myfaces-all.jar and tomahawk is supplied with it. I couldn't get #{true} to work.  I also tried t:inputTextArea and no luck.  The best I can do is disabled="true". Quintin Ke

Re: displayValueOnly not working

2006-04-06 Thread Quintin Kerby
Haven't tried #{true} yet, but I did have it resolving to a boolean in my backing bean at first, and tried displayValueOnly="true" as a test. Quintin Kerby CACI, Inc. (904) 596-7040 Dave Brondsema <[EMAIL PROTECTED]> 04/06/2006 11:16 Please respond to "My

displayValueOnly not working

2006-04-06 Thread Quintin Kerby
> It doesn't work with either.   Any guidance? Quintin Kerby