Canalblog
Editer l'article Suivre ce blog Administration + Créer mon blog
Publicité
Notre Temps
29 septembre 2010

I've got a problem with

I've got a problem with ....
-------------------------------------------------------------------
Using the dos command FindStr to serach files matching some text
see the doc available at http://www.computerhope.com/findstr.htm
you can also doing findstr /? at command prompt.

I used the following command to search files containing "runtime" text and redirecting the result into a file.

C:\Work\Projects\FaillesSecurite\Prod_env>findstr /I /M "runtime" *.bat >lisetbat.txt

/M : this ooption is to print only the name of files.
/I : Specifies that the search is not to be case-sensitive.

if you omit the /I option the serach will be case sensitive.

there is several options can be used in the search see documentation.

---------------------------------------------------------------------
JSF Facelets Tools Tutorial : login page
http://download.oracle.com/docs/cd/E15315_06/help/org.eclipse.jst.jsf.facelet.doc.user/html/gettingstarted/tutorial/JSF%20Facelets%20Tools%20Tutorial.html

http://www.developer.com/java/web/article.php/10935_3867851_1/JSF-20-Views-Hello-Facelets-Goodbye-JSP.htm

the main advantage of Facelets technology is the page-templating feature. The header and footer information is common to all pages. Including those in all the individual pages would quickly become a maintenance nightmare. To avoid this, you define a Facelets template that defines a generic layout to all the view pages with the scope for customization.

Facelets Features
In Facelets, the pages are compiled to an abstract syntax component tree, which gets built to a UIComponent hierarchy during runtime. The Facelets tags don't need declaration in a tag library descriptor (TLD) file. The attributes in the tag are dynamic; they automatically get mapped to the properties. One of the main Facelets features not available in JSP is page templating. In addition, Facelets are faster in execution than JSPs.

Post a comment
Email Article
Print Article
Share Articles  Digg  del.icio.us  Slashdot  DZone  Reddit  StumbleUpon  Facebook  FriendFeed  Furl  Newsvine  Google  LinkedIn  MySpace  Technorati  Twitter  Windows Live  YahooBuzz Facelets pages are authored using XHTML, and they provide good expression language (EL) support. Facelets also leverage the concept of XML namespaces to support these tag libraries:

JSF HTML Tag Library
JSF Core Tag Library
JSTL Core Tag Library
JSTL Functions Tag Library
JSF Facelets Tag Library
The idea behind authoring Facelets using XHTML is to make them portable across diverse development platforms. Because JSF is authored using XHTML pages, which conform to DTD, Facelets have the .xhtml extension. To use Facelets in a JSF application, you must set the following context parameters in web.xml:

<context-param>
    <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
    <param-value>.xhtml</param-value>
</context-param>
<context-param>
    <param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name>
    <param-value>true</param-value>
</context-param>

JSF Tools tutorial - Build a JSF 2.0 application : login page and navigation rule
http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.jst.jsf.doc.user/html/gettingstarted/tutorial/JSFTools_tutorial_JSF20.html
----------------------------------------------------------

implemented the session expired page
http://stackoverflow.com/questions/1438351/redirecting-on-session-timeout-in-jsf-richfaces-facelet

http://docs.jboss.org/richfaces/latest_3_3_X/en/devguide/html/ArchitectureOverview.html#RequestErrorsAndSessionExpirationHandling

il faut s'inscrire dans ce forum tres rapidement
http://www.developpez.net/forums/d746801/java/developpement-web-java/frameworks/jsf/expiration-session/

tres utile : http://lmellouk.developpez.com/tutoriels/jsf/richfaces/#LIX-O

i want to handle session timeout exception in our application. how can i redirect user to session timeout page.

Hello,

Have you tried defining error-page for view expired exception?

https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=697

http://www.developpez.net/forums/d789389/java/developpement-web-java/frameworks/jsf/exclure-login-page-session-timeout/

http://www.coderanch.com/t/213277/JSF/java/Session-time-out-JSF

after servlet mapping et before welcome file list
  <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>

Redirecting on session timeout in JSF-Richfaces-facelet
http://www.answerspice.com/c119/1586237/redirecting-on-session-timeout-in-jsfrichfacesfacelet

best practice for handling this expcetion

http://www.weask.us/tag/handling-expired-viewstate-jsf-richfaces

http://www.servlets.com/archive/servlet/ReadMsg?msgId=608717&listName=struts-user

http://www.weask.us/entry/handling-lsquo-session-expired-rsquo-jsf-web-application-running-jboss-5

http://www.java2s.com/Code/Java/Servlets/Servletsessionlistener.htm

http://www.weask.us/entry/handling-lsquo-session-expired-rsquo-jsf-web-application-running-jboss-5

http://techieexchange.wordpress.com/2008/02/21/jsf-session-expired-timeout-solution/

http://iamajavadeveloper.blogspot.com/2009/09/jsf-sesion-timeout-handling.html

http://forums.sun.com/thread.jspa?forumID=427&threadID=523120

http://www.philo5.com/Je%20pense,%20donc%20j'ecris/960815%20Comment%20mon%20cortex%20fonctionne-t-il.htm

Publicité
Publicité
Commentaires
R
After read blog topic's related post now I feel my research is almost completed. happy to see that.Thanks to share this brilliant matter.
Notre Temps
Publicité
Albums Photos
Publicité