Re: Re: JSR268 - Portlet Plugin - does it support

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 c

Re: JSR268 - Portlet Plugin - does it support

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: JSR268 - Portlet Plugin - does it support

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, d

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... ServletCon

Re: 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 prepare()

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: 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: tag causing could not be resolved as a > collection/array/map/enumeration/iterator type error > To: user@struts.apache.org

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 correctl

Re: JSR268 - Portlet Plugin - does it support

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 suppor

JSR268 - Portlet Plugin - does it support

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

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

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

2008-11-27 Thread nikunj
>> Ahmedabad >> >> 91-98249 88262 >> >> > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > __ NOD32 3644 (20081126) Information __ > > This message was checked by NOD32 antivirus system. > http://www.eset.com > > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > - To unsubscribe, e-mail: [EMAIL PROTECTED] 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] For additional commands, e-mail: [EMAIL PROTECTED]

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: 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 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 ActionForm

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

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: 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="succ

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]

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

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

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: http://localhost:/TestW

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="err

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 requ

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 c

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

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; i<10; i++) 2. { 3.Thread.sleep(10); 4.logger.debug(i+ ") Name : "+Thread.currentThread().getName()); 5.logger.debug("request : " +