problem laying out element of ordered list using logic iterate

2007-10-13 Thread Dolphin06
Hello, i have a list of 8 String in session and i would like to have it display using logic iterate tag in this manner : String1String5 String2String6 String3String7 String4String8 Hope someone helps, thank you. -- View this message in context: http://www.nabble.com/problem-laying-out-el

Re: [S2] Configure Message Store Interceptor via Annotations

2007-10-13 Thread Gunnar Hillert
Hi Adam, I have created a ticket in Jira: https://issues.apache.org/struts/browse/WW-2252 and attached a first version with my changes to the interceptor. I was thinking of also adding functionality similar to your requirements. I totally agree that it would be nice if Struts 2 handled the sto

Re: Exception Logging

2007-10-13 Thread Jeromy Evans
In addition to configuring log4j to use a FileAppender to write logs to a file, here's a very simple way to log exceptions manually from the exception page: Within your jsp include the following code: <% String stackTrace = (String) pageContext.getAttribute("stackTrace"); new

Re: Exception Logging

2007-10-13 Thread Richard Sayre
I thought I would add this part of the stack trace in case it helps: SEVERE: Error finishing response java.lang.ArrayIndexOutOfBoundsException at java.lang.System.arraycopy(Native Method) at org.apache.coyote.http11.InternalOutputBuffer.write(InternalOutputBuffer.java:689)

Exception Logging

2007-10-13 Thread Richard Sayre
I am trying to log the exception that get cought by the struts exception handler. So far I have .jsp page that shows the exception: An Exception Has occured! = I am going to change this page to display a generic error message. I want to write the valu

The breadcrumbs have been served!

2007-10-13 Thread stanlick
Greetings -- I finished the S2 breadcrumb plug-in and you are welcome to it and the source code at www.strutsschool.com. I plan to cover the plug-in process in a chapter of the Struts 2 in Action book which is soon to be released. Until then, a few folks have as

page context

2007-10-13 Thread Adam Hardy
Not directly a struts question, apart from the fact that I search through the ServletActionContext to try to find my answer, but what is the most direct route to get access (statically) to the PageContext? Thanks Adam - To uns