Re: ExecuteAndWaitInterceptor Issue - Not getting request object at some where

2008-11-27 Thread stewart
I will be out of the office, and mostly without email access, until Dec 1. Please contact the One World office, 605-845-7172, with any general needs, and Danny Nickels, [EMAIL PROTECTED], at the same number, for any technical or integration issues. If this is an emergency, please feel free to

Exception when using ServletActionRedirectResult with @Result

2008-11-27 Thread amin1977
Hi I am trying to redirect the success of an action to another action using the following: @Results({ @Result(name=success, value=viewContact, params= {namespace, /, contactId, ${contactId}, contactType, ${contactType}}, type=ServletActionRedirectResult.class), @Result(name=error,

Re: ExecuteAndWaitInterceptor Issue - Not getting request object at some where

2008-11-27 Thread Nils-Helge Garli Hegvik
What is it that you're trying to do with this code? It will be easier to help if you show us what you're actually trying to achieve (although I have a feeling based on your previous questions...). Nils-H On Thu, Nov 27, 2008 at 11:24 AM, nikunj [EMAIL PROTECTED] wrote: Dear All, I am using

RE: ExecuteAndWaitInterceptor Issue - Not getting request object at some where

2008-11-27 Thread nikunj
Nils-H I am checking stability and performance of this interceptor. Attach file having code which I want to perform successfully. Can please tell me what I can do with this code to resolve issue. Regards, Nikunj -Original Message- From: Nils-Helge Garli Hegvik [mailto:[EMAIL PROTECTED]

Struts2 Validations

2008-11-27 Thread Anshuman Nanda
Greetings Everyone, Facing a Issue with Struts2 Validations. Inspite of adding validate='true' in my JSP form tag, The javascript doesn't get generated for client side validations. Has anyone faced the same issue?.I do have the validation interceptor part for

Struts - indexed property problem with jdk1.5 - overloaded get/set method with same name - for Struts Team

2008-11-27 Thread Rajil
Hello Struts Guru; I am using jdk1.4, struts1.0 and tomcat4.1 for my application. And I wanted to upgrade my application to jdk1.5. Struts1.0 had some problem with jdk1.5. I was not able to interpret two property with the same name, one is indexed and other is not. E.g. I have one

Re: Struts2 2.0.11 problem with url and parameters

2008-11-27 Thread Tomi21
OK, good news!! I've installed a fresh apache tomcat 6.018 and everything is working now. The problem is that my app. must run on a 0c4j 10.1.3.1. It seems that there is a problem with oc4j. Does anyone know what problem can be? Can anyone tell me wich are the minimum .jar's needed in order

RE: Problem is using struts 1.2.9 validator

2008-11-27 Thread Rajil
Hi; You first make sure that it doesn't throw any error. Have you checked for errors in your log files? Check your standard-out and standard-error files. And let us know the errors if any. If you don't find any error in those log files. Then use following steps: 1. Remove all the code from

RE: ExecuteAndWaitInterceptor Issue - Not getting request object at some where

2008-11-27 Thread nikunj
] For additional commands, e-mail: [EMAIL PROTECTED] __ NOD32 3645 (20081127) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com - To unsubscribe, e-mail: [EMAIL PROTECTED

ExecuteAndWaitInterceptor Issue - Not getting request object at some where

2008-11-27 Thread nikunj
Dear All, I am using ExecuteAndWaitInterceptor. Action contain following code in execute method. 1. for(int i=0; i10; i++) 2. { 3.Thread.sleep(10); 4.logger.debug(i+ ) Name : +Thread.currentThread().getName()); 5.logger.debug(request : +

Re: Struts2 2.0.11 problem with url and parameters

2008-11-27 Thread Nils-Helge Garli Hegvik
Maybe it's something wrong with your runtime environment. Try setting your project up on a different fresh app server (or maybe try the maven jetty plugin) and see if you get the same behaviour there. Nils-H On Thu, Nov 27, 2008 at 11:58 AM, Tomi21 [EMAIL PROTECTED] wrote: I know, but I did it

Re: Exception when using ServletActionRedirectResult with @Result

2008-11-27 Thread Paweł Wielgus
Hi Amin, do You have: - getContactId() - getContactType() public methods in this action? Best greetings, Paweł Wielgus. 2008/11/27 amin1977 [EMAIL PROTECTED]: Hi I am trying to redirect the success of an action to another action using the following: @Results({ @Result(name=success,

Re: ExecuteAndWaitInterceptor Issue - Not getting request object at some where

2008-11-27 Thread Nils-Helge Garli Hegvik
There's no attachment here. I don't think there's an issue with the stability of the interceptor... If you're still trying to fix the issue of the request not beeing sharable between threads, then you're not going to succeed. You have to fix it by adapting your code. If you can't get the objects

Re: Struts2 2.0.11 problem with url and parameters

2008-11-27 Thread Tomi21
I know, but I did it just in case I found something out. In my previous example the println it is being execute but the value of test is NULL.In other words, the action gets executed but the parameter is not set. Now, as you said in your post, I've changed the link to:

RE: ExecuteAndWaitInterceptor Issue - Not getting request object at some where

2008-11-27 Thread nikunj
Thanks Ravindra, But, I am getting error at line no 6 not at line no 3. Regards, Nikunj -Original Message- From: ravindra [mailto:[EMAIL PROTECTED] Sent: Thursday, November 27, 2008 4:01 PM To: 'Struts Users Mailing List' Subject: RE: ExecuteAndWaitInterceptor Issue - Not getting

RE: ExecuteAndWaitInterceptor Issue - Not getting request object at some where

2008-11-27 Thread ravindra
Try using this, Thread.currentThread().sleep(10); instead of Thread.sleep(10); _ From: nikunj [mailto:[EMAIL PROTECTED] Sent: Thursday, November 27, 2008 3:54 PM To: 'Struts Users Mailing List' Subject: ExecuteAndWaitInterceptor Issue - Not getting request object at some where

Re: Exception when using ServletActionRedirectResult with @Result

2008-11-27 Thread amin1977
Hi Yes I do have these in the ViewContact action Cheers Paweł Wielgus wrote: Hi Amin, do You have: - getContactId() - getContactType() public methods in this action? Best greetings, Paweł Wielgus. 2008/11/27 amin1977 [EMAIL PROTECTED]: Hi I am trying to redirect the success

JSR268 - Portlet Plugin - does it support portlet:namespace/

2008-11-27 Thread Torsten Krah
Hi. Work ist still in progress i know to support jsr268 spec. Does Struts2 Tags already support portlet:namespace/ feature? If not i am really interested in how to handle this to make params interceptor work - i guess stripping of the portlet:namespace / should all which have to be done - maybe

Re: JSR268 - Portlet Plugin - does it support portlet:namespace/

2008-11-27 Thread Nils-Helge Garli Hegvik
The portlet namespace should be transparent from the portlet point of view when getting request parameters. I've not had problems with this when I have been testing. Nils-H On Thu, Nov 27, 2008 at 6:52 PM, Torsten Krah [EMAIL PROTECTED] wrote: Hi. Work ist still in progress i know to support

s:select tag causing could not be resolved as a collection/array/map/enumeration/iterator type error

2008-11-27 Thread Mark Greene
Hi All, After a couple of days I can't seem to figure this validation problem out. I have a basic JSP form (create.jsp) with a textfield (with validation) and a select list (WITHOUT validation). When I submit the form to trigger a validation failure on purpose, the text field is validated

Re: s:select tag causing could not be resolved as a collection/array/map/enumeration/iterator type error

2008-11-27 Thread Dave Newton
You submit to HelloWorld, which doesn't have the list. Dave --- On Thu, 11/27/08, Mark Greene [EMAIL PROTECTED] wrote: From: Mark Greene [EMAIL PROTECTED] Subject: s:select tag causing could not be resolved as a collection/array/map/enumeration/iterator type error To:

Fwd: Exception when using ServletActionRedirectResult with @Result

2008-11-27 Thread Amin Mohammed-Coleman
Hi I am trying to redirect the success of an action to another action using the following: @Results({ @Result(name=success, value=viewContact, params= {namespace, /, contactId, ${contactId}, contactType, ${contactType}}, type=ServletActionRedirectResult.class),

Re: s:select tag causing could not be resolved as a collection/array/map/enumeration/iterator type error

2008-11-27 Thread Mark Greene
AhI never would of thought of that. I was under the impression that submitting the option value from the select list would of been enough but it appears I misjudged how the life cycle works. In any case, thank you so much for pointing that out so quickly Dave. I also had to implement

Struts2 - After BD dataload app never starts

2008-11-27 Thread David Canos
We were working in our application without any problems until today (the application loaded fast and the publish time was around 4 seconds). After filling the tables the application never starts. We have load: num of rows: 24,5M BD size: 1,1Gb While start the application the log says...

Re: JSR268 - Portlet Plugin - does it support portlet:namespace/

2008-11-27 Thread Torsten Krah
Am Donnerstag, 27. November 2008 19:13:01 schrieb Nils-Helge Garli Hegvik: The portlet namespace should be transparent from the portlet point of view when getting request parameters. I've not had problems with this when I have been testing. Yeah thats right. But from the jsp perspective, does

Re: JSR268 - Portlet Plugin - does it support portlet:namespace/

2008-11-27 Thread Nils-Helge Garli Hegvik
Yes, I'm aware of that requirement. Unfortunately, no it's not supported. It's one of the things I wanted to do right from the beginning, but haven't managed to do since it would require quite a big change in the tags/components in the core. With JSR286 this is of course even more important since

Re: Re: JSR268 - Portlet Plugin - does it support portlet:namespace/

2008-11-27 Thread stewart
I will be out of the office, and mostly without email access, until Dec 1. Please contact the One World office, 605-845-7172, with any general needs, and Danny Nickels, [EMAIL PROTECTED], at the same number, for any technical or integration issues. If this is an emergency, please feel free to