Hi Lukasz,
                  Anything you can give as a hint about it, if you can tell
me what are the components changed after 2.3.16.3 release, i can narrow
down to find the exact cause.  I'm attaching my custom struts.xml file

-- 
Thanks & Regards

Sreekanth S Nair
Java Developer
-------------------------------------------
eGovernments Foundation <http://www.egovernments.org>
Ph : 9980078913
-------------------------------------------
<http://in.linkedin.com/pub/sreekanth-s-nair/b/946/5a0/>
<https://github.com/sreekanthsnair>   <[email protected]>
<[email protected]>
-------------------------------------------

On Sat, Dec 13, 2014 at 2:57 PM, Sreekanth S. Nair <
[email protected]> wrote:
>
> Hi Lukasz,
>                   I have tried with the struts2 version 2.3.16.3, its
> working perfectly.
>
> --
> Thanks & Regards
>
> Sreekanth S Nair
> Java Developer
> -------------------------------------------
> eGovernments Foundation <http://www.egovernments.org>
> Ph : 9980078913
> -------------------------------------------
> <http://in.linkedin.com/pub/sreekanth-s-nair/b/946/5a0/>
> <https://github.com/sreekanthsnair>   <[email protected]>
> <[email protected]>
> -------------------------------------------
>
> On Sat, Dec 13, 2014 at 12:38 AM, Sreekanth S. Nair <
> [email protected]> wrote:
>>
>> Sure Lukasz, let me try and let you know.
>>
>> --
>> Thanks & Regards
>>
>> Sreekanth S Nair
>> Java Developer
>> -------------------------------------------
>> eGovernments Foundation <http://www.egovernments.org>
>> Ph : 9980078913
>> -------------------------------------------
>> <http://in.linkedin.com/pub/sreekanth-s-nair/b/946/5a0/>
>> <https://github.com/sreekanthsnair>   <[email protected]>
>> <[email protected]>
>> -------------------------------------------
>>
>> On Fri, Dec 12, 2014 at 8:30 PM, Lukasz Lenart <[email protected]>
>> wrote:
>>>
>>> Can you try with 2.3.16.3 first?
>>>
>>> 2014-12-12 15:30 GMT+01:00 Sreekanth S. Nair <
>>> [email protected]>:
>>> > Hi,
>>> >      Am facing a weird issue after upgrading strust2 from  2.3.15.1 to
>>> > 2.3.20 in Wildfly server. Its not giving any debug or any kind of trace
>>> > about what is happening, its just going to 404 page. I switched debug
>>> mode
>>> > in both struts config as well as in my server log but couldn't get a
>>> single
>>> > clue on what is happening. I'm using strust2-convention-plugin.
>>> > My action class name is HomepageAction and located inside
>>> > org.xyz.web.actions.common
>>> >
>>> > I'm accessing it by url
>>> > http://localhost:8080/ctxtpath/common/homepage.action
>>> >
>>> > The same setup is working perfectly in 2.3.15.1.....
>>> >
>>> > Anyone face similar issue ? any help would be appreciated.
>>> >
>>> > Thanks
>>> > Srikanth
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: [email protected]
>>> For additional commands, e-mail: [email protected]
>>>
>>>
<?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE struts PUBLIC
	"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
	"http://struts.apache.org/dtds/struts-2.3.dtd";>

<struts>
	<!-- Production Performance Environment Setting, Change to inverse value of the same in Development Environment -->
	<constant name="struts.devMode" value="true" />
	<constant name="struts.freemarker.templatesCache" value="true" />
	<constant name="struts.xslt.nocache" value="false" />
	<constant name="struts.ognl.logMissingProperties" value="true" />
	<constant name="struts.el.throwExceptionOnFailure" value="true" />
	<constant name="struts.ognl.enableExpressionCache" value="true" />
	<constant name="struts.serve.static" value="true" />
	<constant name="struts.i18n.reload" value="true" />
	<constant name="struts.configuration.xml.reload" value="true" />
	<constant name="struts.freemarker.beanwrapperCache" value="true" />
	<!-- Performance Environment Setting Ends -->
	<constant name="struts.convention.exclude.parentClassLoader" value="true" />
	<constant name="struts.convention.action.fileProtocols" value="jar,vfsfile,vfszip,vfs,zip" />
	<constant name="struts.convention.result.path" value="/WEB-INF/jsp/" />
	<constant name="struts.locale" value="en_IN" />
	<constant name="struts.multipart.maxSize" value="10485760" />
	<constant name="struts.multipart.parser" value="jakarta" />
	<constant name="struts.convention.action.mapAllMatches" value="true" />
	<constant name="struts.convention.default.parent.package" value="org" />
	<!-- Comma separated list of regular expressions of jar URLs to be scanned -->
	<constant name="struts.convention.action.includeJars" value=".*org-.*" />
	
	<package name="org" extends="struts-default">
		<interceptors>

			<interceptor-stack name="org-interceptors">
				<interceptor-ref name="alias" />
				<interceptor-ref name="params">
   					<param name="excludeParams">(.*\.|^|.*|\[('|"))(c|C)lass(\.|('|")]|\[).*,^dojo\..*,^struts\..*,^session\..*,^request\..*,^application\..*,^servlet(Request|Response)\..*,^parameters\..*,^action:.*,^method:.*</param>
				</interceptor-ref>
				<interceptor-ref name="servletConfig" />
				<interceptor-ref name="prepare" />
				<interceptor-ref name="i18n" />
				<interceptor-ref name="chain" />
				<interceptor-ref name="scopedModelDriven" />
				<interceptor-ref name="modelDriven" />
				<interceptor-ref name="checkbox" />
				<interceptor-ref name="staticParams" />
				<interceptor-ref name="actionMappingParams" />
				<interceptor-ref name="fileUpload" />
				<interceptor-ref name="params">
   					<param name="excludeParams">(.*\.|^|.*|\[('|"))(c|C)lass(\.|('|")]|\[).*,^dojo\..*,^struts\..*,^session\..*,^request\..*,^application\..*,^servlet(Request|Response)\..*,^parameters\..*,^action:.*,^method:.*</param>
				</interceptor-ref>
				<!-- See mingle defect #131 for reason for commenting out ConversionErrorInterceptor, and 
                possible alternatives. -->
                <interceptor-ref name="conversionError"/>
				<interceptor-ref name="validation">
					<param name="excludeMethods">input,back,cancel,browse</param>
				</interceptor-ref>
				<interceptor-ref name="tokenSession">
					<param name="includeMethods">save,create</param>
				</interceptor-ref>
			</interceptor-stack>
		</interceptors>
		<default-interceptor-ref name="org-interceptors" />
		<global-results>
			<result name="genericError">/error/genericError.jsp</result>
			<result name="accessDeniedError">/error/accessDenied.jsp</result>
			<result name="invalid.token">/error/invalidRequest.jsp</result>
		</global-results>
		<global-exception-mappings>
			<exception-mapping exception="java.lang.Exception" result="genericError" />
			<exception-mapping exception="org.hibernate.HibernateException" result="genericError" />
			<exception-mapping exception="org.springframework.security.access.AccessDeniedException" result="accessDeniedError" />
		</global-exception-mappings>
		<action name="CatchAll">
			<result>/error/pageNotFound.jsp</result>
		</action>
	</package>
</struts>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to