RE: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
Yes the value of dt_oid is null at that point. Im trying to figure out how i can populate it at that point . -- View this message in context: http://struts.1045723.n5.nabble.com/loading-Dropdown-dynamically-from-database-tp3555885p3672845.html Sent from the Struts - User mailing list archive at

RE: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
Is there any way that i can set the value of one attribute that i obtain from the database in this case objid as given in the loaddomaintype ()method DAO class , to dt_oid , through the jsp Please advise -- View this message in context:

Re: loading Dropdown dynamically from database

2011-03-15 Thread Brian Thompson
Try making the following changes to your Java code -- the output should give you some clues about what's going wrong. -Brian On Sun, Mar 13, 2011 at 11:52 PM, JavaNoobie87 vivek...@enzentech.comwrote: Hi All, Im developing a Crud example using Struts 2 where im in the need to load values for

Re: JSON Plugin - my execute method is being called twice

2011-03-15 Thread Johannes Geppert
if you are using validation it is normaly that you get two requests. the first request is for validation and the second is the expected request. Johannes -- View this message in context:

Re: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
Following changes? I didnt get what you meant. i dont see any code :S -- View this message in context: http://struts.1045723.n5.nabble.com/loading-Dropdown-dynamically-from-database-tp3555885p3683230.html Sent from the Struts - User mailing list archive at Nabble.com.

Re: loading Dropdown dynamically from database

2011-03-15 Thread Brian Thompson
Oh, nevermind -- I replied before I saw that you'd solved that part of it :/ -Brian On Tue, Mar 15, 2011 at 2:40 AM, JavaNoobie87 vivek...@enzentech.comwrote: Following changes? I didnt get what you meant. i dont see any code :S -- View this message in context:

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread jlmagc
Humm, I think you need to be far more clear in your problem/request. I assume you are navigating from one JSP to that Action, right? And in that navigation you have a value that you need to put in the Action to load the list. If that is the case, Struts will populate automatically any parameter

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread jlmagc
Just to comment that Struts2 will populate the parameter from the request if you aure using the corresponding interceptor, or the default stack. --Mensaje original-- De: Yo Para: Struts Users Mailing List Responder a: Yo Asunto: Re: RE: loading Dropdown dynamically from database Enviado:

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
I am submitting a form in the page and trying to store the value in a bean (in the action class )and trying to use that bean to insert a row( but the values from the form aren't being reflected onto the bean and hence the NPE) , however I dont know how the values i submit from the form can be

Re: Unable to pass a date as a parameter a action

2011-03-15 Thread Steven Yang
try setting devMode=true and set logging to DEBUG and see what message you get On Sat, Mar 12, 2011 at 2:59 AM, Jainitya jainitya.jaiys...@gmail.comwrote: Hi I have to pass a parmeter to action s:url action=DailyShopStockChart id=url s:param name=date value=date/ /s:url Now

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JOSE L MARTINEZ-AVIAL
Well, ParametersInterceptor should take care of that. Do you have devMode enable? check the logs, you should find there if it is been used, and if it is working. 2011/3/15 JavaNoobie87 vivek...@enzentech.com I am submitting a form in the page and trying to store the value in a bean (in the

Re: JSON Plugin - my execute method is being called twice

2011-03-15 Thread Rodrigo Esteban Cares Guarda
Hi, if you have the method execute and getJSON in your action class, try comment the execute method. Greetings El mar, 15-03-2011 a las 00:27 -0700, Johannes Geppert escribió: if you are using validation it is normaly that you get two requests. the first request is for validation and the

Re: JSON Plugin - my execute method is being called twice

2011-03-15 Thread Muneer Malik
You mean have all your action logic in getJSON? On Tuesday, March 15, 2011, Rodrigo Esteban Cares Guarda rca...@gmail.com wrote: Hi, if you have the method execute and getJSON in your action class, try comment the execute method. Greetings El mar, 15-03-2011 a las 00:27 -0700, Johannes

Re: Urgent excepton: java.lang.reflect.InvocationTargetException

2011-03-15 Thread abhishek jain
On Tue, Mar 15, 2011 at 9:49 AM, Maurizio Cucchiara maurizio.cucchi...@gmail.com wrote: It looks like that your action execution fails inside the method you defined for the action. You should look inside the invocation target exception (through the get cause method) in order to investigate

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
devmode is disabled (I have never used it before) and how do I implement the ParamsInterceptor and whats the use of the same ? -- View this message in context: http://struts.1045723.n5.nabble.com/loading-Dropdown-dynamically-from-database-tp3555885p3710199.html Sent from the Struts - User

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread Dave Newton
Are you aware there is Struts 2 documentation? http://struts.apache.org/2.x/docs/parameters-interceptor.html But I think the interceptor in question is the parameter filter interceptor: http://struts.apache.org/2.x/docs/parameter-filter-interceptor.html Dave On Tue, Mar 15, 2011 at 12:57 PM,

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JOSE L MARTINEZ-AVIAL
You can activate devMode putting this in you struts.xml struts constant name=struts.devMode value=false / [...] /struts The ParameterInterceptor is in the default stack of Struts2. If you are using the default stack, it should work automatically. If not, you need to add it to your

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JOSE L MARTINEZ-AVIAL
Sorry, you need to put constant name=struts.devMode value=true / 2011/3/15 JOSE L MARTINEZ-AVIAL jlm...@gmail.com You can activate devMode putting this in you struts.xml struts constant name=struts.devMode value=false / [...] /struts The ParameterInterceptor is in the default stack

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JOSE L MARTINEZ-AVIAL
Dave is right as usual. I was writing from memory. 2011/3/15 Dave Newton davelnew...@gmail.com Are you aware there is Struts 2 documentation? http://struts.apache.org/2.x/docs/parameters-interceptor.html But I think the interceptor in question is the parameter filter interceptor:

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
Im aware of the documentation .My question was how parameters interceptor would be of use to me , for this particular application. -- View this message in context: http://struts.1045723.n5.nabble.com/loading-Dropdown-dynamically-from-database-tp3555885p3710504.html Sent from the Struts - User

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JOSE L MARTINEZ-AVIAL
It will take the parameter from the request and call the setter in your action, so you will have the parameter available in you action. 2011/3/15 JavaNoobie87 vivek...@enzentech.com Im aware of the documentation .My question was how parameters interceptor would be of use to me , for this

Re: Delivery Status Notification (Failure)

2011-03-15 Thread Muneer Malik
I tried the getJSON as well, the action is being called twice this means my logic would execute twice for an AJAX call. INFO [http-8080-6] net.polymorphic.emr.common.Validation.EsignCodeValidator validate- Esign Validator being used DEBUG [http-8080-6]

Re: Delivery Status Notification (Failure)

2011-03-15 Thread Muneer Malik
Johannes, if you are using validation it is normally that you get two requests. the first request is for validation and the second is the expected request but only one request should get to the action logic and not both other wise the action logic would be called twice and this is what is

Re: JSON Plugin - my execute method is being called twice

2011-03-15 Thread Rodrigo Esteban Cares Guarda
Yes, you can try this. Greetings El mar, 15-03-2011 a las 10:16 -0500, Muneer Malik escribió: You mean have all your action logic in getJSON? On Tuesday, March 15, 2011, Rodrigo Esteban Cares Guarda rca...@gmail.com wrote: Hi, if you have the method execute and getJSON in your

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
As Suggested ive set the devmode to true and as hinted the error is being thrown by the Parameters interceptor , as im new to coding im not being able to figure out where I'm going wrong .Ive put logging into the action ,dao classes and attached them here . The stack trace is as below. my logging

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread Dave Newton
On Wed, Mar 16, 2011 at 12:12 AM, mv wrote: SEVERE: ParametersInterceptor - [setParameters]: Unexpected Exception caught setting 'domainType' on 'class com.vivek.struts2.action.DomainAction1: Error setting expression 'domainType' with value '[Ljava.lang.String;@aea710' I'd say you're trying to

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JOSE L MARTINEZ-AVIAL
In the action there is no setDomainType. Is it suppoused to be a parameter received from the user? where is it used? 2011/3/16 Dave Newton davelnew...@gmail.com On Wed, Mar 16, 2011 at 12:12 AM, mv wrote: SEVERE: ParametersInterceptor - [setParameters]: Unexpected Exception caught setting

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread Dave Newton
On Wed, Mar 16, 2011 at 12:27 AM, JOSE L MARTINEZ-AVIAL wrote: In the action there is no setDomainType. (Just for completeness, that's not necessarily correct; this error may occur under some type conversion conditions.) Dave

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JOSE L MARTINEZ-AVIAL
Well, you are right, but I didn't say that that was the error :D. I just pointed to that because AFAIK a setter is needed for the parameterinterceptor to work, right?. Any case, and looking at the error '[Ljava.lang.String;@aea710', is it possible that it's receving an array? to what should it try

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
The domaintype is of type string .Im using it to store the domain type that is selected from the master table (domain table) obtained through the jsp (ie from the user ) after he selects values from the dropdown . The jsp snippet for the same is placed below

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread Dave Newton
The snippet doesn't actually help, and can't you just include small samples in the email itself? The headerKey is a number, what are the ones filled by the tag? What does the setDomainType method take as a parameter? Have you defined any custom type converters? Dave On Wed, Mar 16, 2011 at

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
JOSE L MARTINEZ-AVIAL wrote: Well, you are right, but I didn't say that that was the error :D. I just pointed to that because AFAIK a setter is needed for the parameterinterceptor to work, right?. Any case, and looking at the error '[Ljava.lang.String;@aea710', is it possible that it's

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
Dave Newton-6 wrote: The snippet doesn't actually help, and can't you just include small samples in the email itself? The headerKey is a number, what are the ones filled by the tag? What does the setDomainType method take as a parameter? Have you defined any custom type converters?

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JOSE L MARTINEZ-AVIAL
humm, that snippet is not in the Action you gave before. Can you provide the current version of the Action ? 2011/3/16 JavaNoobie87 vivek...@enzentech.com Dave Newton-6 wrote: The snippet doesn't actually help, and can't you just include small samples in the email itself? The

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
No its not present in the action class. That snippet was taken from the bean class, that im using to set the values. Pardon my ignorance , but should i set it in the action class too? (because i dont use it in the action class directly ). The bean class is just a set of getters and setters that im

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JOSE L MARTINEZ-AVIAL
Struts does not know that yo want to should map that domainType to your bean. It wil try to map the parameters received from the request to the action. So for each parameter it founds in the request received from the user, it is gonna look in the action for a setparameterName. If I remember

Re: RE: loading Dropdown dynamically from database

2011-03-15 Thread JavaNoobie87
JOSE L MARTINEZ-AVIAL wrote: Struts does not know that yo want to should map that domainType to your bean. It wil try to map the parameters received from the request to the action. So for each parameter it founds in the request received from the user, it is gonna look in the action for a