Author Login
Post Reply
user Digest 22 Feb 2010 04:07:29 -0000 Issue 9010
Topics (messages 205097 through 205103):
Re: Content DIV update strategy
205097 by: Jose A. Corbacho
Re: version conflict?
205098 by: Lukasz Lenart
ajax validation with IE8
205099 by: Stephen Ince
205100 by: Stephen Ince
InvalidPathException processing form
205101 by: Jim Kennedy
205102 by: Jim Kennedy
205103 by: Jose A. Corbacho
Administrivia:
---------------------------------------------------------------------
To post to the list, e-mail: user@(protected)
To unsubscribe, e-mail: user-digest-unsubscribe@(protected)
For additional commands, e-mail: user-digest-help@(protected)
----------------------------------------------------------------------

Attachment:
user_205097.ezm (zipped)Finally fixed it as follows:
In the main page:
<s:url id="caurl" action="HomeContent" namespace="/"/>
<sx:div id="contentDiv" listenTopics="showActionContent_topic"
executeScripts="true">
<sx:div id="homeDiv" href="%{caurl}"/>
</sx:div>
Links that have to display contents target "contenDiv"
Thanks!
On Sat, Feb 20, 2010 at 9:49 AM, Martin Gainty <mgainty@(protected):
>
> i would suggest including handler attribute e.g.
>
> <script type=text/javvascript>
> function handler(widget,node) {
> node.innerHtml="new content goes here";
> }
> </script>
>
> <sx:div id="node" href="/AjaxTest.action"
> handler="hander" >
> </sx:div>
>
> i would suggest reading and studying XMLHttpRequest for an understanding of
> Asynchronous Request Model as implemented by AJAX..
>
> Saludos Cordiales,
> Martin Gainty
> ______________________________________________
> Porfavor no modifica o interrupta esta communicacion/Please dont interrupt
> or modify this transmission.
>
> > From: mccorby@(protected)
> > Date: Sat, 20 Feb 2010 09:20:25 +0700
> > Subject: Content DIV update strategy
> > To: user@(protected)
> >
> > Hi all,
> > I would like your advise for a problem I'm facing with sx:div.
> >
> > I'm using JDK 1.5, Struts 2.1.6 and Firefox 3.0.18 under Ubuntu.
> >
> > In our application, we have a central sx:div in the Main action page
> where
> > the content is displayed. It is declared as follows:
> >
> > <sx:div id="contentDiv" listenTopics="showActionContent_topic"
> > executeScripts="true">
> > <s:action name="ListOwnProjects" namespace="/"
> > executeResult="true"/> <!-- Default action -->
> > </sx:div>
> >
> >
> > Then, the action ListOwnProjects displays as follows:
> >
> > <s:url id="viewOwnProject" action="ViewOwnProject" namespace="/">
> > <s:param name="id" value="%{id}"/>
> > </s:url>
> > <sx:a href="%{viewOwnProject}" targets="contentDiv">
> > <s:property value="name"/>
> > </sx:a>
> >
> >
> > This means (or so is my understanding) that the content div should be
> > updated from an element inside itself. This, however, brings the whole
> page
> > (Main) into "contentDiv" and not the content of "ViewOwnProject" action.
> >
> > The different JSPs are placed correctly and struts.xml associates the
> > actions with the proper files (everything is ok if I call these actions
> > separately).
> >
> > <sx:head/> is set and working in other places of the code.
> >
> > Any hint?
> > Thanks,
> >
> > Jose A. Corbacho
>
> _________________________________________________________________
> Hotmail: Trusted email with Microsoft’s powerful SPAM protection.
> http://clk.atdmt.com/GBL/go/201469226/direct/01/
>

Attachment:
user_205098.ezm (zipped)2010/2/19 Bill Bohnenberger <bill98122@(protected)>:
> Struts 2 documentaion at *
> http://struts.apache.org/2.x/docs/building-the-framework-from-source.html*
> implies (at the bottom of the page) that only java 1.5 is required. But when
> I deploy my app to a tomcat 5.5.27 server using jdk 1.5.0_20, I get the
> UnsupportedClassVersionError below. Am I right in believing that this error
> is because some struts class file has been compiled with a later java
> version?
I don't think so, it looks like your classes were compiled with older
Java version. Comment out all your actions and try redeploy.
Regards
--
Łukasz
http://www.lenart.org.pl/
Kapituła Javarsovia 2010
http://javarsovia.pl

Attachment:
user_205099.ezm (zipped)Hi,
I am trying to do client-side ajax validation and I am failing. IE
throws an error alert, "invalid argument".
It seems that the error is really struts2. I also get weird behaviour
with ff. The error message comes after the tag.
I have a few questions.
1) How do you do client-side validation with the "css_xhtml"? It
seems that the template code is not correct if IE8 can not generate
an error of FF shows the error after the field.
2) How can I manually generate my own fields so that client-side
validation can work with "css_xhtml" theme?
The following code is generated but does not seem to be correct.
<div id="wwgrp_scenario.name" class="wwgrp">
<div id="wwctrl_scenario.name" class="wwctrl">
<input type="text" name="scenario.name" size="20" value="test2r"
id="scenario.name" dojoType="dijit.form.TextBox" trim="true"/></div>
</div>
Any help would be greatly appreciated.
Steve

Attachment:
user_205100.ezm (zipped)Okay I found the problem. I find it hard to believe that anyone is
using css_xhtml theme with this bug. It doesn't work in IE8 and it
does not work properly in any other browser.
problem
struts/css_xhtml/validation.js: function findWWCtrlNode needed to be rewritten.
function findWWCtrlNode(enclosingDiv) {
var elems = enclosingDiv.getElementsByTagName("div");
for(i = 0; i < elems.length; ++i ) {
if (elems[i].className && elems[i].className.match(/(wwlbl|wwctrl)/))
return elems[i];
}
elems = enclosingDiv.getElementsByTagName("span");
for(i = 0; i < elems.length; ++i ) {
if (elems[i].className && elems[i].className.match(/(wwlbl|wwctrl)/))
return elems[i];
}
return enclosingDiv.getElementsByTagName("span")[0];
}
On Sun, Feb 21, 2010 at 7:28 AM, Stephen Ince <stephenpince@(protected):
> Hi,
> I am trying to do client-side ajax validation and I am failing. IE
> throws an error alert, "invalid argument".
> It seems that the error is really struts2. I also get weird behaviour
> with ff. The error message comes after the tag.
>
> I have a few questions.
> 1) How do you do client-side validation with the "css_xhtml"? It
> seems that the template code is not correct if IE8 can not generate
> an error of FF shows the error after the field.
>
> 2) How can I manually generate my own fields so that client-side
> validation can work with "css_xhtml" theme?
>
> The following code is generated but does not seem to be correct.
>
> <div id="wwgrp_scenario.name" class="wwgrp">
> <div id="wwctrl_scenario.name" class="wwctrl">
> <input type="text" name="scenario.name" size="20" value="test2r"
> id="scenario.name" dojoType="dijit.form.TextBox" trim="true"/></div>
> </div>
>
>
> Any help would be greatly appreciated.
> Steve
>

Attachment:
user_205101.ezm (zipped)
Attachment:
user_205102.ezm (zipped)OK, this is solved, but I'm not sure why changing this line of code solved
the problem. I will explain.
I have a page called default.jsp and it contains the form as shown in my
previous email. This page/form has never had an issue displaying. I only
see the error stack trace when I submit the form causing validation to fire.
In the head of this page I have the following:
<link href="css/subsite.css" rel="stylesheet" type="text/css" />
This is the line causing the issue because the path is wrong (I guess???).
When I change the line to
<link href="../css/subsite.css" rel="stylesheet" type="text/css" />
my logs are clean and the problem disappears (since the href is corrected).
Very odd why a simple html tag like <link /> causes issues with struts.
And, Yes, the 2nd version of the link tag is correct because I am not
deploying off the root.
Anyone know why this could happen. thanks
-----Original Message-----
From: Jim Kennedy [mailto:jgkennedy@(protected)]
Sent: Sunday, February 21, 2010 6:37 PM
To: 'Struts Users Mailing List'
Subject: InvalidPathException processing form
I have a fairly simple form at this point and I am getting the above
referenced exception when validation fails. Full exception is at the bottom
of this email. When my servlet-mapping is set to /run/* I get this
exception in my logs, but application seems to work. If I change my
servlet-mapping to something like *.do and the form action to /quick.do, the
application continues to work and I DON'T get the exception. These don't
look critical, but I am not used to seeing this type of
exception/error/warning and want to understand what is going on here.
It should be perfectly acceptable for me to use either technique. I am
using struts 1.3.10.
web.xml:
<!-- Standard Action Servlet Configuration -->
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>
org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<!-- Standard Action Servlet Mapping -->
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>/run/*</url-pattern>
</servlet-mapping>
struts.xml:
<form-beans>
<form-bean name="quickSearchForm"
type="com.rentworx.subsite.sc.struts.QuickSearchForm"/>
</form-beans>
<!-- =========================================== Action Mapping Definitions
-->
<action-mappings>
<!-- Default "Welcome" action -->
<!-- Forwards to Welcome.jsp -->
<action
path="/Welcome"
forward="/welcome.jsp"/>
<action
path="/search**"
type="com.rentworx.subsite.sc.struts.SearchAction">
<forward name="results" path="/idxresults.jsp" />
</action>
<action
path="/idx/*"
type="com.rentworx.subsite.sc.struts.IDXSearchAction">
<forward name="results" path="/idxresults.jsp" />
</action>
<action
path="/quick"
type="com.rentworx.subsite.sc.struts.ProcessSearchAction"
name="quickSearchForm"
scope="request"
input="/default.jsp"
validate="true">
<forward name="results"
path="/results.jsp"></forward>
</action>
</action-mappings>
default.jsp:
<div class="error"><html-el:errors /></div>
<html:form action="/quick" method="post" >
<div><bean-el:message key="searchform.city.prompt"
/>:
<html-el:text property="city" title="enter
city name"></html-el:text>
</div>
<div class="error"><html-el:errors property="city"
header="" footer="" prefix="" suffix=""/></div>
<div style="margin-top:5px">county name:
<html-el:text property="county" title="enter city
name"></html-el:text></div>
<div class="error"><html-el:errors property="county"
header="" footer="" prefix="" suffix=""/></div>
<html-el:submit value="search"></html-el:submit>
</html:form>
Exception:
****************************************************************************
*********
2010-02-21 18:34:23,273 WARN
[
org.apache.struts.chain.commands.AbstractExceptionHandler] Unhandled
exception
org.apache.struts.chain.commands.InvalidPathException: No action config
found for the specified url.
at
org.apache.struts.chain.commands.AbstractSelectAction.execute(AbstractSelect
Action.java:71)
at
org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase
.java:51)
at
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
at
org.apache.commons.chain.generic.LookupCommand.execute (
LookupCommand.java:30
5)
at
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
at
org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequest
Processor.java:283)
at
org.apache.struts.action.ActionServlet.process (
ActionServlet.java:1913)
at
org.apache.struts.action.ActionServlet.doGet (
ActionServlet.java:449)
at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:690)
at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:803)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:206)
at
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.ja
va:96)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:230)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:175)
at
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssoci
ationValve.java:182)
at
org.jboss.web.tomcat.security.JaccContextValve.invoke (
JaccContextValve.java:
84)
at
org.apache.catalina.core.StandardHostValve.invoke (
StandardHostValve.java:127
)
at
org.apache.catalina.valves.ErrorReportValve.invoke (
ErrorReportValve.java:102
)
at
org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnecti
onValve.java:157)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:109)
at
org.apache.catalina.connector.CoyoteAdapter.service (
CoyoteAdapter.java:262)
at
org.apache.coyote.http11.Http11Processor.process (
Http11Processor.java:844)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http
11Protocol.java:583)
at
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
at
java.lang.Thread.run (
Thread.java:595)
2010-02-21 18:34:23,304 WARN
[
org.apache.struts.chain.commands.ExceptionCatcher] Exception from
exceptionCommand 'servlet-exception'
org.apache.struts.chain.commands.InvalidPathException: No action config
found for the specified url.
at
org.apache.struts.chain.commands.AbstractSelectAction.execute(AbstractSelect
Action.java:71)
at
org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase
.java:51)
at
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
at
org.apache.commons.chain.generic.LookupCommand.execute (
LookupCommand.java:30
5)
at
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
at
org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequest
Processor.java:283)
at
org.apache.struts.action.ActionServlet.process (
ActionServlet.java:1913)
at
org.apache.struts.action.ActionServlet.doGet (
ActionServlet.java:449)
at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:690)
at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:803)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:206)
at
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.ja
va:96)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:230)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:175)
at
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssoci
ationValve.java:182)
at
org.jboss.web.tomcat.security.JaccContextValve.invoke (
JaccContextValve.java:
84)
at
org.apache.catalina.core.StandardHostValve.invoke (
StandardHostValve.java:127
)
at
org.apache.catalina.valves.ErrorReportValve.invoke (
ErrorReportValve.java:102
)
at
org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnecti
onValve.java:157)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:109)
at
org.apache.catalina.connector.CoyoteAdapter.service (
CoyoteAdapter.java:262)
at
org.apache.coyote.http11.Http11Processor.process (
Http11Processor.java:844)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http
11Protocol.java:583)
at
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
at
java.lang.Thread.run (
Thread.java:595)
2010-02-21 18:34:23,335 ERROR
[org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/sc].[actio
n]] Servlet.service() for servlet action threw exception
org.apache.struts.chain.commands.InvalidPathException: No action config
found for the specified url.
at
org.apache.struts.chain.commands.AbstractSelectAction.execute(AbstractSelect
Action.java:71)
at
org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase
.java:51)
at
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
at
org.apache.commons.chain.generic.LookupCommand.execute (
LookupCommand.java:30
5)
at
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
at
org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequest
Processor.java:283)
at
org.apache.struts.action.ActionServlet.process (
ActionServlet.java:1913)
at
org.apache.struts.action.ActionServlet.doGet (
ActionServlet.java:449)
at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:690)
at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:803)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:206)
at
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.ja
va:96)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:230)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:175)
at
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssoci
ationValve.java:182)
at
org.jboss.web.tomcat.security.JaccContextValve.invoke (
JaccContextValve.java:
84)
at
org.apache.catalina.core.StandardHostValve.invoke (
StandardHostValve.java:127
)
at
org.apache.catalina.valves.ErrorReportValve.invoke (
ErrorReportValve.java:102
)
at
org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnecti
onValve.java:157)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:109)
at
org.apache.catalina.connector.CoyoteAdapter.service (
CoyoteAdapter.java:262)
at
org.apache.coyote.http11.Http11Processor.process (
Http11Processor.java:844)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http
11Protocol.java:583)
at
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
at
java.lang.Thread.run (
Thread.java:595)
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)

Attachment:
user_205103.ezm (zipped)Hi
Try using this:
<link rel="stylesheet" href="<s:url value="/css/subsite.css"/>"
type="text/css"/>
On Mon, Feb 22, 2010 at 11:01 AM, Jim Kennedy <jgkennedy@(protected):
> OK, this is solved, but I'm not sure why changing this line of code solved
> the problem. I will explain.
>
> I have a page called default.jsp and it contains the form as shown in my
> previous email. This page/form has never had an issue displaying. I only
> see the error stack trace when I submit the form causing validation to
> fire.
> In the head of this page I have the following:
>
> <link href="css/subsite.css" rel="stylesheet" type="text/css" />
>
> This is the line causing the issue because the path is wrong (I guess???).
> When I change the line to
>
> <link href="../css/subsite.css" rel="stylesheet" type="text/css" />
>
> my logs are clean and the problem disappears (since the href is corrected).
> Very odd why a simple html tag like <link /> causes issues with struts.
> And, Yes, the 2nd version of the link tag is correct because I am not
> deploying off the root.
>
> Anyone know why this could happen. thanks
>
> -----Original Message-----
> From: Jim Kennedy [mailto:jgkennedy@(protected)]
> Sent: Sunday, February 21, 2010 6:37 PM
> To: 'Struts Users Mailing List'
> Subject: InvalidPathException processing form
>
> I have a fairly simple form at this point and I am getting the above
> referenced exception when validation fails. Full exception is at the
> bottom
> of this email. When my servlet-mapping is set to /run/* I get this
> exception in my logs, but application seems to work. If I change my
> servlet-mapping to something like *.do and the form action to /quick.do,
> the
> application continues to work and I DON'T get the exception. These don't
> look critical, but I am not used to seeing this type of
> exception/error/warning and want to understand what is going on here.
>
> It should be perfectly acceptable for me to use either technique. I am
> using struts 1.3.10.
>
> web.xml:
> <!-- Standard Action Servlet Configuration -->
> <servlet>
> <servlet-name>action</servlet-name>
>
> <servlet-class>
org.apache.struts.action.ActionServlet</servlet-class>
> <init-param>
> <param-name>config</param-name>
> <param-value>/WEB-INF/struts-config.xml</param-value>
> </init-param>
> <load-on-startup>2</load-on-startup>
> </servlet>
>
>
> <!-- Standard Action Servlet Mapping -->
> <servlet-mapping>
> <servlet-name>action</servlet-name>
> <url-pattern>/run/*</url-pattern>
> </servlet-mapping>
>
> struts.xml:
> <form-beans>
>
> <form-bean name="quickSearchForm"
> type="com.rentworx.subsite.sc.struts.QuickSearchForm"/>
>
> </form-beans>
>
> <!-- =========================================== Action Mapping Definitions
> -->
>
> <action-mappings>
> <!-- Default "Welcome" action -->
> <!-- Forwards to Welcome.jsp -->
> <action
> path="/Welcome"
> forward="/welcome.jsp"/>
>
> <action
> path="/search**"
> type="com.rentworx.subsite.sc.struts.SearchAction">
> <forward name="results" path="/idxresults.jsp" />
> </action>
>
> <action
> path="/idx/*"
>
> type="com.rentworx.subsite.sc.struts.IDXSearchAction">
> <forward name="results" path="/idxresults.jsp" />
> </action>
>
> <action
> path="/quick"
>
> type="com.rentworx.subsite.sc.struts.ProcessSearchAction"
> name="quickSearchForm"
> scope="request"
> input="/default.jsp"
> validate="true">
> <forward name="results"
> path="/results.jsp"></forward>
> </action>
>
> </action-mappings>
>
>
> default.jsp:
> <div class="error"><html-el:errors /></div>
> <html:form action="/quick" method="post" >
>
> <div><bean-el:message key="searchform.city.prompt"
> />:
> <html-el:text property="city" title="enter
> city name"></html-el:text>
> </div>
> <div class="error"><html-el:errors property="city"
> header="" footer="" prefix="" suffix=""/></div>
>
> <div style="margin-top:5px">county name:
> <html-el:text property="county" title="enter city
> name"></html-el:text></div>
> <div class="error"><html-el:errors property="county"
> header="" footer="" prefix="" suffix=""/></div>
>
> <html-el:submit value="search"></html-el:submit>
> </html:form>
>
>
> Exception:
>
> ****************************************************************************
> *********
> 2010-02-21 18:34:23,273 WARN
> [
org.apache.struts.chain.commands.AbstractExceptionHandler] Unhandled
> exception
>
org.apache.struts.chain.commands.InvalidPathException: No action config
> found for the specified url.
> at
>
>
org.apache.struts.chain.commands.AbstractSelectAction.execute(AbstractSelect
> Action.java:71)
> at
>
>
org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase
> .java:51)
> at
>
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
> at
>
>
org.apache.commons.chain.generic.LookupCommand.execute (
LookupCommand.java:30
> 5)
> at
>
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
> at
>
>
org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequest
> Processor.java:283)
> at
>
org.apache.struts.action.ActionServlet.process (
ActionServlet.java:1913)
> at
>
org.apache.struts.action.ActionServlet.doGet (
ActionServlet.java:449)
> at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:690)
> at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:803)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> FilterChain.java:290)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> ain.java:206)
> at
>
>
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.ja
> va:96)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> FilterChain.java:235)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> ain.java:206)
> at
>
>
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> va:230)
> at
>
>
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
> va:175)
> at
>
>
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssoci
> ationValve.java:182)
> at
>
>
org.jboss.web.tomcat.security.JaccContextValve.invoke (
JaccContextValve.java:
> 84)
> at
>
>
org.apache.catalina.core.StandardHostValve.invoke (
StandardHostValve.java:127
> )
> at
>
>
org.apache.catalina.valves.ErrorReportValve.invoke (
ErrorReportValve.java:102
> )
> at
>
>
org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnecti
> onValve.java:157)
> at
>
>
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
> :109)
> at
>
org.apache.catalina.connector.CoyoteAdapter.service (
CoyoteAdapter.java:262)
> at
>
org.apache.coyote.http11.Http11Processor.process (
Http11Processor.java:844)
> at
>
>
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http
> 11Protocol.java:583)
> at
>
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
> at
java.lang.Thread.run (
Thread.java:595)
> 2010-02-21 18:34:23,304 WARN
> [
org.apache.struts.chain.commands.ExceptionCatcher] Exception from
> exceptionCommand 'servlet-exception'
>
org.apache.struts.chain.commands.InvalidPathException: No action config
> found for the specified url.
> at
>
>
org.apache.struts.chain.commands.AbstractSelectAction.execute(AbstractSelect
> Action.java:71)
> at
>
>
org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase
> .java:51)
> at
>
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
> at
>
>
org.apache.commons.chain.generic.LookupCommand.execute (
LookupCommand.java:30
> 5)
> at
>
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
> at
>
>
org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequest
> Processor.java:283)
> at
>
org.apache.struts.action.ActionServlet.process (
ActionServlet.java:1913)
> at
>
org.apache.struts.action.ActionServlet.doGet (
ActionServlet.java:449)
> at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:690)
> at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:803)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> FilterChain.java:290)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> ain.java:206)
> at
>
>
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.ja
> va:96)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> FilterChain.java:235)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> ain.java:206)
> at
>
>
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> va:230)
> at
>
>
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
> va:175)
> at
>
>
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssoci
> ationValve.java:182)
> at
>
>
org.jboss.web.tomcat.security.JaccContextValve.invoke (
JaccContextValve.java:
> 84)
> at
>
>
org.apache.catalina.core.StandardHostValve.invoke (
StandardHostValve.java:127
> )
> at
>
>
org.apache.catalina.valves.ErrorReportValve.invoke (
ErrorReportValve.java:102
> )
> at
>
>
org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnecti
> onValve.java:157)
> at
>
>
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
> :109)
> at
>
org.apache.catalina.connector.CoyoteAdapter.service (
CoyoteAdapter.java:262)
> at
>
org.apache.coyote.http11.Http11Processor.process (
Http11Processor.java:844)
> at
>
>
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http
> 11Protocol.java:583)
> at
>
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
> at
java.lang.Thread.run (
Thread.java:595)
> 2010-02-21 18:34:23,335 ERROR
>
> [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/sc].[actio
> n]] Servlet.service() for servlet action threw exception
>
org.apache.struts.chain.commands.InvalidPathException: No action config
> found for the specified url.
> at
>
>
org.apache.struts.chain.commands.AbstractSelectAction.execute(AbstractSelect
> Action.java:71)
> at
>
>
org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase
> .java:51)
> at
>
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
> at
>
>
org.apache.commons.chain.generic.LookupCommand.execute (
LookupCommand.java:30
> 5)
> at
>
org.apache.commons.chain.impl.ChainBase.execute (
ChainBase.java:191)
> at
>
>
org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequest
> Processor.java:283)
> at
>
org.apache.struts.action.ActionServlet.process (
ActionServlet.java:1913)
> at
>
org.apache.struts.action.ActionServlet.doGet (
ActionServlet.java:449)
> at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:690)
> at
javax.servlet.http.HttpServlet.service (
HttpServlet.java:803)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> FilterChain.java:290)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> ain.java:206)
> at
>
>
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.ja
> va:96)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> FilterChain.java:235)
> at
>
>
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> ain.java:206)
> at
>
>
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> va:230)
> at
>
>
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
> va:175)
> at
>
>
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssoci
> ationValve.java:182)
> at
>
>
org.jboss.web.tomcat.security.JaccContextValve.invoke (
JaccContextValve.java:
> 84)
> at
>
>
org.apache.catalina.core.StandardHostValve.invoke (
StandardHostValve.java:127
> )
> at
>
>
org.apache.catalina.valves.ErrorReportValve.invoke (
ErrorReportValve.java:102
> )
> at
>
>
org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnecti
> onValve.java:157)
> at
>
>
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
> :109)
> at
>
org.apache.catalina.connector.CoyoteAdapter.service (
CoyoteAdapter.java:262)
> at
>
org.apache.coyote.http11.Http11Processor.process (
Http11Processor.java:844)
> at
>
>
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http
> 11Protocol.java:583)
> at
>
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
> at
java.lang.Thread.run (
Thread.java:595)
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
>