Re: Unknown Error From JSON-Plugin

2018-01-02 Thread sreekanth
I have a view page for displaying some already persisted data, this page most of the time loads without any error (with the same set of data) and rarely throws the exception which i have shared here. 75% time i've experienced this exception when there is class reload happens (as a part of hot deplo

Re: Unknown Error From JSON-Plugin

2018-01-02 Thread sreekanth
for ; Tue, 2 Jan 2018 23:50:51 -0700 (MST) Date: Tue, 2 Jan 2018 23:50:51 -0700 (MST) From: sreekanth To: user@struts.apache.org Message-ID: <1514962251558-0.p...@n5.nabble.com> In-Reply-To: References: <1514912818271-0.p...@n5.nabble.com> Subject: Re: Unknown Error

Re: Unknown Error From JSON-Plugin

2018-01-02 Thread sreekanth
I'm already using the latest of JDK 8 :- jdk1.8.0_152 (Linux) -- Sent from: http://struts.1045723.n5.nabble.com/Struts-User-f3426046.html - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-m

Unknown Error From JSON-Plugin

2018-01-02 Thread sreekanth
Hi, I'm using struts2-2.5.14.1 in my EAR deployed in wildfly server, rarely we are getting the following error when i'm accessing struts2 page. Caused by: Unable to load configuration. - bean - vfs:/content/my-app.ear/lib/struts2-json-plugin-2.5.14.1.jar/struts-plugin.xml:28:30 at com

Re: Upgrading from struts 2.3.x to struts 2.5.x

2017-10-23 Thread sreekanth
try remove TilesServlet from web.xml as well, tiles 3 works differently from tiles 2 Please ref : https://struts.apache.org/docs/tiles-3-plugin.html -- Sent from: http://struts.1045723.n5.nabble.com/Struts-User-f3426046.html ---

Re: Upgrading from struts 2.3.x to struts 2.5.x

2017-10-23 Thread sreekanth
Try removing the following filter from your web.xml struts-cleanup org.apache.struts2.dispatcher.ActionContextCleanUp ActionContextCleanUp has been removed in this version -- Sent from: http://struts.1045723.n5.nabble.com/Struts-User-f342604

Re: Iusse in BigDecimal conversion after upgrading from 2.5.10.1 to 2.5.13

2017-10-04 Thread sreekanth
thanks Yasser for all you help and code. I would like to conclude this as a struts2 upgrade change, as BigDecimal field value was setting as BigDecimal.ZERO when field value passed as empty in struts2.5.10.x or < whereas 2.5.13 will set such empty BigDecimal field as null value (that is the correc

Re: Iusse in BigDecimal conversion after upgrading from 2.5.10.1 to 2.5.13

2017-10-04 Thread sreekanth
thanks Yasser, let me setup a sample too. I already went through fixes introduced at WW-4581 as well and ran a test against it and found that's not the reason for this behavior rather something related to form field binding. Here i'm adding your finding which i too believe the root cause for this

Re: Iusse in BigDecimal conversion after upgrading from 2.5.10.1 to 2.5.13

2017-10-03 Thread sreekanth
thanks Yasser, that info was great, so do you think so the way struts2 binds BigDecimal changed between these two versions ? and also if possible kindly share your sample project in github so that i can fork it and check myself faster. -- Sent from: http://struts.1045723.n5.nabble.com/Struts-Use

Re: Iusse in BigDecimal conversion after upgrading from 2.5.10.1 to 2.5.13

2017-10-03 Thread sreekanth
thanks Yasser, may i know with which version of struts you have tested it 2.5.10.1 or 2.5.13 ? -- Sent from: http://struts.1045723.n5.nabble.com/Struts-User-f3426046.html - To unsubscribe, e-mail: user-unsubscr...@struts.apache

Re: Iusse in BigDecimal conversion after upgrading from 2.5.10.1 to 2.5.13

2017-10-03 Thread sreekanth
Thanks Yasser, if my previous doubts get cleared then probably i can assume there is behavioral change in binding empty value. If thats not the case then will try to replicate as you have mentioned. -- Sent from: http://struts.1045723.n5.nabble.com/Struts-User-f3426046.html ---

Re: Iusse in BigDecimal conversion after upgrading from 2.5.10.1 to 2.5.13

2017-10-03 Thread sreekanth
Hi Lukasz, what bothering me is, we haven't changed this particular jsp since an year or more and its working fine till 2.5.10.x. I have the following doubt, if it can be answered then i can assume whats going wrong in my code. What was the behaviour of struts 2.5.10.1 while convert

Re: Iusse in BigDecimal conversion after upgrading from 2.5.10.1 to 2.5.13

2017-10-03 Thread sreekanth
The value not getting set at all, its coming as null. By the time i will also see if i can provide some log as you mentioned. -- Sent from: http://struts.1045723.n5.nabble.com/Struts-User-f3426046.html - To unsubscribe, e-mail:

Re: Iusse in BigDecimal conversion after upgrading from 2.5.10.1 to 2.5.13

2017-10-03 Thread sreekanth
Thanks Lukasz, can you please point me some wiki page or what change i have to do to make my existing code working ? -- Sent from: http://struts.1045723.n5.nabble.com/Struts-User-f3426046.html - To unsubscribe, e-mail: user-uns

Iusse in BigDecimal conversion after upgrading from 2.5.10.1 to 2.5.13

2017-10-03 Thread sreekanth
Hi, We have a List object which is getting set at JSP (element added dynamically in front end), while saving this form the object's value for BigDecimal fields are getting null. eg: Class A { String strVal; BigDecimal drAmt; BigDecimal crAmt; } in jsp while we submit the form *strVal*

Re: Dynamically switching Tiles master layout

2016-11-04 Thread Sreekanth S. Nair
cool 👍 On Fri, Nov 4, 2016 at 2:09 PM, Lukasz Lenart wrote: > Thanks but I found this [1] and it works > > [1] https://coderanch.com/t/500781/framework/Struts-Tiles- > changing-layout-runtime#2257930 > > just used > > 2016-11-04 9:04 GMT+01:00 Sreekanth S. Nair org&g

Re: Dynamically switching Tiles master layout

2016-11-04 Thread Sreekanth S. Nair
There is a wildcard way of doing it but don't know if it helps in this case like * * -- Thanks & Regards Sreekanth Nair Java Developer eGovernments Foundation <http://www.egovernments.org> 9980078913 <http://in.linkedin

Re: How to disable devMode in prod

2016-10-12 Thread Sreekanth S. Nair
👍 thanks Lukasz.. On Wed, Oct 12, 2016 at 4:47 PM, Lukasz Lenart wrote: > 2016-10-12 12:43 GMT+02:00 Sreekanth S. Nair org>: > > Cool 👍 thanks Lukasz, when can we expect this release ? > > Somehow around end of this year, maybe early. > > > Regards > -- &g

Re: How to disable devMode in prod

2016-10-12 Thread Sreekanth S. Nair
Cool 👍 thanks Lukasz, when can we expect this release ? On Wed, Oct 12, 2016 at 3:02 PM, Lukasz Lenart wrote: > and docs > https://cwiki.apache.org/confluence/display/WW/Constant+Configuration# > ConstantConfiguration-Valuesubstitution > > 2016-10-12 11:24 GMT+02:00 Lukasz Lenart : > > Implemen

Re: Very confusing documentation

2016-09-20 Thread Sreekanth S. Nair
is not what you are looking for. -- Thanks & Regards Sreekanth Nair On Tue, Sep 20, 2016 at 6:18 PM, Joseph B Cotton wrote: > Christoph > Thanks again for the nice reply. > > Here is the reason that I am looking at Struts. I am an applications > programmer in a governmen

Re: How to disable devMode in prod

2016-09-15 Thread Sreekanth S. Nair
Would be great to start with :-) -- Thanks & Regards Sreekanth Nair Java Developer On Thu, Sep 15, 2016 at 8:30 PM, Lukasz Lenart wrote: > Maybe the first step should be just simple, use ENV in > struts.xml/struts.properties > > > > wdyt? > > > Regards > -

Re: How to disable devMode in prod

2016-09-15 Thread Sreekanth S. Nair
its having *spring.profiles.active *as to set its current environment. -- Thanks & Regards Sreekanth Nair Java Developer

Re: How to disable devMode in prod

2016-09-15 Thread Sreekanth S. Nair
+1 for this change, it would be wonderful if this can be done. -- Thanks & Regards Sreekanth Nair Java Developer On Thu, Sep 15, 2016 at 5:21 PM, Christoph Nenning < christoph.nenn...@lex-com.net> wrote: > > >> Hi, > > >> > > >> Do you ha

Re: Does struts 2.5.2 supports javaassist 3.18.1

2016-08-28 Thread Sreekanth S. Nair
Thanks Lukasz... yes we are using java 8... hope i can go head with 3.20.0-GA. On Sun, Aug 28, 2016 at 1:46 PM, Lukasz Lenart wrote: > It should be, in 3.19 support for Java 8 was added so if you are using > it you must use that version at least > > 2016-08-28 10:11 GMT+02:00 Sreek

Re: Does struts 2.5.2 supports javaassist 3.18.1

2016-08-28 Thread Sreekanth S. Nair
1:35 PM, Lukasz Lenart wrote: > 2016-08-26 10:54 GMT+02:00 Sreekanth S. Nair org>: > > Does ognl breaks if i exclude 3.20.0-GA javaassist library from > > struts-2.5.2 ? Hibernate version having dependency to javaassist > 3.18.1-GA > > so i'm expecting conflict bet

Does struts 2.5.2 supports javaassist 3.18.1

2016-08-26 Thread Sreekanth S. Nair
Does ognl breaks if i exclude 3.20.0-GA javaassist library from struts-2.5.2 ? Hibernate version having dependency to javaassist 3.18.1-GA so i'm expecting conflict between these two version.

Re: Issue in autowiring spring beans from parent context

2016-08-07 Thread Sreekanth S. Nair
I could shown little more patience :-) the problem solved, i was missing context:componentscan missing for my web applicationContext file. On Sun, Aug 7, 2016 at 1:32 PM, Sreekanth S. Nair < sreekanth.n...@egovernments.org> wrote: > Recently i tried to move so

Issue in autowiring spring beans from parent context

2016-08-07 Thread Sreekanth S. Nair
Recently i tried to move some of the services to spring parent context, we use spring's *parentContextKey* in web.xml to enable ContextLoaderListener to pick these services loaded globally. I have struts2 as well as Spring mvc modules inside an EAR, Spring mvc controller is properly getting injecte

Re: Struts 2.5.2 latest can be used with asm-all-5.1

2016-08-04 Thread Sreekanth S. Nair
Thanks Lukasz... for now i'll go with java8 plugin and once 2.5.3 is out then will use it :) -- Thanks & Regards Sreekanth Nair On Fri, Aug 5, 2016 at 11:37 AM, Lukasz Lenart wrote: > 2016-08-05 7:24 GMT+02:00 Sreekanth S. Nair org>: > > I want to upgrade cglib-

Struts 2.5.2 latest can be used with asm-all-5.1

2016-08-04 Thread Sreekanth S. Nair
I want to upgrade cglib-3.2.4, where as cglib dependency is asm-5.1, but Struts2 is also using asm libraries, does struts2 works with asm-5.1 ?

Re: Struts2 initial page loading time

2016-07-28 Thread Sreekanth S. Nair
PM, Lukasz Lenart wrote: > 2016-07-25 13:08 GMT+02:00 Sreekanth S. Nair < > sreekanth.n...@egovernments.org>: > > I've tried with both dev mode on and off but the problem still persist. > No > > i'm not using any java 8 plugin and also we are not using any

Re: Struts2 initial page loading time

2016-07-25 Thread Sreekanth S. Nair
16 at 4:31 PM, Lukasz Lenart wrote: > 2016-07-22 8:23 GMT+02:00 Sreekanth S. Nair < > sreekanth.n...@egovernments.org>: > > We are using JDK 8u92, yes i have disabled devmode, enabled back for > > debugging this issue. > > You should switch it off when debugging as in

Re: Struts2 initial page loading time

2016-07-21 Thread Sreekanth S. Nair
We are using JDK 8u92, yes i have disabled devmode, enabled back for debugging this issue. On Fri, Jul 22, 2016 at 11:48 AM, Lukasz Lenart wrote: > 2016-07-21 17:30 GMT+02:00 Sreekanth S. Nair < > sreekanth.n...@egovernments.org>: > > By investigating further on this

Re: Struts2 initial page loading time

2016-07-21 Thread Sreekanth S. Nair
); //LONG TIME* I didn't investigate further will update once done and if required On Thu, Jul 21, 2016 at 8:32 PM, Sreekanth S. Nair < sreekanth.n...@egovernments.org> wrote: > Hi Lukasz, > I have debugged through the code (version : 2.3.24.1) > and found

Re: Struts2 initial page loading time

2016-07-21 Thread Sreekanth S. Nair
SimpleAppConfiguration.class > }) > }) > > -- > _ > Adam Brin > Director of Technology, Digital Antiquity > 480.965.1278 > > > On Jul 21, 2016, at 8:02 AM, Sreekanth S. Nair < > sreekanth.n...@egovernments.org> wrote: > > > > Hi Lukasz, >

Re: Struts2 initial page loading time

2016-07-21 Thread Sreekanth S. Nair
* packageProviders.add(provider); } for the first time page loads. The same issue is there in 2.5.2 as well. Is it may be a default behavior to take time ? On Thu, Jul 21, 2016 at 12:10 PM, Sreekanth S. Nair < sreekanth.n...@egovernments.org> wrote: > Sure Lukasz... > > > On Thu,

Re: Struts2 initial page loading time

2016-07-20 Thread Sreekanth S. Nair
Sure Lukasz... On Thu, Jul 21, 2016 at 11:57 AM, Lukasz Lenart wrote: > 2016-07-21 8:22 GMT+02:00 Sreekanth S. Nair < > sreekanth.n...@egovernments.org>: > > May be... We are using strust2-spring-plugin. I'm not pretty sure about > > this plugin internal, need to

Re: Struts2 initial page loading time

2016-07-20 Thread Sreekanth S. Nair
May be... We are using strust2-spring-plugin. I'm not pretty sure about this plugin internal, need to investigate on this where its spending time. On Thu, Jul 21, 2016 at 11:45 AM, Lukasz Lenart wrote: > 2016-07-21 7:58 GMT+02:00 Sreekanth S. Nair < > sreekanth.n...@egovernment

Re: Struts2 initial page loading time

2016-07-20 Thread Sreekanth S. Nair
ddressing > it might depend on your own initialization sequence and perhaps setting up > your own Servlet init method > > > > On Jul 20, 2016, at 1:46 PM, Sreekanth S. Nair < > sreekanth.n...@egovernments.org> wrote: > > > > It seems like struts2 takes very

Struts2 initial page loading time

2016-07-20 Thread Sreekanth S. Nair
It seems like struts2 takes very long time while loading page for the first time within a webcontext, this will definitely save deployment time but result in less responsive for enduser for the first time. I guess this is struts's default behavior, is there anyway we can instruct struts2 to load in

Re: [ANN] Apache Struts 2.3.30 GA

2016-07-19 Thread Sreekanth S. Nair
as INFO [stdout] On Tue, Jul 19, 2016 at 3:31 PM, Lukasz Lenart wrote: > 2016-07-19 10:55 GMT+02:00 Sreekanth S. Nair < > sreekanth.n...@egovernments.org>: > > Hi Christoph, > >Thanks for your detailed explanation, even though > > its a huge c

Re: [ANN] Apache Struts 2.3.30 GA

2016-07-19 Thread Sreekanth S. Nair
Hi Christoph, Thanks for your detailed explanation, even though its a huge change for application to move from both slf4j and log4j1 to Log4j2, lets assume we moved all to Log4j2 but if the underlying application server eg: Jboss or wildfly have its own wrapper implementation

Re: [ANN] Apache Struts 2.3.30 GA

2016-07-18 Thread Sreekanth S. Nair
I'm not sure about bridging log4j1 to log4j2 gives us any benefit from enduser point of view, and most the people were using slf4j and log4j 1 for sure, with the addition of log4j2 the chain is getting complex for a simple logging. Why can't struts2 can make a log wrapper around it based on the ava

Re: [ANN] Apache Struts 2.3.30 GA

2016-07-18 Thread Sreekanth S. Nair
Absolutely that's what even i feel, server like Jboss (wildfly doesn't have support for it) so all logs coming after the following message is writing to stdout (is that the expected behavior). On Mon, Jul 18, 2016 at 6:43 PM, Emi wrote: > hi, is there any plan for the date of end of life for 2.

Re: Struts2 & Spring using child web application context

2016-06-26 Thread Sreekanth S. Nair
How you are packaging these two web applications ? as an EAR ? or independent WAR running inside a we container ? On Sun, Jun 26, 2016 at 9:47 PM, Chris Cranford < chris.cranf...@setechusa.com> wrote: > Has anyone been able to leverage the struts2-spring-plugin and running it > within a child co

Re: synchronization problem

2016-04-09 Thread Sreekanth S. Nair
Struts2 won't make your custom class threadsafe unless your code is threadsafe, synchronized(this) or synchronized method can be used in your service implementation if you think your service class is not threadsafe. Usually Service or DAO layer should be written threadsafe, don't know about your DA

Re: CVE-2015-5209

2015-10-06 Thread Sreekanth S. Nair
Struts1 is completely safe to use since no OGNL involved, unfortunately people started misusing struts2 the way its easy to use, and its in a way to fix all the security holes found till now. -- Thanks & Regards Sreekanth S Nair Java Devel

Re: Problem reading package.properties value when deploying application via wildfly-deploy plugin

2015-08-05 Thread Sreekanth S. Nair
. On Wed, Jul 29, 2015 at 2:07 PM, Lukasz Lenart wrote: > 2015-07-29 10:30 GMT+02:00 Sreekanth S. Nair < > sreekanth.n...@egovernments.org>: > > package.properties file values are not getting displayed while we deploy > > our application in wildfly server using wildfly dep

Issue reading package.properties value

2015-07-30 Thread Sreekanth S. Nair
perfectly except label's are not coming only label key is coming in screens. -- Thanks & Regards Sreekanth S Nair

Problem reading package.properties value when deploying application via wildfly-deploy plugin

2015-07-29 Thread Sreekanth S. Nair
package.properties file values are not getting displayed while we deploy our application in wildfly server using wildfly deploy maven plugin, but at the same time properties values are getting displayed properly if we deploy from eclipse or manual deployment. The only difference between manual and

Re: Serialization Issue while using tokenInterceptor

2015-05-27 Thread Sreekanth S. Nair
Any kind updates ? is this an issue with struts2 TokenSessionStoreInterceptor ? On Mon, May 25, 2015 at 5:06 PM, Sreekanth S. Nair < sreekanth.n...@egovernments.org> wrote: > Once again i have tested afresh, but the same issue is coming. We have > also found when we are using

Re: Serialization Issue while using tokenInterceptor

2015-05-25 Thread Sreekanth S. Nair
error in HttpSession (because httpsession can accept nonserializable object where redis store can't)? On Mon, May 25, 2015 at 2:28 PM, Lukasz Lenart wrote: > 2015-05-25 10:29 GMT+02:00 Sreekanth S. Nair < > sreekanth.n...@egovernments.org>: > > Hi Lukasz, > >

Re: Serialization Issue while using tokenInterceptor

2015-05-25 Thread Sreekanth S. Nair
Hi Lukasz, Based on your comment on WW-4028 issue, struts2 should not try to store ActionInvocation in session, from the log i have attached points that its getting stored into session which basically breaks your point. FYI we are using redis and spring session to manage HttpSessi

Re: Serialization Issue while using tokenInterceptor

2015-05-23 Thread Sreekanth S. Nair
Sorry that stacktrace took when i was testing it with struts2.3.24 (but the error is same :) ) -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.org> Ph :

Re: Serialization Issue while using tokenInterceptor

2015-05-23 Thread Sreekanth S. Nair
No WEB-INF/lib does not contain any jar, its all in Wildfly(JBoss)/standalone/deployment/myear.ear/lib/ folder -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.org> Ph :

Re: Serialization Issue while using tokenInterceptor

2015-05-23 Thread Sreekanth S. Nair
Even i have tried replacing asm lib for struts2 by downgrading asm-*5.0.3.jar to asm-*3.3.1.jar. On Sat, May 23, 2015 at 12:31 PM, Sreekanth S. Nair < sreekanth.n...@egovernments.org> wrote: > asm-5.0.3.jar > asm-commons-5.0.2.jar > asm-tree-5.0.2.jar > -- Thanks & Reg

Re: Serialization Issue while using tokenInterceptor

2015-05-23 Thread Sreekanth S. Nair
xstream-1.4.2.jar -- 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

Re: Serialization Issue while using tokenInterceptor

2015-05-22 Thread Sreekanth S. Nair
org.springframework.core.serializer.support. SerializingConverter.convert(SerializingConverter.java:62) [spring-core-4.1.4.RELEASE.jar:4.1.4.RELEASE] ... 43 more -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.

Serialization Issue while using tokenInterceptor

2015-05-22 Thread Sreekanth S. Nair
I'm getting Serialization Exception when we use tokenInterceptor, which is same as https://issues.apache.org/jira/browse/WW-4028 issue. I'm trying with struts2 2.3.20 and even tried with 2.3.24.

Re: Struts 2.3.15 and Tiles 3 Plugin

2015-01-13 Thread Sreekanth S. Nair
stener to initialize the tiles 3.I have followed all > instruction in plugin page. > On Jan 13, 2015 11:39 PM, "Sreekanth S. Nair" < > sreekanth.n...@egovernments.org> wrote: > > > The following could be the root cause of the problem > >

Re: Struts 2.3.15 and Tiles 3 Plugin

2015-01-13 Thread Sreekanth S. Nair
The following could be the root cause of the problem Caused by: java.lang.ClassNotFoundException: org.apache.tiles.startup.TilesInitializer have you added all the necessary jar's of tiles ? On Wed, Jan 14, 2015 at 9:50 AM, Kiran Badi wrote: > Caused by: java.lang.ClassNotFoundException: > o

Re: replace Java scriptlets in JSP page

2014-12-29 Thread Sreekanth S. Nair
ards 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

Re: validation problem

2014-12-26 Thread Sreekanth S. Nair
try again. On Fri, Dec 26, 2014 at 3:07 PM, Yaragalla Muralidhar < yaragallamur...@gmail.com> wrote: > Hi Sreekanth, >sorry to say this. I tried everything stated in the example that u gave. > but it did not work for me. I am doing something wrong but could not find > out

Re: validation problem

2014-12-25 Thread Sreekanth S. Nair
Ok let me try and will get back to you... On Fri, Dec 26, 2014 at 11:26 AM, Yaragalla Muralidhar < yaragallamur...@gmail.com> wrote: > Hi Sreekanth, > I think i cannot send attachements to the mailing list so i have > uploaded the project to my drive and sharing the l

Re: validation problem

2014-12-25 Thread Sreekanth S. Nair
Can you share a sample project which is not working, and just let me know which server you are trying..? -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.org> Ph :

Re: validation problem

2014-12-25 Thread Sreekanth S. Nair
As Dave said, kindly show some patience. First of validation is nothing to do with theme so just leave the theme alone. 1) Can you try renaming the action class name from SampleRegOne to SampleRegOneAction and same in struts.xml 2) If you give action alias name like below, as far as i underst

Re: Struts2 Migration issue

2014-12-18 Thread Sreekanth S. Nair
Hmmm, may be a stupid question have you remove servlet-mapping as well ? that error is very specific to jetty server, is it possible for you to run the same in tomcat ? -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation &

Re: Struts2 Migration issue

2014-12-17 Thread Sreekanth S. Nair
As i said earlier you need to check your jetty server config.. http://wiki.eclipse.org/Jetty/Howto/Configure_JSP Hope you have tried what is on below link http://javaresolutions.blogspot.in/2014/04/pwc6345-there-is-error-in-invoking.html -- Thanks & Regards Sreekanth S Nair Java Devel

Re: Struts 2 'redirectAction' changes protocol from HTTPS to HTTP

2014-12-16 Thread Sreekanth S. Nair
). -- 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/> <

Re: 2.3.20 Bug with s:action or s:select tag

2014-12-16 Thread Sreekanth S. Nair
Hi Lukasz, Could it be the same problem what i was facing about rest plugin ? Hi Roger, Don't know if you are using rest plugin, if so can remove that plugin and try again ? -- Thanks & Regards Sreekanth S Nair Java

Re: Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-14 Thread Sreekanth S. Nair
Thanks a lot Lukasz... appreciate all your help on fixing this up. WARN :) -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.org> Ph : 9980078913 ---

Re: Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-14 Thread Sreekanth S. Nair
s you suggested in the earlier mail. Anything similar changes ? -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.org> Ph : 9980078913 --- <http://i

Re: Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-14 Thread Sreekanth S. Nair
Yeah i checked out the url and set up the rest as well. thanks for the link. -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.org> Ph : 9980078913 ---

Re: Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-14 Thread Sreekanth S. Nair
:) , all i meant by WARN is to give some clue :), because i was really out of clue why 404 without any ERROR or something. -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.org> Ph :

Re: Struts2 Migration issue

2014-12-14 Thread Sreekanth S. Nair
c6345-there-is-error-in-invoking.html On Mon, Dec 15, 2014 at 2:45 AM, Arpan wrote: > > PWC6345 -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.or

Re: Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-14 Thread Sreekanth S. Nair
I was able to setup, with rest plugin as well. after adding in struts.xml -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.org> Ph : 9980078913 ---

Re: Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-14 Thread Sreekanth S. Nair
hed) to make it better. -- Thanks & Regards Sreekanth S Nair On Mon, Dec 15, 2014 at 12:07 AM, Lukasz Lenart wrote: > > Looks like you HomepageAction was processed and it should be available at > /homepage and /common/homepage - see the log exercise below. What happens > i

Re: Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-14 Thread Sreekanth S. Nair
one i have attached to avoid confusion) that required to be kept in some specific order in the interceptor stack. -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.org

Re: Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-13 Thread Sreekanth S. Nair
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

Re: Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-13 Thread Sreekanth S. Nair
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 :

Re: Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-12 Thread Sreekanth S. Nair
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/pu

Struts2 Not Working After Migrating from 2.3.15.1 to 2.3.20 in Wildfly server

2014-12-12 Thread Sreekanth S. Nair
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 c

Re: Upgrading from Struts 2.0 to 2.3.16

2014-07-15 Thread Sreekanth S. Nair
> Caused by: java.lang.NoSuchMethodError: > org.apache.tiles.jsp.taglib.InsertAttributeTag.doFinally() > Must be tiles not compatible -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egov

Re: FileUploadBase$UnknownSizeException: the request was rejected because its size is unknown

2014-07-15 Thread Sreekanth S. Nair
Have you checked the controller configuration in struts-config.xml http://struts.apache.org/release/1.3.x/userGuide/configuration.html -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.

Re: Fix security vulnerability

2014-07-10 Thread Sreekanth S. Nair
http://struts.apache.org/struts1eol-announcement.html -- Thanks & Regards Sreekanth S Nair Java Developer --- eGovernments Foundation <http://www.egovernments.org> : 9980078913 --- <http://in.lin

Re: Please help me in resolving the problem(dojo + struts 2)

2014-07-07 Thread Sreekanth S. Nair
in order to develop ajax based application... Which > plugin is more suitable and popular at this point of time.. ? > Is it jquery plugin ? Please help me in choosing the right plugin.. > > Thanks once again > > > > > On Mon, Jul 7, 2014 at 4:49 PM, Sreekanth S. Nair

Re: Please help me in resolving the problem(dojo + struts 2)

2014-07-07 Thread Sreekanth S. Nair
Have you tried using jquery plugin, dojo is outdated plugin for strust2 latest. Fyi : https://cwiki.apache.org/confluence/display/S2PLUGINS/jQuery+plugin+-+Easy+AJAX+and+Widget+Integration -- Thanks & Regards Srikanth Software Developer eGovernments Foundations ww

Re: Error setting expression with Value

2014-06-16 Thread Sreekanth S. Nair
rename your setter & getter method of mAnswerid from setmAnswerid to setMAnswerid and getmAnswerid to getMAnswerid. And same thing is applicable to mQuestionid variable as well. -- Thanks & Regards Srikanth Software Developer eGovernments Foundations www.egovernm

Re: Running two different version of struts2 web app in a EAR

2013-10-17 Thread Sreekanth S. Nair
put all the dependencies - it's safer > > 2013/10/17 Sreekanth S. Nair : > > hmmm, thanks lukazs. If we want to package jars inside WEB-INF/lib/ > which r > > the jars needs to be in WEB-INF/lib to resolve this conflict? only > struts2 > > libs or all dependencie

Re: Running two different version of struts2 web app in a EAR

2013-10-17 Thread Sreekanth S. Nair
ions www.egovernments.org Mob : 9980078913 On Thu, Oct 17, 2013 at 3:46 PM, Lukasz Lenart wrote: > 2013/10/17 Sreekanth S. Nair : > > Hi, > > > > I have an .ear project which contains multiple wars, among this i want to > > run one war using

Running two different version of struts2 web app in a EAR

2013-10-17 Thread Sreekanth S. Nair
Hi, I have an .ear project which contains multiple wars, among this i want to run one war using latest struts2 and others with older version of struts2. In my .ear/lib/ i have older version which used to run older web apps and i'm packaging strust2 latest and its dependency jar in WEB-INF/lib for

Re: Steps Involved in counter measurement for security issues

2013-10-16 Thread Sreekanth S. Nair
at all those .jar files you > > included and run on your server with high level permissions. Those too > > can be full of exploits and most of those libs are just downloaded from > > the net by amateur developers. > > > > Eric Reed > > New York State Department of

Re: Steps Involved in counter measurement for security issues

2013-10-16 Thread Sreekanth S. Nair
980078913 On Wed, Oct 16, 2013 at 4:30 PM, Lukasz Lenart wrote: > 2013/10/16 Sreekanth S. Nair : > > Test Case to test the security vulnerability (major ones) in > > struts2-core-2.1.2. > > Everything you can find is in Struts repository, it's Open Source not

Re: Steps Involved in counter measurement for security issues

2013-10-16 Thread Sreekanth S. Nair
nsuming than going through each and every vulnerability and applying > fixes for them. > > > On Wed, Oct 16, 2013 at 4:17 PM, Sreekanth S. Nair < > sreekanth.n...@egovernments.org> wrote: > > > Test Case to test the security vulnerability (major ones) in > > struts2-co

Re: Steps Involved in counter measurement for security issues

2013-10-16 Thread Sreekanth S. Nair
5 PM, Lukasz Lenart wrote: > 2013/10/16 Sreekanth S. Nair : > > One more doubt, does this security vulnerability is able to bring down > the > > server :-) ? If we authorize ourselves to apache, is it possible for > struts > > team to give us test case to check the vulnerabi

Re: Steps Involved in counter measurement for security issues

2013-10-16 Thread Sreekanth S. Nair
oper eGovernments Foundations www.egovernments.org Mob : 9980078913 On Wed, Oct 16, 2013 at 3:34 PM, Sreekanth S. Nair < sreekanth.n...@egovernments.org> wrote: > Hi, > Thanks Lukazs, but that's too much of task to compare rather i can > migrate ;-).

Re: Steps Involved in counter measurement for security issues

2013-10-16 Thread Sreekanth S. Nair
Hi, Thanks Lukazs, but that's too much of task to compare rather i can migrate ;-). Thanks Antonios, i will refer those links. -- Thanks & Regards sreekanth On Wed, Oct 16, 2013 at 3:25 PM, Antonios Gkogkakis wrote: > Hi Sreekanth, > &

Steps Involved in counter measurement for security issues

2013-10-16 Thread Sreekanth S. Nair
Hi, Due to time and other internal constraints, we are unable to upgrade strust2 to the latest version. So i would like to know if we use old strust2 distro (in my case : struts2-core-2.1.2), what are the counter measurement need to taken care? Regards

Re: Struts2 Invalid Request Page is not showing up

2013-08-12 Thread Sreekanth S. Nair
display the same response* * * that the original, valid action invocation would have displayed if no multiple requests were submitted in the first* * * place.* * * If double submission took place then i'm getting a* blank page* -- Thanks & Regards Srikanth On Mon, Aug 12, 2013 at 1:56 PM, Sr

Struts2 Invalid Request Page is not showing up

2013-08-12 Thread Sreekanth S. Nair
Hi, We are using struts2 latest distribution, where we are using tokenSession interceptor for duplicate submission. Duplicate request processing is working fine but its not showing result page for duplicate form submission which we have defined in strust.xml as below. /error/accessDenied.jsp

  1   2   >