[jboss-user] [JBoss Seam] - Highlighting Selected Item in SelectManyCheckbox

2007-06-20 Thread jhimmel
When we use a selectManyCheckbox tag, is there a way to change the font weight 
of an item we check to bold?  Can the font weight be changed back to normal 
when we unselect that item?  

Thanks.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4056152#4056152

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4056152
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Comments on a Webpage that Uses Seam

2007-06-06 Thread jhimmel
What is the correct syntax for creating comments on a .xhtml webpage that uses 
JSF and Seam?



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4051734#4051734

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4051734
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Could not instantiate Seam component

2007-05-21 Thread jhimmel
I wanted to practice creating a Seam web application that uses a stateful 
session bean (using the EJB 3.0 standard).  So I created a simple application 
with 2 pages, a session bean, and its local interface.  The idea was for the 
user to type in his name and click on the submit button.  The application is 
supposed to go to the second page and display the name that was typed in.  The 
goal here is to maintain field state across web pages.

However, when I ran the application, I received the following error: Could not 
instantiate Seam component.  I noticed that in the stack trace, there was a 
point where it said stateful not bound.What am I missing?  

Here is the code for the first xhtml page:


  | ?xml version=1.0 encoding=ISO-8859-1 ?
  | !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
  | ui:composition xmlns=http://www.w3.org/1999/xhtml;
  | xmlns:s=http://jboss.com/products/seam/taglib;
  | xmlns:ui=http://java.sun.com/jsf/facelets;
  | xmlns:f=http://java.sun.com/jsf/core;
  | xmlns:h=http://java.sun.com/jsf/html; template=layout/template.xhtml
  | ui:define name=body
  | h:form
  | Enter Your Name: h:inputText id=YourNameInputText
  | value=#{personName.name} /
  | h:commandButton id=CommandBtnSubmit type=submit
  | value=Submit Your Name 
action=#{personName.sayHello} /
  | /h:form
  | /ui:define
  | /ui:composition
  | 

Here is the code for the second xhtml page:

  | ?xml version=1.0 encoding=ISO-8859-1 ?
  | !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
  | ui:composition xmlns=http://www.w3.org/1999/xhtml;
  | xmlns:s=http://jboss.com/products/seam/taglib;
  | xmlns:ui=http://java.sun.com/jsf/facelets;
  | xmlns:f=http://java.sun.com/jsf/core;
  | xmlns:h=http://java.sun.com/jsf/html; template=layout/template.xhtml
  | ui:define name=body
  | h:form
  | Welcome h:outputText value=#{personName.name} 
id=testStateful2OutputText/
  | /h:form
  | /ui:define
  | /ui:composition
  | 
  | 

Here is the local interface:

  | package com.pmacui;
  | 
  | import javax.ejb.*;
  | import java.util.*;
  | 
  | @Local
  | public interface IYourNameLocal
  | {
  | public String sayHello ();
  | public void destroy ();
  | }
  | 
  | 

Here is the session bean:

  | package com.pmacui;
  | 
  | import javax.ejb.*;
  | import org.jboss.seam.annotations.*;
  | import org.jboss.seam.ejb.*;
  | 
  | import static org.jboss.seam.ScopeType.SESSION;
  | 
  | @Stateful
  | @Name(personName)
  | @Scope (SESSION)
  | public class YourNameAction implements IYourNameLocal
  | {
  | @In @Out   
  | private String name;
  | 
  | public String GetName() { return this.name; }
  | public void SetName(String name) { this.name = name; }
  | 
  | public String sayHello ()
  | {
  | return /testStateful2.xhtml;
  | } 
  |
  | @Remove @Destroy
  | public void destroy ()
  | {   }
  | }  // end of class YourNameAction
  | 
  | 

Here is the part of the stack trace that displayed on the error page:


org.jboss.seam.InstantiationException: Could not instantiate Seam component: 
personName
at org.jboss.seam.Component.newInstance(Component.java:1740)
at org.jboss.seam.Component.getInstance(Component.java:1643)
at org.jboss.seam.Component.getInstance(Component.java:1610)
at 
org.jboss.seam.jsf.SeamVariableResolver.resolveVariable(SeamVariableResolver.java:53)
at 
org.apache.myfaces.config.LastVariableResolverInChain.resolveVariable(LastVariableResolverInChain.java:42)
at 
com.sun.facelets.el.LegacyELContext$LegacyELResolver.getValue(LegacyELContext.java:134)
at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:65)
at com.sun.el.parser.AstValue.getValue(AstValue.java:106)
at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
at 
com.sun.facelets.el.TagValueExpression.getValue(TagValueExpression.java:71)
at 
com.sun.facelets.el.LegacyValueBinding.getValue(LegacyValueBinding.java:56)
at javax.faces.component.UIOutput.getValue(UIOutput.java:77)
at 
org.apache.myfaces.shared_impl.renderkit.RendererUtils.getStringValue(RendererUtils.java:217)
at 
org.apache.myfaces.shared_impl.renderkit.html.HtmlTextRendererBase.renderInput(HtmlTextRendererBase.java:135)
at 
org.apache.myfaces.shared_impl.renderkit.html.HtmlTextRendererBase.encodeEnd(HtmlTextRendererBase.java:53)
at 

[jboss-user] [JBoss Seam] - Could not create Component Error

2007-05-21 Thread jhimmel
I tried to run a test page which uses the built-in identity class for logging a 
user in.  When I tried to run the application, I recieved an error which 
included Exception sending context initialized event to listener instance of 
class org.jboss.seam.servlet.SeamListener and java.lang.RuntimeException: 
Could not create Component: org.jboss.seam.security.identity.  

The login page is called loginTestPage.xhtml.  Its code is:


  | ?xml version=1.0 encoding=ISO-8859-1 ?
  | !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
  | ui:composition xmlns=http://www.w3.org/1999/xhtml;
  | xmlns:s=http://jboss.com/products/seam/taglib;
  | xmlns:ui=http://java.sun.com/jsf/facelets;
  | xmlns:f=http://java.sun.com/jsf/core;
  | xmlns:h=http://java.sun.com/jsf/html; template=layout/template.xhtml
  | 
  | ui:define name=body
  | 
  | h:form
  | h2Login Test: Testing authenticate() and identity 
Class/h2
  | br /
  | 
  | User Name: h:inputText id=userName2 
value=#{identity.username}
  | size=16 maxlength=26 required=true /
  | br /
  | Password: h:inputSecret id=password2
  | value=#{identity.password} size=16 
maxlength=26
  | required=true /
  | br /
  | h:commandButton value=Login 
action=#{identity.login} /
  | 
  | br /
  | h:outputLabel id=LoginErrorMessage2
  |
for=password2 styleClass=errorFont
  |
value=#{authenticator.errorMessage} /
  |  
  | 
  | /h:form
  | 
  | /ui:define
  | /ui:composition
  | 
  | 

The webpage uses the standard AuthenticatorAction class, to which I added the 
login code and the local interface.  The local interface code includes the 
following:


  | package com.pmacui;
  | 
  | public interface IAuthenticator
  | {
  | public boolean authenticate();  
  | public String logout();
  | }
  | 
  | 

The AuthenticatorAction class code includes:


  | package com.pmacui;
  | 
  | import java.math.BigInteger;
  | import java.security.MessageDigest;
  | 
  | import javax.naming.Context;
  | import javax.naming.InitialContext;
  | 
  | import org.jboss.seam.annotations.In;
  | import org.jboss.seam.annotations.Logger;
  | import org.jboss.seam.annotations.Name;
  | import org.jboss.seam.core.FacesMessages;
  | import org.jboss.seam.log.Log;
  | import org.jboss.seam.security.Identity;
  | 
  | import com.netcentricinc.pmac.core.account.IAccountManagerLocal;
  | 
  | @Name(authenticator)
  | public class AuthenticatorAction implements IAuthenticator
  | {
  | // Note: In the webpage login.xhtml, remember to replace 
authenticator with
  | // identity when it comes time to use the built in Seam features for 
  | // authentication.  Also remember to change checkLogin back to 
login.
  | @Logger
  | Log log;
  | 
  | @In
  | Identity identity;
  | 
  | //  @EJB(name = AccountManager)
  | //  IAccountManagerLocal accountManagerLocal;
  | 
  | private static final String USER_NAME_CONST = user;
  | private static final String PASSWORD_CONST = pwd;
  | private String username = ;
  | private String password = ;
  | private String sResult = null;
  | private String errorMessage = ;
  | private boolean b_IsLoggedIn = false;
  | 
  | public String getUsername()
  | {
  | return this.username;
  | }
  | public void setUsername(String username)
  | {
  | this.username = username;
  | }
  | public String getPassword()
  | {
  | return password;
  | }
  | public void setPassword(String password)
  | {
  | this.password = password;
  | }
  | public String getResult()
  | {
  | return sResult;
  | }
  | public void setResult(String sres)
  | {
  | this.sResult = sres;
  | }
  | public String getErrorMessage()
  | {
  | return errorMessage;
  | }
  | public void setErrorMessage(String s_error)
  | {
  | this.errorMessage = s_error;
  | }
  | public boolean getB_IsLoggedIn()
  | {
  | return this.b_IsLoggedIn;
  | }
  | public void setB_IsLoggedIn(boolean b_IsLoggedIn)
  | {
  | this.b_IsLoggedIn = b_IsLoggedIn;
  | }
  | 
  | //  TODO we should be able to inject the AccountManager when we 
switch
  | // to JBOSS 4.2 or 5.0
  | //  @EJB(name = AccountManager)
  

[jboss-user] [JBoss Seam] - Creating a JSP Page Using Seam-Gen

2007-05-07 Thread jhimmel
How do we create a JSP page by using Seam-Gen?  Is it possible to create a JSP 
page (for a JSF-Seam application) in Eclipse?  How do we ensure that the Jboss 
server can see the JSP page once we deploy the JSF-Seam application to the 
server and we run the application?

Thanks.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4043735#4043735

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4043735
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: Unable to Run an EAR or WAR File

2007-04-20 Thread jhimmel
Here are more details about the problem.  

If I deploy HelloJSF.war into the deploy folder and go to the 
http://localhost:8080/HelloJSF/ URL, I get the following:

Directory Listing For /


Filename   SizeLast Modified 
greeting.jsp   0.4 kb Tue, 13 Mar 2007 22:04:54 GMT 
hello.jsp0.6 kb Tue, 13 Mar 2007 22:03:00 GMT 


Apache Tomcat/5.5.20

If I click on hello.jsp, I get the following exception report:

HTTP Status 500 - 



type Exception report

message 

description The server encountered an internal error () that prevented it from 
fulfilling this request.

exception 

org.apache.jasper.JasperException

org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:395)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)


root cause 

java.lang.NullPointerException

javax.faces.webapp.UIComponentTag.setupResponseWriter(UIComponentTag.java:929)
javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:310)
org.apache.myfaces.taglib.core.ViewTag.doStartTag(ViewTag.java:70)
org.apache.jsp.hello_jsp._jspx_meth_f_view_0(hello_jsp.java:99)
org.apache.jsp.hello_jsp._jspService(hello_jsp.java:74)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)


note The full stack trace of the root cause is available in the Apache 
Tomcat/5.5.20 logs.




Apache Tomcat/5.5.20

If anyone has experience with this type of problem, please help.  Also, where 
might I learn how to understand the exception report?  Thanks.

- jhimmel

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4039261#4039261

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4039261
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Unable to Run an EAR or WAR File

2007-04-19 Thread jhimmel
I noticed that if I deploy a EAR file or WAR file into the deploy folder of 
JBoss, I am unable to run that application.   Normally, I develop and run JSF 
applications on JBuilder, which runs JBoss.  But if I start JBoss directly and 
type the url of the application in the browser as follows:

http://localhost:8080/ApplicationName/

A directory listing is shown.  If I click on the JSP file that starts the 
application, I get an HTTP Status 500 error.  

This happens even when I try to deploy other applications that work via 
JBuilder.  What went wrong?  How do I isolate the cause of the problem?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4038891#4038891

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038891
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Unable to Run a JSF with JBuilder 2007 and JBoss

2007-02-23 Thread jhimmel
Help! I am still unable to run a JSF application on JBoss when using JBuilder!  
I am new to JSF.  I was able to run a JSF application from JBuilder by using 
the Apache Tomcat server, but not the JBoss server.  When I try to deploy and 
run the application on JBoss, I receive the error I listed below.  I also 
listed the console information below.  If anyone has insight on how to do use 
JBoss from JBuilder 2007 for a JSF application, please enlighten me!  Thanks!

- jhimmel  

HTTP Status 404 - /JSFTutorialAttempt2/login.faces

type Status report
message /JSFTutorialAttempt2/login.faces
description The requested resource (/JSFTutorialAttempt2/login.faces) is not 
available.

Apache Tomcat/5.5.20

Console information:

11:18:07,046 INFO  [Server] Starting JBoss (MX MicroKernel)...
11:18:07,046 INFO  [Server] Release ID: JBoss [Zion] 4.0.5.GA (build: 
CVSTag=Branch_4_0 date=200610162339)
11:18:07,062 INFO  [Server] Home Dir: C:\jboss-4.0.5.GA
11:18:07,062 INFO  [Server] Home URL: file:/C:/jboss-4.0.5.GA/
11:18:07,062 INFO  [Server] Patch URL: null
11:18:07,062 INFO  [Server] Server Name: default
11:18:07,062 INFO  [Server] Server Home Dir: C:\jboss-4.0.5.GA\server\default
11:18:07,062 INFO  [Server] Server Home URL: 
file:/C:/jboss-4.0.5.GA/server/default/
11:18:07,062 INFO  [Server] Server Log Dir: C:\jboss-4.0.5.GA\server\default\log
11:18:07,062 INFO  [Server] Server Temp Dir: 
C:\jboss-4.0.5.GA\server\default\tmp
11:18:07,062 INFO  [Server] Root Deployment Filename: jboss-service.xml
11:18:07,296 INFO  [ServerInfo] Java version: 1.5.0_09,Sun Microsystems Inc.
11:18:07,296 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Client VM 
1.5.0_09-b03,Sun Microsystems Inc.
11:18:07,296 INFO  [ServerInfo] OS-System: Windows 2003 5.2,x86
11:18:07,625 INFO  [Server] Core system initialized
11:18:09,031 INFO  [WebService] Using RMI server codebase: 
http://JHIMMEL03:8083/
11:18:09,046 INFO  [Log4jService$URLWatchTimerTask] Configuring from URL: 
resource:log4j.xml
11:18:12,046 INFO  [ServiceEndpointManager] WebServices: jbossws-1.0.3.SP1 
(date=200609291417)
11:18:12,890 INFO  [Embedded] Catalina naming disabled
11:18:12,937 INFO  [ClusterRuleSetFactory] Unable to find a cluster rule set in 
the classpath. Will load the default rule set.
11:18:12,937 INFO  [ClusterRuleSetFactory] Unable to find a cluster rule set in 
the classpath. Will load the default rule set.
11:18:13,187 INFO  [Http11BaseProtocol] Initializing Coyote HTTP/1.1 on 
http-0.0.0.0-8080
11:18:13,187 INFO  [Catalina] Initialization processed in 250 ms
11:18:13,187 INFO  [StandardService] Starting service jboss.web
11:18:13,187 INFO  [StandardEngine] Starting Servlet Engine: Apache 
Tomcat/5.5.20
11:18:13,218 INFO  [StandardHost] XML validation disabled
11:18:13,234 INFO  [Catalina] Server startup in 47 ms
11:18:13,390 INFO  [TomcatDeployer] deploy, ctxPath=/invoker, 
warUrl=.../deploy/http-invoker.sar/invoker.war/
11:18:13,734 INFO  [WebappLoader] Dual registration of jndi stream handler: 
factory already defined
11:18:14,062 INFO  [TomcatDeployer] deploy, ctxPath=/, 
warUrl=.../deploy/jbossweb-tomcat55.sar/ROOT.war/
11:18:14,187 INFO  [TomcatDeployer] deploy, ctxPath=/jbossws, 
warUrl=.../tmp/deploy/tmp51318jbossws-context-exp.war/
11:18:14,296 INFO  [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, 
warUrl=.../deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
11:18:15,046 INFO  [TomcatDeployer] deploy, ctxPath=/web-console, 
warUrl=.../deploy/management/console-mgr.sar/web-console.war/
11:18:15,546 INFO  [MailService] Mail Service bound to java:/Mail
11:18:15,703 INFO  [RARDeployment] Required license terms exist, view 
META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar
11:18:15,734 INFO  [RARDeployment] Required license terms exist, view 
META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar
11:18:15,765 INFO  [RARDeployment] Required license terms exist, view 
META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar
11:18:15,796 INFO  [RARDeployment] Required license terms exist, view 
META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar
11:18:15,828 INFO  [RARDeployment] Required license terms exist, view 
META-INF/ra.xml in .../deploy/jms/jms-ra.rar
11:18:15,859 INFO  [RARDeployment] Required license terms exist, view 
META-INF/ra.xml in .../deploy/mail-ra.rar
11:18:16,656 INFO  [WrapperDataSourceService] Bound ConnectionManager 
'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 
'java:DefaultDS'
11:18:16,859 INFO  [A] Bound to JNDI name: queue/A
11:18:16,859 INFO  [B] Bound to JNDI name: queue/B
11:18:16,859 INFO  [C] Bound to JNDI name: queue/C
11:18:16,859 INFO  [D] Bound to JNDI name: queue/D
11:18:16,859 INFO  [ex] Bound to JNDI name: queue/ex
11:18:16,875 INFO  [testTopic] Bound to JNDI name: topic/testTopic
11:18:16,890 INFO  [securedTopic] Bound to JNDI name: topic/securedTopic
11:18:16,890 INFO  [testDurableTopic] Bound to JNDI name: topic

[jboss-user] [Beginners Corner] - Re: Inability to Run a JSF Application on JBoss

2007-02-22 Thread jhimmel
Thanks.  After I figured out how to remove the RI from the application on 
JBuilder, I ran this again.  This time I obtained the following error display:

HTTP Status 404 - /JSFTutorialAttempt2/login.faces

type Status report
message /JSFTutorialAttempt2/login.faces
description The requested resource (/JSFTutorialAttempt2/login.faces) is not 
available.

Apache Tomcat/5.5.20

Since I am new to JSF and relatively new to Java, I am not sure what the 
purpose is for a file ending in the ?.faces? suffix.

- jhimmel


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4020621#4020621

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4020621
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Inability to Run a JSF Application on JBoss

2007-02-20 Thread jhimmel
Has anyone created a JSF application on JBuilder 2007 and tried to run it on 
JBoss?  I am having trouble running a JSF application on JBoss from JBuilder.  
I followed a tutorial for JBuilder 2007 for creating a JSF application.  Since 
my company uses the JBoss server, I tried to run the application on the JBoss 
server.  However, I keep getting the following error message:

HTTP Status 500 - 

type Exception report
message 
description The server encountered an internal error () that prevented it from 
fulfilling this request.
exception 
org.apache.jasper.JasperException: No faces context?!

org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)

com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)

com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
root cause 
javax.servlet.ServletException: No faces context?!

org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:843)

org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:776)
org.apache.jsp.login_jsp._jspService(login_jsp.java:109)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)

com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)

com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
root cause 
javax.servlet.jsp.JspException: No faces context?!

org.apache.myfaces.taglib.core.LoadBundleTag.doStartTag(LoadBundleTag.java:74)
org.apache.jsp.login_jsp._jspx_meth_f_loadBundle_0(login_jsp.java:126)
org.apache.jsp.login_jsp._jspService(login_jsp.java:92)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)

com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)

com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
note The full stack trace of the root cause is available in the Apache 
Tomcat/5.5.20 logs.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4019423#4019423

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4019423
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user