Re: problems with struts under j2sdk1.4.0_01

2002-10-18 Thread Thomas Eichberger
Thank you for your help. I saw that line


 at
 org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:242)


but thought it's not important. What a mistake...

Thomas



At 10:37 17.10.2002 -0400, [EMAIL PROTECTED] wrote:




When resolving issues like this, here is one approach you can take:

1. The stack trace tells you exactly where the error occured - it's in the
'root cause' section. In your case, it was at:

 at
 org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:242)

This indicates some sort of JSP error was thrown at line 242 of the class
 org.apache.struts.taglib.bean.MessageTag.

2. Now that you know exactly where the error occured, look at the source
 code. You know which file to look in and what line number from the stack
 trace. In your case, with 1.02 the source code (from the MessageTag.java
 file) reads:



public int doStartTag() throws JspException {

  // Construct the optional arguments array we will be using
  Object args[] = new Object[5];
  args[0] = arg0;
  args[1] = arg1;
  args[2] = arg2;
  args[3] = arg3;
  args[4] = arg4;

  // Retrieve the message string we are looking for
  String message = RequestUtils.message(pageContext, this.bundle,
  this.localeKey, this.key, 
args);
  if (message == null) {
line 242 ->JspException e = new JspException
(messages.getMessage("message.message", key));
RequestUtils.saveException(pageContext, e);
throw e;
}

  // Print the retrieved message to our output writer
ResponseUtils.write(pageContext, message);

  // Continue processing this page
  return (SKIP_BODY);

}

As you can see, I've identified line 242 as the line where the JSPException
is thrown. Great, we found the error!

So, what condition causes this exception to be thrown? The Exception is
thrown if the 'message' parameter is null - meaning that there is no
message in the properties file that corresponds to the key you put in the
message tag.

Check your message tag against your properties file, it looks like you
either have no message in the properties file for the key, or you may have
misspelled the key or something.


btw - there is a chapter in my upcoming book 'Struts Kick Start' that goes
into more detail on debugging these kinds of problems by reviewing the tag
source files

Best of luck,

Kevin

---
Kevin Bedell
Author,. Struts Kick Start







Isabell Schaadt <[EMAIL PROTECTED]> on 10/17/2002 09:34:51 AM

Please respond to "Struts Users Mailing List"
   <[EMAIL PROTECTED]>

To:"Struts Users Mailing List" <[EMAIL PROTECTED]>
cc: (bcc: Kevin Bedell/Systems/USHO/SunLife)
Subject:Re: problems with struts under j2sdk1.4.0_01


Hi Thomas,

thank you for your answer.
The exception message isn't very helpfully. Here it is:

type:   Exception report
message: Internal Server Error
description:  The server encountered an internal error (Internal Server
Error) that
  prevented it from fulfilling this request.

exception:

javax.servlet.ServletException
 at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:471)

 at org.apache.jsp.index$jsp._jspService(index$jsp.java:237)
 at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201)

 at
 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)

 at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)

 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)

 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)

 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)

 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)

 at
org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)

 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)

 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
 at
org.apache.catalina.core.StandardH

Re: problems with struts under j2sdk1.4.0_01

2002-10-18 Thread Kevin . Bedell



When resolving issues like this, here is one approach you can take:

1. The stack trace tells you exactly where the error occured - it's in the
'root cause' section. In your case, it was at:

 at
 org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:242)

This indicates some sort of JSP error was thrown at line 242 of the class
 org.apache.struts.taglib.bean.MessageTag.

2. Now that you know exactly where the error occured, look at the source
 code. You know which file to look in and what line number from the stack
 trace. In your case, with 1.02 the source code (from the MessageTag.java
 file) reads:



public int doStartTag() throws JspException {

  // Construct the optional arguments array we will be using
  Object args[] = new Object[5];
  args[0] = arg0;
  args[1] = arg1;
  args[2] = arg2;
  args[3] = arg3;
  args[4] = arg4;

  // Retrieve the message string we are looking for
  String message = RequestUtils.message(pageContext, this.bundle,
  this.localeKey, this.key, args);
  if (message == null) {
line 242 ->JspException e = new JspException
(messages.getMessage("message.message", key));
RequestUtils.saveException(pageContext, e);
throw e;
}

  // Print the retrieved message to our output writer
ResponseUtils.write(pageContext, message);

  // Continue processing this page
  return (SKIP_BODY);

}

As you can see, I've identified line 242 as the line where the JSPException
is thrown. Great, we found the error!

So, what condition causes this exception to be thrown? The Exception is
thrown if the 'message' parameter is null - meaning that there is no
message in the properties file that corresponds to the key you put in the
message tag.

Check your message tag against your properties file, it looks like you
either have no message in the properties file for the key, or you may have
misspelled the key or something.


btw - there is a chapter in my upcoming book 'Struts Kick Start' that goes
into more detail on debugging these kinds of problems by reviewing the tag
source files

Best of luck,

Kevin

---
Kevin Bedell
Author,. Struts Kick Start







Isabell Schaadt <[EMAIL PROTECTED]> on 10/17/2002 09:34:51 AM

Please respond to "Struts Users Mailing List"
   <[EMAIL PROTECTED]>

To:"Struts Users Mailing List" <[EMAIL PROTECTED]>
cc: (bcc: Kevin Bedell/Systems/USHO/SunLife)
Subject:Re: problems with struts under j2sdk1.4.0_01


Hi Thomas,

thank you for your answer.
The exception message isn't very helpfully. Here it is:

type:   Exception report
message: Internal Server Error
description:  The server encountered an internal error (Internal Server
Error) that
  prevented it from fulfilling this request.

exception:

javax.servlet.ServletException
 at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:471)

 at org.apache.jsp.index$jsp._jspService(index$jsp.java:237)
 at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201)

 at
 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)

 at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)

 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)

 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)

 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)

 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)

 at
org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)

 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)

 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
 at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)

 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)

 at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.jav

Re: problems with struts under j2sdk1.4.0_01

2002-10-18 Thread Isabell Schaadt
Hi Thomas,

thank you for your answer.
The exception message isn't very helpfully. Here it is:

type:   Exception report
message: Internal Server Error
description:  The server encountered an internal error (Internal Server
Error) that 
  prevented it from fulfilling this request.

exception:

javax.servlet.ServletException
at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:471)
at org.apache.jsp.index$jsp._jspService(index$jsp.java:237)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at
org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1027)
at
org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125)
at java.lang.Thread.run(Thread.java:536)


root cause:

javax.servlet.jsp.JspException
at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:242)
at org.apache.jsp.index$jsp._jspService(index$jsp.java:93)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
   

Re: problems with struts under j2sdk1.4.0_01

2002-10-18 Thread Thomas Eichberger
Well, the 1.1beta version should be ok. I use it in production.

Maybe 1.4.1_01 has a problem, and 1.4.1 works. A friend of mine told me 
today he has a problem with the _01 version, too, but it's not a problem 
related to Struts.

However, I would recommend to upgrade to the beta version, and hopefully 
you are lucky then.

Thomas



At 16:12 17.10.2002 +0200, Isabell Schaadt wrote:
The struts 1.0.2 version worked without problems until I installed the
j2sdk1.4.0_01 yesterday.
I have choosen this version because I think it still will be worked on the
beta version and there still may be problems with it.

But if you it is ok I will try it.


I thank you very much for help.



> Oops, very strange.
> As far as I see there is no hint on what is going wrong, unfortunately. I
> think we need help from the Struts developers;-)
>
> Another question: Why do you use Struts 1.0.2 and not the 1.1 Beta? The
> Beta ist quite OK.
>
> Ciao
>
> Thomas
>
>
>
> At 15:34 17.10.2002 +0200, Isabell Schaadt wrote:
> >Hi Thomas,
> >
> >thank you for your answer.
> >The exception message isn't very helpfully. Here it is:
> >
> >type:   Exception report
> >message: Internal Server Error
> >description:  The server encountered an internal error (Internal Server
> >Error) that
> >   prevented it from fulfilling this request.
> >
> >exception:
> >
> >javax.servlet.ServletException
> > at
>
>org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextIm
> pl.java:471)
> > at org.apache.jsp.index$jsp._jspService(index$jsp.java:237)
> > at
> > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> > at
>
>org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.j
> ava:201)
> > at
> > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
> > at
>  org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> > at
>
>org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applicatio
> nFilterChain.java:247)
> > at
>
>org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterC
> hain.java:193)
> > at
>
>org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.j
> ava:243)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 566)
> > at
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > at
> > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > at
>
>org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.j
> ava:190)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 566)
> > at
>
>org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:
> 246)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 564)
> > at
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > at
> > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > at
>
>org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
> > at
>
>org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:18
> 0)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 566)
> > at
>
>org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve
> .java:170)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 564)
> > at
>
>org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:17
> 0)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 564)
> > at
> >org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 564)
> > at
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > at
> > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > at
>
>org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.jav
> a:174)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 566)
> > at
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > at
> > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > at
>
>org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java
> :1027)
> > at
>
>org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:112
> 5)
> > at ja

Re: problems with struts under j2sdk1.4.0_01

2002-10-18 Thread Xue-Feng Yang
I use j2sdk1.4.1. There are no problems.

 --- Isabell Schaadt <[EMAIL PROTECTED]> wrote: > The struts
1.0.2 version worked without problems
> until I installed the
> j2sdk1.4.0_01 yesterday.
> I have choosen this version because I think it still
> will be worked on the
> beta version and there still may be problems with
> it.
> 
> But if you it is ok I will try it.
> 
> 
> I thank you very much for help.
> 
> 
> 
> > Oops, very strange.
> > As far as I see there is no hint on what is going
> wrong, unfortunately. I 
> > think we need help from the Struts developers;-)
> > 
> > Another question: Why do you use Struts 1.0.2 and
> not the 1.1 Beta? The 
> > Beta ist quite OK.
> > 
> > Ciao
> > 
> > Thomas
> > 
> > 
> > 
> > At 15:34 17.10.2002 +0200, Isabell Schaadt wrote:
> > >Hi Thomas,
> > >
> > >thank you for your answer.
> > >The exception message isn't very helpfully. Here
> it is:
> > >
> > >type:   Exception report
> > >message: Internal Server Error
> > >description:  The server encountered an internal
> error (Internal Server
> > >Error) that
> > >   prevented it from fulfilling
> this request.
> > >
> > >exception:
> > >
> > >javax.servlet.ServletException
> > > at
> >
>
>org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextIm
> > pl.java:471)
> > > at
>
org.apache.jsp.index$jsp._jspService(index$jsp.java:237)
> > > at 
> > >
>
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
> > > at
>
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> > > at
> >
>
>org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.j
> > ava:201)
> > > at 
> > >
>
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
> > > at
> > 
>
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
> > > at
>
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> > > at
> >
>
>org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applicatio
> > nFilterChain.java:247)
> > > at
> >
>
>org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterC
> > hain.java:193)
> > > at
> >
>
>org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.j
> > ava:243)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> > 566)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > > at 
> > >
>
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > > at
> >
>
>org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.j
> > ava:190)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> > 566)
> > > at
> >
>
>org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:
> > 246)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> > 564)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > > at 
> > >
>
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > > at
> >
>
>org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
> > > at
> >
>
>org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:18
> > 0)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> > 566)
> > > at
> >
>
>org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve
> > .java:170)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> > 564)
> > > at
> >
>
>org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:17
> > 0)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> > 564)
> > > at
> >
>
>org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> > 564)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > > at 
> > >
>
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > > at
> >
>
>org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.jav
> > a:174)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> > 566)
> > > at
> >
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > > at 
> > >
>
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > > at
> >
>
>org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java
> > :1027)
> > > at
> >
>
>org.apache.catalina.connector

Re: problems with struts under j2sdk1.4.0_01

2002-10-18 Thread flare
> Hi Kevin
> 
> thank you very much for your answer and all the trouble you have taken
> but even the struts-example doesn't work anymore. And I assume that
> this code should be correct.
> 
> So there must be an other thing that causes that all.
> 
> I've already tried anything. I have installed tomcat and struts
> totally new, I've deleted all anent classpath variables and set them
> new ..  I don't know what else remains to be done.

I'm using struts with the newest JDK (1.4.1)+ Resin and everything works, the only 
problem 
I got was a warning message displayed sometimes during the compilation of jsp pages 
(very annoying), but I've solved using jikes instead of javac (which is also faster) 

 regards 

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: problems with struts under j2sdk1.4.0_01

2002-10-18 Thread Isabell Schaadt
Hi Kevin

thank you very much for your answer and all the trouble you have taken but
even the struts-example doesn't work anymore. And I assume that this code
should be correct.

So there must be an other thing that causes that all.

I've already tried anything. I have installed tomcat and struts totally new,
I've deleted all anent classpath variables and set them new ..  I don't know
what else remains to be done.


> 
> 
> 
> When resolving issues like this, here is one approach you can take:
> 
> 1. The stack trace tells you exactly where the error occured - it's in 
> the
> 'root cause' section. In your case, it was at:
> 
>  at
>  org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:24
> 2)
> 
> This indicates some sort of JSP error was thrown at line 242 of the cla
> ss
>  org.apache.struts.taglib.bean.MessageTag.
> 
> 2. Now that you know exactly where the error occured, look at the sourc
> e
>  code. You know which file to look in and what line number from the sta
> ck
>  trace. In your case, with 1.02 the source code (from the MessageTag.ja
> va
>  file) reads:
> 
> 
> 
> public int doStartTag() throws JspException {
> 
>   // Construct the optional arguments array we will be using
>   Object args[] = new Object[5];
>   args[0] = arg0;
>   args[1] = arg1;
>   args[2] = arg2;
>   args[3] = arg3;
>   args[4] = arg4;
> 
>   // Retrieve the message string we are looking for
>   String message = RequestUtils.message(pageContext, this.bundle,
> 
>   this.localeKey, this.key,
>  args);
>   if (message == null) {
> line 242 ->JspException e = new JspException
> (messages.getMessage("message.message", key));
> RequestUtils.saveException(pageContext, e);
> throw e;
> }
> 
>   // Print the retrieved message to our output writer
> ResponseUtils.write(pageContext, message);
> 
>   // Continue processing this page
>   return (SKIP_BODY);
> 
> }
> 
> As you can see, I've identified line 242 as the line where the JSPExcep
> tion
> is thrown. Great, we found the error!
> 
> So, what condition causes this exception to be thrown? The Exception is
> 
> thrown if the 'message' parameter is null - meaning that there is no
> message in the properties file that corresponds to the key you put in t
> he
> message tag.
> 
> Check your message tag against your properties file, it looks like you
> either have no message in the properties file for the key, or you may h
> ave
> misspelled the key or something.
> 
> 
> btw - there is a chapter in my upcoming book 'Struts Kick Start' that g
> oes
> into more detail on debugging these kinds of problems by reviewing the 
> tag
> source files
> 
> Best of luck,
> 
> Kevin
> 
> ---
> Kevin Bedell
> Author,. Struts Kick Start
> 
> 
> 
> 
> 
> 
> 
> Isabell Schaadt <[EMAIL PROTECTED]> on 10/17/2002 09:34:51 AM
> 
> Please respond to "Struts Users Mailing List"
><[EMAIL PROTECTED]>
> 
> To:"Struts Users Mailing List" <[EMAIL PROTECTED]>
> cc: (bcc: Kevin Bedell/Systems/USHO/SunLife)
> Subject:Re: problems with struts under j2sdk1.4.0_01
> 
> 
> Hi Thomas,
> 
> thank you for your answer.
> The exception message isn't very helpfully. Here it is:
> 
> type:   Exception report
> message: Internal Server Error
> description:  The server encountered an internal error (Internal Server
> 
> Error) that
>   prevented it from fulfilling this request.
> 
> exception:
> 
> javax.servlet.ServletException
>  at
> org.apache.jasper.runtime.PageContextImpl.handlePageException(PageConte
> xtImpl.java:471)
> 
>  at org.apache.jsp.index$jsp._jspService(index$jsp.java:237)
>  at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
> 
>  at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>  at
> org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServl
> et.java:201)
> 
>  at
>  org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:38
> 1)
>  at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
>  at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>  at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic
> ationFilterChain.java:247)
> 
>  at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil
> terChain.java:193)
> 
>  a

Re: problems with struts under j2sdk1.4.0_01

2002-10-18 Thread Isabell Schaadt
Thank you David for your answer.

I've taken my projekt over just like it was before without any changes. Do
you know if there are some special thinks to consider using struts under
j2sdk1.4.0_01?
Maybe I made a mistake at the installation and jdk1.3.1 did ignore it in
opposition to j2sdk1.4.0_01.

Can you imagine what it could be?


> I'm sorry I don't know what's wrong but I want to assure you that struts 
> does run under 1.4
> 
> David
> 
> 
> 
> 
> 
> 
> >From: Thomas Eichberger <[EMAIL PROTECTED]>
> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> >To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> >Subject: Re: problems with struts under j2sdk1.4.0_01
> >Date: Thu, 17 Oct 2002 16:00:11 +0200
> >
> >Oops, very strange.
> >As far as I see there is no hint on what is going wrong, unfortunately. I
> 
> >think we need help from the Struts developers;-)
> >
> >Another question: Why do you use Struts 1.0.2 and not the 1.1 Beta? The 
> >Beta ist quite OK.
> >
> >Ciao
> >
> >Thomas
> >
> >
> >
> >At 15:34 17.10.2002 +0200, Isabell Schaadt wrote:
> >>Hi Thomas,
> >>
> >>thank you for your answer.
> >>The exception message isn't very helpfully. Here it is:
> >>
> >>type:   Exception report
> >>message: Internal Server Error
> >>description:  The server encountered an internal error (Internal Server
> >>Error) that
> >>   prevented it from fulfilling this request.
> >>
> >>exception:
> >>
> >>javax.servlet.ServletException
> >> at
>
>>org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:471)
> >> at org.apache.jsp.index$jsp._jspService(index$jsp.java:237)
> >> at 
> >>org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
> >> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> >> at
>
>>org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201)
> >> at 
> >>org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
> >> at 
> >>org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
> >> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> >> at
>
>>org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
> >> at
>
>>org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
> >> at
>
>>org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
> >> at
>
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
> >> at
>
>>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> >> at 
> >>org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> >> at
>
>>org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
> >> at
>
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
> >> at
>
>>org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
> >> at
>
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
> >> at
>
>>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> >> at 
> >>org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> >> at
>
>>org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
> >> at
>
>>org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
> >> at
>
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
> >> at
>
>>org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
> >> at
>
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
> >> at
>
>>org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
> >> at
>
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
> >> at
>
>>org.apache.catalina.valves.AccessLogValve.invoke

Re: problems with struts under j2sdk1.4.0_01

2002-10-17 Thread Isabell Schaadt

The struts 1.0.2 version worked without problems until I installed the
j2sdk1.4.0_01 yesterday.
I have choosen this version because I think it still will be worked on the
beta version and there still may be problems with it.

But if you it is ok I will try it.


I thank you very much for help.



> Oops, very strange.
> As far as I see there is no hint on what is going wrong, unfortunately. I 
> think we need help from the Struts developers;-)
> 
> Another question: Why do you use Struts 1.0.2 and not the 1.1 Beta? The 
> Beta ist quite OK.
> 
> Ciao
> 
> Thomas
> 
> 
> 
> At 15:34 17.10.2002 +0200, Isabell Schaadt wrote:
> >Hi Thomas,
> >
> >thank you for your answer.
> >The exception message isn't very helpfully. Here it is:
> >
> >type:   Exception report
> >message: Internal Server Error
> >description:  The server encountered an internal error (Internal Server
> >Error) that
> >   prevented it from fulfilling this request.
> >
> >exception:
> >
> >javax.servlet.ServletException
> > at
>
>org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextIm
> pl.java:471)
> > at org.apache.jsp.index$jsp._jspService(index$jsp.java:237)
> > at 
> > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> > at
>
>org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.j
> ava:201)
> > at 
> > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
> > at
>  org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> > at
>
>org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applicatio
> nFilterChain.java:247)
> > at
>
>org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterC
> hain.java:193)
> > at
>
>org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.j
> ava:243)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 566)
> > at
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > at 
> > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > at
>
>org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.j
> ava:190)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 566)
> > at
>
>org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:
> 246)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 564)
> > at
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > at 
> > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > at
>
>org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
> > at
>
>org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:18
> 0)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 566)
> > at
>
>org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve
> .java:170)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 564)
> > at
>
>org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:17
> 0)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 564)
> > at
> >org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 564)
> > at
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > at 
> > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > at
>
>org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.jav
> a:174)
> > at
>
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:
> 566)
> > at
>
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> > at 
> > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> > at
>
>org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java
> :1027)
> > at
>
>org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:112
> 5)
> > at java.lang.Thread.run(Thread.java:536)
> >
> >
> >root cause:
> >
> >javax.servlet.jsp.JspException
> > at 
> > org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:242)
> > at org.apache.jsp.index$jsp._jspService(index$jsp.java:93)
> > at 
> > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
> > at javax.se

Re: problems with struts under j2sdk1.4.0_01

2002-10-17 Thread David Graham

I'm sorry I don't know what's wrong but I want to assure you that struts 
does run under 1.4

David






>From: Thomas Eichberger <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>Subject: Re: problems with struts under j2sdk1.4.0_01
>Date: Thu, 17 Oct 2002 16:00:11 +0200
>
>Oops, very strange.
>As far as I see there is no hint on what is going wrong, unfortunately. I 
>think we need help from the Struts developers;-)
>
>Another question: Why do you use Struts 1.0.2 and not the 1.1 Beta? The 
>Beta ist quite OK.
>
>Ciao
>
>Thomas
>
>
>
>At 15:34 17.10.2002 +0200, Isabell Schaadt wrote:
>>Hi Thomas,
>>
>>thank you for your answer.
>>The exception message isn't very helpfully. Here it is:
>>
>>type:   Exception report
>>message: Internal Server Error
>>description:  The server encountered an internal error (Internal Server
>>Error) that
>>   prevented it from fulfilling this request.
>>
>>exception:
>>
>>javax.servlet.ServletException
>> at
>>org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:471)
>> at org.apache.jsp.index$jsp._jspService(index$jsp.java:237)
>> at 
>>org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>> at
>>org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201)
>> at 
>>org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
>> at 
>>org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>> at
>>org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
>> at
>>org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
>> at
>>org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
>> at
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
>> at
>>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>> at 
>>org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>> at
>>org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
>> at
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
>> at
>>org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
>> at
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
>> at
>>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>> at 
>>org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>> at
>>org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
>> at
>>org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
>> at
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
>> at
>>org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
>> at
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
>> at
>>org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
>> at
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
>> at
>>org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
>> at
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
>> at
>>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>> at 
>>org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>> at
>>org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
>> at
>>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
>> at
>>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>> at 
>>org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>> at
>>org.apache.catalina.connector.http.HttpP

Re: problems with struts under j2sdk1.4.0_01

2002-10-17 Thread Thomas Eichberger

Oops, very strange.
As far as I see there is no hint on what is going wrong, unfortunately. I 
think we need help from the Struts developers;-)

Another question: Why do you use Struts 1.0.2 and not the 1.1 Beta? The 
Beta ist quite OK.

Ciao

Thomas



At 15:34 17.10.2002 +0200, Isabell Schaadt wrote:
>Hi Thomas,
>
>thank you for your answer.
>The exception message isn't very helpfully. Here it is:
>
>type:   Exception report
>message: Internal Server Error
>description:  The server encountered an internal error (Internal Server
>Error) that
>   prevented it from fulfilling this request.
>
>exception:
>
>javax.servlet.ServletException
> at
>org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:471)
> at org.apache.jsp.index$jsp._jspService(index$jsp.java:237)
> at 
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> at
>org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201)
> at 
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
> at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> at
>org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
> at
>org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
> at
>org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
> at
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
> at
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> at
>org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
> at
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
> at
>org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
> at
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
> at
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> at
>org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
> at
>org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
> at
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
> at
>org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
> at
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
> at
>org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
> at
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
> at
>org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
> at
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
> at
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> at
>org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
> at
>org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
> at
>org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> at
>org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1027)
> at
>org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125)
> at java.lang.Thread.run(Thread.java:536)
>
>
>root cause:
>
>javax.servlet.jsp.JspException
> at 
> org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:242)
> at org.apache.jsp.index$jsp._jspService(index$jsp.java:93)
> at 
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> at
>org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201)
> at 
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
> at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> at
>org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
> at
>org.apache.catalina.core.ApplicationFilterChain.doFilter(Applicat

Re: problems with struts under j2sdk1.4.0_01

2002-10-17 Thread Thomas Eichberger

What exactly is the problem? What error messages do you get?

Thomas


At 15:13 17.10.2002 +0200, Isabell Schaadt wrote:
>Hi,
>
>I'm working since a few month with jakarta-struts-1.0.2 and
>jakarta-tomcat-4.0.4 under jdk1.3.1.
>Yesterday I convert my java to j2sdk1.4.0_01 but now struts doesn't work
>anymore - even the struts-examples don't work.
>Does struts have problems with the j2sdk1.4.0_01 or do I have to consider
>some special settings? What should I do?
>
>
>
> Selene
>
>--
>+++ GMX - Mail, Messaging & more  http://www.gmx.net +++
>NEU: Mit GMX ins Internet. Rund um die Uhr für 1 ct/ Min. surfen!
>
>
>--
>To unsubscribe, e-mail:   
>For additional commands, e-mail: 


--
To unsubscribe, e-mail:   
For additional commands, e-mail: