TextArea Wrapping using Form Tags

2001-08-18 Thread Calvin Lau

Is there any way to set the wrapping in a text area
when using the struts form tags?  In HTML you can set
virtual, physical, or none.  Netscape doesn't do any
wrapping by default so large portions of text are lost
when I grab information to display in a textarea to be
modified.

Any ideas?

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/



Re: Index within iterate tags

2001-08-18 Thread martin . cooper

In Struts 1.1, there's an 'indexId' attribute on the  tag
which should do what you want.

--
Martin Cooper


- Original Message -
From: "Nicola Taylor" <[EMAIL PROTECTED]>
To: "Struts-User (E-mail)" <[EMAIL PROTECTED]>
Sent: Tuesday, August 14, 2001 9:00 AM
Subject: Index within iterate tags


> Hi,
>
> were using the indexed properties tags and it'd be useful to know the
> current index in the jsp (to do some javascript stuff).  Is there any
> standard way to access the current index in the iterator?
>
> 1) write a custom tag to return:
> IterateTag iterateTag = (IterateTag) findAncestorWithClass(this,
> IterateTag.class);
> iterateTag.getIndex();
>
> 2) have a counter variable that we increment within the iterate loop.
>
> Cheers
>
>
> **
> This email and any files transmitted with it are confidential and
> intended solely for the use of the individual or entity to whom they
> are addressed. If you have received this email in error please notify
> the system manager.
>
> This footnote also confirms that this email message has been swept by
> MIMEsweeper for the presence of computer viruses.
>
> www.mimesweeper.com
> **
>





Re: How to keep ActionForm in session from being reset?

2001-08-18 Thread martin . cooper

One way of resolving this is to have a hidden field in your forms which
specifies which step is being performed. Then in your reset() method, you
can check which step you are at, and reset (or not) fields as appropriate.

--
Martin Cooper


- Original Message -
From: "Wilhelm Fitzpatrick" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, August 17, 2001 5:18 PM
Subject: How to keep ActionForm in session from being reset?


> I'm trying to use form beans as suggested in the struts documentation,
> where I use a single form across several actions and pages, accumulating
> data as a I go.  Specificially:
>
> I have an Action with constructs the form, prepoulates it with some data,
> then stores it in the session.  This action then forwards to .jsp page
> that displays the form, and collects more data.  When this form is
> submitted, the whole goes to a third Action that does some processing.
>
> At first, I couldn't get this to work until I figured out that the
> framework is calling reset() on the form bean on each action.  So I worked
> around the problem by *not* resent some form fields in the reset call, but
> this seemed like cheating.
>
> Is there are a way in the action mapping to tell the framework *not* to
> reset Form before using it?
>
> -raf
>
>
>





Re: "default action" and templates

2001-08-18 Thread martin . cooper

Two ways you might implement your "default action" are:

1) Define your own base class, derived from Action, whose perform() method
implements your "default action" and defers to the "real" action where
necessary. Your "real" action classes would derive from this class and
implement some realPerform() method instead of perform().

2) Subclass ActionServlet and override processPreprocess() to implement your
"default action". This will only work if your "default action" precedes the
normal behaviour, since that method is called prior to the perform() method.

--
Martin Cooper


- Original Message -
From: "Marcelo Vanzin" <[EMAIL PROTECTED]>
To: "Struts Users" <[EMAIL PROTECTED]>
Sent: Friday, August 17, 2001 3:41 PM
Subject: "default action" and templates


>
> Hi there,
>
> We're working around here to implement Struts as the definitive framework
> for our web applications, and I'm beggining to study it. Comparing it to
> our current "in-house" system, I have come to two problems I could not
> find answers.
>
> 1) A "default action". This is not a "default action" as, for example,
> putting "unknown=true" in the config file, but rather and Action that is
> performed in *every* page that goes through the ActionServlet.
>
> We have some business logic that is performed in every page we have in
> the site, so having some "default action" would fix that just fine.
>
> Also, with the approach suggested in an earlier post of implementing an
> "prePerform" method in the Action class, this could be done also.
>
> 2) I actually had some doubts with the templates, but while writing them
> down I kind of saw some ways of doing what I wanted, so I'll try it and
> later if I'm still stuck I'll cry for help. :-)
>
> --
> []'s
> Marcelo Vanzin
> Touch Tecnologia
> [EMAIL PROTECTED]
> "We're an underground revolution working overtime"
>
>





Re: is the going to be deprecated in the nextrelease of s truts?

2001-08-18 Thread martin . cooper

There have not been any discussions about removing the template taglib, as
far as I'm aware. I believe it will continue to exist at least through
Struts 1.1, and probably longer.

--
Martin Cooper


- Original Message -
From: "Trieu, Danny" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, August 17, 2001 9:59 AM
Subject: is the  going to be deprecated in the next release of s
truts?


> Any info, pointer to what going to happens to the  tag?
>
> --Danny
>
>





Re: Speed issues w/ Strut Tag Library

2001-08-18 Thread martin . cooper

The performance of servlet/JSP containers varies quite a bit, so you might
want to experiment with some others. We use Resin (http://www.caucho.com) on
WinNT/Win2K, which is definitely fast, although I don't have any hard
numbers. Although we typically don't have as many  tags as you
mentioned, we do use large numbers of  tags for localization
purposes.

--
Martin Cooper


- Original Message -
From: "John M. Corro" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, August 17, 2001 3:27 PM
Subject: Speed issues w/ Strut Tag Library


> We have a JSP page that's using between 50-75  tags to display
a
> given bean's information.  This particular project is a rewrite of an
older
> ASP implementation and we're seeing some performance issues when comparing
> the two.  (ASP implementation is running from IIS, Java version is Tomcat
> both running from the same box which has a w2k server OS)
>
> This particular page tends to take ~5 sec to load vs. the ASP page which
> takes ~1 sec to load.  Interestingly, the ASP page is hitting a DB while
the
> JSP version (at this point) is hitting dummy values hardcoded in the bean.
>
> Two questions.  First (a little off subj), in general is ASP faster than
> JSP.  Second, does extensive use of the Struts  tags cause
> performance issues?  (I know that there is an upperlimit of how many
custom
> tags you can use before you exceed the max size of the resulting servlet
> function)
>
>





logic:iterate the second

2001-08-18 Thread Softwareentwicklung Hauschel

Hi,
I can show my select/options with:

 
 


But how can i iterate over the same list ??


 ###  name="index"/> 


kundenliste is the property ArrayList of my FormBean.
But what should i use for item and indexId 

if i youse a list from page Context:
<%
  {
java.util.ArrayList list = new java.util.ArrayList();
list.add("First");
list.add("Second");
list.add("Third");
list.add("Fourth");
list.add("Fifth");
pageContext.setAttribute("list", list, PageContext.PAGE_SCOPE);
  }
%>


 ### 


then it works ?!

Please Help...
Fredy

-Ursprungliche Nachricht-
Von: Debasish Ghosh [mailto:[EMAIL PROTECTED]]
Gesendet: Samstag, 18. August 2001 18:10
An: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Betreff: RE: logic:iterate


Hi -

It has been solved. Actually the TLD was not of proper
version.

- Debasish
--- Debasish Ghosh <[EMAIL PROTECTED]> wrote:
> Here it is ..
> 
>  class="com.anshin.MonthForm"/>
>  property="index"/>
> 
> 
> 
> 
> 
> 
>  indexId="idx_int">
> 
> 
>  name="element"/> [ name="idx_int"/>]
> 
> Jan
> 
> 
>  
> 
> 
> 
> --- Wouter de Vaal <[EMAIL PROTECTED]>
> wrote:
> > Could you post the jsp code for this part?
> > 
> > Wouter
> > 
> > > -Oorspronkelijk bericht-
> > > Van: Debasish Ghosh
> [mailto:[EMAIL PROTECTED]]
> > > Verzonden: Saturday, August 18, 2001 10:22 AM
> > > Aan: [EMAIL PROTECTED]
> > > Onderwerp: logic:iterate
> > > 
> > > 
> > > Hi All -
> > > 
> > > I am using the logic:iterate tag. I have used
> the
> > > attribute indexId, when I am getting the error
> > > "Attribute indexId invalid according to the
> > specified
> > > TLD". 
> > > 
> > > I am using Struts 1.0 with Tomcat 3.2.2.
> > > 
> > > Please help !!
> > > 
> > > Regards.
> > > 
> > > - Debasish
> > > 
> > >
> __
> > > Do You Yahoo!?
> > > Make international calls for as low as
> $.04/minute
> > with 
> > > Yahoo! Messenger
> > > http://phonecard.yahoo.com/
> > > 
> 
> 
> __
> Do You Yahoo!?
> Make international calls for as low as $.04/minute
> with Yahoo! Messenger
> http://phonecard.yahoo.com/


__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/



AW: dynamic

2001-08-18 Thread Softwareentwicklung Hauschel



I have 
it 
 
  
usually i will lern struts 
;-)) -Ursprüngliche 
Nachricht-Von: Softwareentwicklung Hauschel 
[mailto:[EMAIL PROTECTED]]Gesendet: Samstag, 18. August 
2001 22:06An: [EMAIL PROTECTED]Betreff: 
 dynamic

  Hey 
  all,
  I have a Form with 
  a Dynamic Combobox.
  The ArrayList for 
  the Combobox ist in my FormBean.
   
  I can show a 
  ComboBox this way:
   
  ...
   
  <%  
  {    java.util.ArrayList list = new 
  java.util.ArrayList();    
  list.add("First");    
  list.add("Second");    
  list.add("Third");    
  list.add("Fourth");    
  list.add("Fifth");    pageContext.setAttribute("list", 
  list, PageContext.PAGE_SCOPE);  }%>
  ...
   
    
   
  ...
   
  But how can i use 
  my dynamic List of my Form Bean ??
   
   
  Fredy


dynamic

2001-08-18 Thread Softwareentwicklung Hauschel



Hey 
all,
I have a Form with a 
Dynamic Combobox.
The ArrayList for 
the Combobox ist in my FormBean.
 
I can show a 
ComboBox this way:
 
...
 
<%  
{    java.util.ArrayList list = new 
java.util.ArrayList();    
list.add("First");    
list.add("Second");    
list.add("Third");    
list.add("Fourth");    
list.add("Fifth");    pageContext.setAttribute("list", list, 
PageContext.PAGE_SCOPE);  }%>
...
 
  
 
...
 
But how can i use my 
dynamic List of my Form Bean ??
 
 
Fredy
<>

action mapping as /do/* rather than *.do

2001-08-18 Thread Matt Raible

I am trying to convert the struts-example application to use:

  
action
/do/*
  

And in the index.jsp page, I've change the "tour" link from:





to:





And have changed nothing in struts-config.xml.  However, when I try to execute
this link (http://localhost/NASApp/struts-example/do/tour), I get the error:

[18/Aug/2001 10:16:53:9] info: --
[18/Aug/2001 10:16:53:9] info: action: Processing a GET for /tour
[18/Aug/2001 10:16:53:9] info: --
[18/Aug/2001 10:16:53:9] info: --
[18/Aug/2001 10:16:53:9] info: action: Setting locale 'en_US'
[18/Aug/2001 10:16:53:9] info: --
[18/Aug/2001 10:16:53:9] info: --
[18/Aug/2001 10:16:53:9] info: action:  No mapping available for path /tour
[18/Aug/2001 10:16:53:9] info: --


But in my struts-config.xml, there is the entry:




Anyone know how to fix this?

Thanks,

Matt

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/



RE: logic:iterate

2001-08-18 Thread Debasish Ghosh

Hi -

It has been solved. Actually the TLD was not of proper
version.

- Debasish
--- Debasish Ghosh <[EMAIL PROTECTED]> wrote:
> Here it is ..
> 
>  class="com.anshin.MonthForm"/>
>  property="index"/>
> 
> 
> 
> 
> 
> 
>  indexId="idx_int">
> 
> 
>  name="element"/> [ name="idx_int"/>]
> 
> Jan
> 
> 
>  
> 
> 
> 
> --- Wouter de Vaal <[EMAIL PROTECTED]>
> wrote:
> > Could you post the jsp code for this part?
> > 
> > Wouter
> > 
> > > -Oorspronkelijk bericht-
> > > Van: Debasish Ghosh
> [mailto:[EMAIL PROTECTED]]
> > > Verzonden: Saturday, August 18, 2001 10:22 AM
> > > Aan: [EMAIL PROTECTED]
> > > Onderwerp: logic:iterate
> > > 
> > > 
> > > Hi All -
> > > 
> > > I am using the logic:iterate tag. I have used
> the
> > > attribute indexId, when I am getting the error
> > > "Attribute indexId invalid according to the
> > specified
> > > TLD". 
> > > 
> > > I am using Struts 1.0 with Tomcat 3.2.2.
> > > 
> > > Please help !!
> > > 
> > > Regards.
> > > 
> > > - Debasish
> > > 
> > >
> __
> > > Do You Yahoo!?
> > > Make international calls for as low as
> $.04/minute
> > with 
> > > Yahoo! Messenger
> > > http://phonecard.yahoo.com/
> > > 
> 
> 
> __
> Do You Yahoo!?
> Make international calls for as low as $.04/minute
> with Yahoo! Messenger
> http://phonecard.yahoo.com/


__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/



Re: "default action" and templates

2001-08-18 Thread Gordon Reynolds

I might misunderstand your intention, but could you implement your 'default'
code as a scriptlet in a template that you reuse for the display of your web
pages?

- Original Message -
From: "Marcelo Vanzin" <[EMAIL PROTECTED]>
To: "Struts Users" <[EMAIL PROTECTED]>
Sent: Friday, August 17, 2001 3:41 PM
Subject: "default action" and templates


>
> Hi there,
>
> We're working around here to implement Struts as the definitive framework
> for our web applications, and I'm beggining to study it. Comparing it to
> our current "in-house" system, I have come to two problems I could not
> find answers.
>
> 1) A "default action". This is not a "default action" as, for example,
> putting "unknown=true" in the config file, but rather and Action that is
> performed in *every* page that goes through the ActionServlet.
>
> We have some business logic that is performed in every page we have in
> the site, so having some "default action" would fix that just fine.
>
> Also, with the approach suggested in an earlier post of implementing an
> "prePerform" method in the Action class, this could be done also.
>
> 2) I actually had some doubts with the templates, but while writing them
> down I kind of saw some ways of doing what I wanted, so I'll try it and
> later if I'm still stuck I'll cry for help. :-)
>
> --
> []'s
> Marcelo Vanzin
> Touch Tecnologia
> [EMAIL PROTECTED]
> "We're an underground revolution working overtime"
>
>




RE: logic:iterate

2001-08-18 Thread Debasish Ghosh

Here it is ..












 []

Jan


 



--- Wouter de Vaal <[EMAIL PROTECTED]>
wrote:
> Could you post the jsp code for this part?
> 
> Wouter
> 
> > -Oorspronkelijk bericht-
> > Van: Debasish Ghosh [mailto:[EMAIL PROTECTED]]
> > Verzonden: Saturday, August 18, 2001 10:22 AM
> > Aan: [EMAIL PROTECTED]
> > Onderwerp: logic:iterate
> > 
> > 
> > Hi All -
> > 
> > I am using the logic:iterate tag. I have used the
> > attribute indexId, when I am getting the error
> > "Attribute indexId invalid according to the
> specified
> > TLD". 
> > 
> > I am using Struts 1.0 with Tomcat 3.2.2.
> > 
> > Please help !!
> > 
> > Regards.
> > 
> > - Debasish
> > 
> > __
> > Do You Yahoo!?
> > Make international calls for as low as $.04/minute
> with 
> > Yahoo! Messenger
> > http://phonecard.yahoo.com/
> > 


__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/



unsubscribe me!

2001-08-18 Thread Chad Brak



thank you.

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




What's the easiest way to define constants and show them in our app

2001-08-18 Thread Matt Raible

I have the following scriptlet code that I would like to convert to struts:

<%
// Global Variables common to every JSP page.
String staticPathCommon = "/dc/common";
String staticPathApp = "/timetracker";
%>



Is there a way, using struts, to define these variables, and then (using
 or something) display them?

I could define them in my Contants class, but then I'd have to put that bugger
in the session right!?

Another thing I'd like to do is put these dynamic values in my
ApplicationResources.properties file.  I've tried scriptlets, but these don't
get executed.  Will  tags get executed in this file?

Thanks,

Matt

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/



Re: TILES - cannot run the provided webapps

2001-08-18 Thread Cedric Dumoulin


  The ActionComponentServlet failed to start. Check the servlet errors.
  This could happen because latest Tiles versions require jaxp1.1, like Struts1.1. With
Tomcat 4.0, you need to put jaxp.jar and other xml parser related jar in the
WEB-INF/lib directory. With other web container, you need to have such jar file
available first. Also, I need to update install file to specify such requirement ;-)

   Cedric

nicolas bonvin wrote:

> cedric?,
>
> I downloaded the latest(20010731) version of tiles from
> http://www.lifl.fr/~dumoulin/tiles/ and tried to deploy the tiles-tutorial
> webapp inside of tomcat4.0-b7 (as well as other tomcat versions just to make
> sure); unfortunately, here's the error I get upon requesting
> http://localhost:8080/tiles-tutorial/index.jsp
>
> any idea?
>
> thanks,
>
> nicolas b.
>
> Root Cause:
> javax.servlet.jsp.JspException: Can't get definitions factory from context.
> at
> org.apache.struts.taglib.tiles.InsertTag.processDefinitionName(InsertTag.jav
> a:589)
> at
> org.apache.struts.taglib.tiles.InsertTag.createTagHandler(InsertTag.java:442
> )
> at org.apache.struts.taglib.tiles.InsertTag.doStartTag(InsertTag.java:399)
> at org.apache.jsp._0002findex_jsp._jspService(_0002findex_jsp.java:65)
> 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.ja
> va:201)
> at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
> at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:458)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> FilterChain.java:247)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> ain.java:193)
> at
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> va:243)
> at
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
> 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.ja
> va:215)
> at
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
> 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:2314)
> at
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164
> )
> at
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
> at
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:462)
> at
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 64)
> 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
> :163)
> at
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
> 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:
> 1000)
> at
> org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1093
> )
> at java.lang.Thread.run(Thread.java:484)






Re: TILES - cannot run the provided webapps

2001-08-18 Thread Cedric Dumoulin




nicolas bonvin wrote:

> cedric?,
>
> I downloaded the latest(20010731) version of tiles from
> http://www.lifl.fr/~dumoulin/tiles/ and tried to deploy the tiles-tutorial
> webapp inside of tomcat4.0-b7 (as well as other tomcat versions just to make
> sure); unfortunately, here's the error I get upon requesting
> http://localhost:8080/tiles-tutorial/index.jsp
>
> any idea?
>
> thanks,
>
> nicolas b.
>
> Root Cause:
> javax.servlet.jsp.JspException: Can't get definitions factory from context.
> at
> org.apache.struts.taglib.tiles.InsertTag.processDefinitionName(InsertTag.jav
> a:589)
> at
> org.apache.struts.taglib.tiles.InsertTag.createTagHandler(InsertTag.java:442
> )
> at org.apache.struts.taglib.tiles.InsertTag.doStartTag(InsertTag.java:399)
> at org.apache.jsp._0002findex_jsp._jspService(_0002findex_jsp.java:65)
> 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.ja
> va:201)
> at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
> at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:458)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> FilterChain.java:247)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> ain.java:193)
> at
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> va:243)
> at
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
> 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.ja
> va:215)
> at
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
> 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:2314)
> at
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164
> )
> at
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
> at
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:462)
> at
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 64)
> 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
> :163)
> at
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
> 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:
> 1000)
> at
> org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1093
> )
> at java.lang.Thread.run(Thread.java:484)






Re: Tiles v Templates

2001-08-18 Thread Cedric Dumoulin


  For now, there is no plan to remove Templates from Struts. I think
Templates will stay for a while.
  I haven't check yet the new proposal from David Geary. Maybe it is
already in Tiles ;-) ?

Cedric

Declan O'Reilly wrote:

> HiSince Tiles will be incorporated in 1.1, does this mean that it will
> be used instead of or in tandem with Templates.
> Also I noticed that the Template code that David Geary has in his
> recent JSP book is more recent than is currently
> in Struts. Does anybody know of any plans to update Struts. Thanks
> Declan O'Reilly






Re: Tiles?

2001-08-18 Thread Cedric Dumoulin


  Yes, Tiles will be integrated in Struts as a "contribution". This is a
work in progress.


Will Spies/Towers Perrin wrote:

> Did I see a message saying Struts 1.1 will support Tiles?






Re: Geary's template library in Struts

2001-08-18 Thread Cedric Dumoulin



  Unfortunately, I haven't read David's book (He promise me a copy, but I
haven't receive it yet ;-) ).

  Maybe the new functionalities you quote are the ones discussed with David
Geary in an old mail about Template definitions. If yes, such
functionalities are in Tiles (old names : Components).
  It is not plan that Tiles replace Templates. Tiles can be used in place of
Templates, but implementations are slightly different. So in the near
future, both will exist.

   Cedric

Ryan Kannegiesser wrote:

> I know that the template taglib in Struts 1.0 was contributed by
> David Geary and is based on his JavaWorld article.  In his recently
> published Advanced JSP book, he presents an enhanced version of the
> library.  He added some interesting features, like the ability to
> nest and extend regions, and put region definitions in a separate
> file.  Are there plans to incorporate his updates into the Struts
> template library?
>
> As an aside, I am also aware of the Tiles library that is supposed to
> be added to Struts (though I didn't see it in the TO DO list)...will
> this replace the template library?
>
> Thanks!
> Ryan
>
> __
> Do You Yahoo!?
> Make international calls for as low as $.04/minute with Yahoo! Messenger
> http://phonecard.yahoo.com/






question on servlet-containers and struts

2001-08-18 Thread stefan werner

Hello,
this is my first posting here, please have patience.
I startet with struts by playing around with the sample app and extending
it, trying to find my way.
It runs very fine on resin 1.3 and resin 2.0b3.
But won't run on tomcat 3.2.2 and tomcat 4.0b5.
Maybe it was my fault so I removed everything I added, except the new
package name.
No change. 4.05b can't find message ressource. 3.2.2 does, but can't create
beans. On Resin 1.3 and 2.0b3 everything seems to be ok.
Are there different ways  for the containers to handle the mappings .
I am a bit confused.
Please give me a hint
Thank you
Stefan




Error-message tomcat4.0b5


javax.servlet.ServletException: Cannot find message resources under key
org.apache.struts.action.MESSAGE
 at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:442)
 at org.apache.jsp.index_jsp._jspService(index_jsp.java:454)
 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.ja
va:200)
 at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:379)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:453)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:254)
 at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:194)
 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:255)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 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.ja
va:225)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 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:2252)
 at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164
)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:446)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 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
:163)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 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:
875)
 at
org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:952)
 at java.lang.Thread.run(Thread.java:484)

Root Cause:
javax.servlet.jsp.JspException: Cannot find message resources under key
org.apache.struts.action.MESSAGE
 at org.apache.struts.util.RequestUtils.message(RequestUtils.java:568)
 at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:239)
 at org.apache.jsp.index_jsp._jspService(index_jsp.java:94)
 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.ja
va:200)
 at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:379)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:453)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:254)
 at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:194)
 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:255)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 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.ja
va:225)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 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:2252)
 at
org.apache.

question about servlet-engines

2001-08-18 Thread stefan werner

Hello,
this is my first posting here, please have patience.
I startet with struts by playing around with the sample app and extending
it, trying to find my way.
It runs very fine on resin 1.3 and resin 2.0b3.
But won't run on tomcat 3.2.2 and tomcat 4.0b5.
Maybe it was my fault so I removed everything I added, except the new
package name.
No change. 4.05b can't find message ressource. 3.2.2 does, but can't create
beans. On Resin 1.3 and 2.0b3 everything seems to be ok.
Are there different ways  for the containers to handle the mappings .
I am a bit confused.
Please give me a hint
Thank you
Stefan




Error-message tomcat4.0b5


javax.servlet.ServletException: Cannot find message resources under key
org.apache.struts.action.MESSAGE
 at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:442)
 at org.apache.jsp.index_jsp._jspService(index_jsp.java:454)
 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.ja
va:200)
 at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:379)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:453)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:254)
 at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:194)
 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:255)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 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.ja
va:225)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 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:2252)
 at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164
)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:446)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 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
:163)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 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:
875)
 at
org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:952)
 at java.lang.Thread.run(Thread.java:484)

Root Cause:
javax.servlet.jsp.JspException: Cannot find message resources under key
org.apache.struts.action.MESSAGE
 at org.apache.struts.util.RequestUtils.message(RequestUtils.java:568)
 at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:239)
 at org.apache.jsp.index_jsp._jspService(index_jsp.java:94)
 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.ja
va:200)
 at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:379)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:453)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:254)
 at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:194)
 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:255)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 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.ja
va:225)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 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:2252)
 at
org.apache.

question about servlet-engines

2001-08-18 Thread stefan werner

Hello,
this is my first posting here, please have patience.
I startet with struts by playing around with the sample app and extending
it, trying to find my way.
It runs very fine on resin 1.3 and resin 2.0b3.
But won't run on tomcat 3.2.2 and tomcat 4.0b5.
Maybe it was my fault so I removed everything I added, except the new
package name.
No change. 4.05b can't find message ressource. 3.2.2 does, but can't create
beans. On Resin 1.3 and 2.0b3 everything seems to be ok.
Are there different ways  for the containers to handle the mappings .
I am a bit confused.
Please give me a hint
Thank you
Stefan


- Original Message -
From: "Craig R. McClanahan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, August 14, 2001 8:19 PM
Subject: Re: findForward and Errors


>
>
> On Tue, 14 Aug 2001, Shawn Sohl wrote:
>
> > In my Action class I catch errors if they occur.  What I want to know is
can
> > I create an "ActionErrors" object within my Action class and add an
error to
> > it like I do in a Form class.  Basically what I want to do is shown in
the
> > code below.  My .jsp page that "failure" points to has the
""
> > tag within it but it isnt picking up the error.  I know I can create and
set
> > an attribute within the response object and pass the error that way but
I
> > thought I could use something like I'm trying to do below.
> >
> >  catch(Exception e)
> > {
> > ActionErrors errors = new ActionErrors();
> > errors.add("error",new ActionError(e.getMessage());
> > return mapping.findForward("failure");
> > }
> >
> > Thanks
> >
> >
>
> The Struts example application does something very similar to this in
> LogonAction -- since that is where an invalid username/pasword combination
> is detected.  I think this is a reasonable design approach.
>
> Craig
>
>



Error-message tomcat4.0b5


javax.servlet.ServletException: Cannot find message resources under key 
org.apache.struts.action.MESSAGE
at 
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:442)
at org.apache.jsp.index_jsp._jspService(index_jsp.java:454)
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:200)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:379)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:453)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:254)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:194)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:255)
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:225)
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.StandardContext.invoke(StandardContext.java:2252)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:446)
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:163)
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:875)
at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:952)
at java.lang.Thread.run(Thread.java:484)

Root Cause:
javax.servlet.jsp.JspException: Cannot find message resources under key 
org.apache.struts.action.MESSAGE
at org.apache.struts.util.RequestUtils.message(RequestUtils.java:5

RE: logic:iterate

2001-08-18 Thread Wouter de Vaal

Could you post the jsp code for this part?

Wouter

> -Oorspronkelijk bericht-
> Van: Debasish Ghosh [mailto:[EMAIL PROTECTED]]
> Verzonden: Saturday, August 18, 2001 10:22 AM
> Aan: [EMAIL PROTECTED]
> Onderwerp: logic:iterate
> 
> 
> Hi All -
> 
> I am using the logic:iterate tag. I have used the
> attribute indexId, when I am getting the error
> "Attribute indexId invalid according to the specified
> TLD". 
> 
> I am using Struts 1.0 with Tomcat 3.2.2.
> 
> Please help !!
> 
> Regards.
> 
> - Debasish
> 
> __
> Do You Yahoo!?
> Make international calls for as low as $.04/minute with 
> Yahoo! Messenger
> http://phonecard.yahoo.com/
> 



logic:iterate

2001-08-18 Thread Debasish Ghosh

Hi All -

I am using the logic:iterate tag. I have used the
attribute indexId, when I am getting the error
"Attribute indexId invalid according to the specified
TLD". 

I am using Struts 1.0 with Tomcat 3.2.2.

Please help !!

Regards.

- Debasish

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/



unsubscribe me !

2001-08-18 Thread NVecom, JSC

sorry to bother you guys once again.
I have sent unsubscribe message SEVERAL TIMES
to the membership email address with no result.

CAN'T YOU JUST LET ME OUT!!!

help..



html:selec ( struts for dummy'S )

2001-08-18 Thread Softwareentwicklung Hauschel



in my 
logonAction i do:
 
  
return (mapping.findForward("success"));
 
 
 
Struts 
config.xml:
 
  
 
            
type="de.hauschel.rbg.LogonForm"/>
 
            
type="de.hauschel.rbg.KundenListeForm"/>
 
  
 
    
      
 
    

 
           
type="de.hauschel.rbg.LogonAction"   
name="logonForm"  
scope="request"  
input="/logon.jsp">   
    
 
 
That works without 
problems.
 
But if I insert a 
Tag :
 
  
Single 
0   Single 1

 
 
singleSelect is a 
meber of my KundenListeForm and own a setter and a getter.
 
An Exception is 
thrown:
 

Error: 500
Location: /rbg_example/kundenListe.jspInternal Servlet 
Error:org.apache.jasper.compiler.CompileException: C:\WebApplikations\jakarta-tomcat-3.2.3\webapps\rbg_example\kundenListe.jsp(26,0) According to the TLD attribute property is mandatory for tag select
	at org.apache.jasper.compiler.TagBeginGenerator.validate(TagBeginGenerator.java, Compiled Code)
	at org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:119)
	at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.init(JspParseEventListener.java:759)
	at org.apache.jasper.compiler.JspParseEventListener.addGenerator(JspParseEventListener.java:138)
	at org.apache.jasper.compiler.JspParseEventListener.handleTagBegin(JspParseEventListener.java:909)
	at org.apache.jasper.compiler.DelegatingListener.handleTagBegin(DelegatingListener.java:194)
	at org.apache.jasper.compiler.Parser$Tag.accept(Parser.java, Compiled Code)
	at org.apache.jasper.compiler.Parser.parse(Parser.java, Compiled Code)
	at org.apache.jasper.compiler.Parser.parse(Parser.java:1042)
	at org.apache.jasper.compiler.Parser.parse(Parser.java:1038)
	at org.apache.jasper.compiler.Compiler.compile(Compiler.java, Compiled Code)
	at org.apache.jasper.servlet.JspServlet.doLoadJSP(JspServlet.java:612)
	at org.apache.jasper.servlet.JasperLoader12.loadJSP(JasperLoader12.java:146)
	at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:542)
	at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:258)
	at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:268)
	at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:429)
	at org.apache.jasper.servlet.JspServlet.service(JspServlet.java, Compiled Code)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
	at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
	at org.apache.tomcat.core.Handler.service(Handler.java:287)
	at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
	at org.apache.tomcat.facade.RequestDispatcherImpl.doForward(RequestDispatcherImpl.java:222)
	at org.apache.tomcat.facade.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:162)
	at org.apache.struts.action.ActionServlet.processActionForward(ActionServlet.java:1758)
	at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1595)
	at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:509)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
	at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
	at org.apache.tomcat.core.Handler.service(Handler.java:287)
	at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
	at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:812)
	at org.apache.tomcat.core.ContextManager.service(ContextManager.java:758)
	at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)
	at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java, Compiled Code)
	at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java, Compiled Code)
	at java.lang.Thread.run(Thread.java:479)

 
 
 

Mit freundlichen Grüßen / best 
regards
Fred Robert Hauschel 
 
 
<>