Re: error while uploading file using struts 7

2025-05-19 Thread Lukasz Lenart
wt., 20 maj 2025 o 06:28 Priyanka Vaddadi napisał(a): > WE are receiving document name and document received date and documentTYpeId. > But not actual content of document. > I mean the below variableis not getting populated with data. But the > same variable gets populated with data with st

Re: Error on line 25, column 9 in template/simple/radiomap.ftl

2017-11-08 Thread Yasser Zamani
On 11/8/2017 3:49 PM, albert kao wrote: > However, the same error occurred when my jsp page is changed to the > following. > Please help. Thanks. > > > > I think you want something like where myGoodList is a List If you want to simply show radio buttons list, radio tag can do wi

Re: Error on line 25, column 9 in template/simple/radiomap.ftl

2017-11-08 Thread albert kao
Your suggestion is good! My problem is solved. However, the same error occurred when my jsp page is changed to the following. Please help. Thanks. On Mon, Nov 6, 2017 at 9:04 AM, Yasser Zamani wrote: > > > On 11/6/2017 4:37 PM, Yasser Zamani wrote: > > then define myGoodList as List > > As

Re: Error on line 25, column 9 in template/simple/radiomap.ftl

2017-11-06 Thread Yasser Zamani
On 11/6/2017 4:37 PM, Yasser Zamani wrote: > then define myGoodList as List As you want to use inside an iterator, I think you want myGoodList as List>.

Re: Error on line 25, column 9 in template/simple/radiomap.ftl

2017-11-06 Thread Yasser Zamani
On 11/6/2017 2:53 PM, albert kao wrote: > listValue="value"/> I see that myGoodList is List and String does not have properties named key and value. Please try defining a class named MyGood which has getKey and getValue methods then define myGoodList as List.

Re: Error Struts 2.3.33

2017-09-13 Thread Yasser Zamani
On 9/12/2017 11:09 PM, Yasser Zamani wrote: > I should correct myself; You can write it in both #session['foo'] or > #session.foo > > So, now you should examine that previousBusinessStateList exists in > session on that action call which return that jsp including s:select tag. > Also I remem

Re: Error Struts 2.3.33

2017-09-12 Thread Yasser Zamani
I should correct myself; You can write it in both #session['foo'] or #session.foo So, now you should examine that previousBusinessStateList exists in session on that action call which return that jsp including s:select tag. On 9/12/2017 11:02 PM, Yasser Zamani wrote: > It means you have but St

Re: Error Struts 2.3.33

2017-09-12 Thread Yasser Zamani
It means you have Can someone take a look at this and tell me what exactly it means and > possibly how to resolve? My log file fills up with these. > 12:43:57,952 ERROR > [org.apache.struts2.dispatcher.DefaultDispatcherErrorHandler] > (ajp-jbappprd4/172.26.11.62:8409-4) Exception occurred duri

Re: Error with chekboxlist

2015-10-18 Thread Lukasz Lenart
2015-10-17 16:48 GMT+02:00 Yaragalla Muralidhar : > Hi Lukasz, >I am using struts 2.3.2. I am not using outside action. There is no such version. Maybe it's related to https://issues.apache.org/jira/browse/WW-4168 Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ --

Re: Error with chekboxlist

2015-10-17 Thread Yaragalla Muralidhar
Hi Lukasz, I am using struts 2.3.2. I am not using outside action. *Thanks and Regards,* Muralidhar Yaragalla. *http://yaragalla.blogspot.in/ * On Sat, Oct 17, 2015 at 8:12 PM, Lukasz Lenart wrote: > 2015-10-17 16:39 GMT+02:00 Jasper Rosenberg > : > > I’v

Re: Error with chekboxlist

2015-10-17 Thread Lukasz Lenart
2015-10-17 16:39 GMT+02:00 Jasper Rosenberg : > I’ve seen this behavior a couple of times over the years, and I’m sorry that > I can’t recall the exact issue when I’ve tracked it down, but basically > something is null, probably either the “samples” list, or an element in that > list. Maybe it

Re: Error with chekboxlist

2015-10-17 Thread Jasper Rosenberg
I’ve seen this behavior a couple of times over the years, and I’m sorry that I can’t recall the exact issue when I’ve tracked it down, but basically something is null, probably either the “samples” list, or an element in that list. -Jasper > On Oct 17, 2015, at 10:23 AM, Lukasz Lenart wrote: >

Re: Error with chekboxlist

2015-10-17 Thread Lukasz Lenart
Do you use that JSP outside of an action? Struts version? I've been testing with the latest SNAPSHOT and no such problem 2015-10-16 11:28 GMT+02:00 Yaragalla Muralidhar : > Hi , > the following is the code in jsp. > > > > samples is an arraylist of strings. > > when i put the above tag i am gett

Re: Error with chekboxlist

2015-10-16 Thread Yaragalla Muralidhar
Hi, Any help on this will be appreciated. Thanks in advance. *Thanks and Regards,* Muralidhar Yaragalla. *http://yaragalla.blogspot.in/ * On Fri, Oct 16, 2015 at 2:58 PM, Yaragalla Muralidhar < yaragallamur...@gmail.com> wrote: > Hi , > the following is the code

Re: Error setting expression with Value

2014-06-16 Thread NIJO GEORGE
I have done it and my error got resolved. My Current problem is the value is not getting updated. I'm getting a NullPointerException while getting value from above fields. The values which are set to those hidden fields are not retriving properly by Action Class. I'm getting 0(Zero) always On M

Re: Error setting expression with Value

2014-06-16 Thread Lukasz Lenart
Or you can try to use OGNL 3.0.8 which solves that problem (it's a drop-in dependency) https://issues.apache.org/jira/browse/WW-3909 https://github.com/jkuhnert/ognl#release-notes---version-308 2014-06-16 10:29 GMT+02:00 Sreekanth S. Nair : > rename your setter & getter method of mAnswerid from s

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: Error setting expression with Value

2014-06-16 Thread NIJO GEORGE
import com.dieutek.examsoft.entities.ExmAnswers; import com.dieutek.examsoft.entities.ExmQuestion; import com.dieutek.examsoft.implementors.AnswerImplementor; import com.dieutek.examsoft.implementors.QuestionImplementor; import static com.opensymphony.xwork2.Action.SUCCESS; import com.opensymphony.

Re: Error setting expression with Value

2014-06-15 Thread Lukasz Lenart
Can you show your action? Looks like a issue with setters 2014-06-14 14:57 GMT+02:00 NIJO GEORGE : > > > > 17:58:54,084 ERROR > [com.opensymphony.xwork2.interceptor.ParametersInterceptor] > (http--127.0.0.1-8080-6) Developer Notification (set struts.devMode to false > to disable this message):

Re: Error message's is not XHTML valid

2014-03-12 Thread Lukasz Lenart
All these errorFor's are used to identify tags which present error messages and allow to delete them using JS. I'm not sure but maybe XHTML allows custom attributes, if not we can use id with prefix, ie: http://www.lenart.org.pl/ 2014-03-10 19:49 GMT+01:00 Fredrik Andersson : > Hello guys! > > I m

Re: ERROR Dispatcher:27 - Could not find action or result No result defined for action com.xinghen.view.action.GoodAction and result input

2013-12-03 Thread Lukasz Lenart
I don't understand what you're talking about ... Missing label shouldn't be a problem 2013/12/3 xinghen : > i used bean.attrName in the jsp instead of modelDriven , but i'm > confused about if i don't define some struts lable that define in the bean > , the web work can't work ... > > > 201

Re: ERROR Dispatcher:27 - Could not find action or result No result defined for action com.xinghen.view.action.GoodAction and result input

2013-12-03 Thread xinghen
i used bean.attrName in the jsp instead of modelDriven , but i'm confused about if i don't define some struts lable that define in the bean , the web work can't work ... 2013/12/3 Lukasz Lenart [via Struts] < ml-node+s1045723n5714838...@n5.nabble.com> > 2013/12/3 xinghen <[hidden > email]

Re: ERROR Dispatcher:27 - Could not find action or result No result defined for action com.xinghen.view.action.GoodAction and result input

2013-12-03 Thread Lukasz Lenart
It shouldn't be a problem - this depends on how have you set up validation 2013/12/3 xinghen : > i think my problems is use the modelDriven , Whether the attribute Bean > inside the must and form one one?i define some attribute in Bean ,but > not in form , is this the problem ? > > > > --

Re: ERROR Dispatcher:27 - Could not find action or result No result defined for action com.xinghen.view.action.GoodAction and result input

2013-12-03 Thread xinghen
i think my problems is use the modelDriven , Whether the attribute Bean inside the must and form one one?i define some attribute in Bean ,but not in form , is this the problem ? -- View this message in context: http://struts.1045723.n5.nabble.com/struts2-action-error-tp5714825p5714834.h

Re: ERROR Dispatcher:27 - Could not find action or result No result defined for action com.xinghen.view.action.GoodAction and result input

2013-12-03 Thread xinghen
i think my problems is use the modelDriven , Whether the attribute Bean inside the must and form one one?i define some attribute in Bean ,but not in form , is this the problem ? 2013/12/3 xinghen [via Struts] > this is the listener : > > > > org.springframework.web.context.ContextLoade

Re: ERROR Dispatcher:27 - Could not find action or result No result defined for action com.xinghen.view.action.GoodAction and result input

2013-12-03 Thread Lukasz Lenart
2013/12/3 xinghen : > i have meet a problem, when commit the form appear the error : ERROR > Dispatcher:27 - Could not find action or result No result defined for action > com.xinghen.view.action.GoodAction and result input I have missed out result name => input means that there was some vali

Re: ERROR Dispatcher:27 - Could not find action or result No result defined for action com.xinghen.view.action.GoodAction and result input

2013-12-03 Thread Lukasz Lenart
2013/12/3 xinghen : > i have meet a problem, when commit the form appear the error : ERROR > Dispatcher:27 - Could not find action or result No result defined for action > com.xinghen.view.action.GoodAction and result input > > this is my struts.xml > > > name="sa

Re: ERROR Dispatcher:27 - Could not find action or result No result defined for action com.xinghen.view.action.GoodAction and result input

2013-12-03 Thread xinghen
this is the listener : org.springframework.web.context.ContextLoaderListener contextConfigLocation classpath:applicationContext*.xml struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepar

Re: ERROR Dispatcher:27 - Could not find action or result No result defined for action com.xinghen.view.action.GoodAction and result input

2013-12-03 Thread Lukasz Lenart
Can you post web.xml? Struts version? 2013/12/3 xinghen : > i have meet a problem, when commit the form appear the error : ERROR > Dispatcher:27 - Could not find action or result No result defined for action > com.xinghen.view.action.GoodAction and result input > > this is my struts.xml >

Re: Error in struts2-archetype-starter

2013-10-11 Thread Antonio Sánchez
El 11/10/2013 12:33 a.m., Lukasz Lenart escribió: And you can start working on that issue [2] which contains link to Wiki page with example CRUD app - O was planning add it as a part of Struts distribution. Started. Please check comments in issue. ---

Re: Error in struts2-archetype-starter

2013-10-10 Thread Lukasz Lenart
2013/10/10 Antonio Sánchez : > Done. Thanks! > I'm having problems with some other archetypes. I'll probable be reporting > about that. > > Also, I'm missing a full CRUD archetype, actually a family of > CRUD+Spring/Guice+JPA/MyBatis... archetypes. If I get support and guidances > I can help with

Re: Error in struts2-archetype-starter

2013-10-10 Thread Antonio Sánchez
Done. I'm having problems with some other archetypes. I'll probable be reporting about that. Also, I'm missing a full CRUD archetype, actually a family of CRUD+Spring/Guice+JPA/MyBatis... archetypes. If I get support and guidances I can help with that. Thanks. El Jueves, 10 de Octubre de

Re: Error in struts2-archetype-starter

2013-10-10 Thread Lukasz Lenart
2013/10/10 Antonio Sánchez : > I've selected it in the struts maven catalog: > > mvn archetype:generate -DarchetypeCatalog=http://struts.apache.org/ > > It seems using the catalog the replacement is not performed. Please create an issue for that, thanks in advance! Regards -- Łukasz + 48 606 32

Re: Error in struts2-archetype-starter

2013-10-10 Thread Antonio Sánchez
I've selected it in the struts maven catalog: mvn archetype:generate -DarchetypeCatalog=http://struts.apache.org/ It seems using the catalog the replacement is not performed. El Jueves, 10 de Octubre de 2013 12:10:15 a.m., Lukasz Lenart escribió: How did you use that archetype? mvn archetype:

Re: Error in struts2-archetype-starter

2013-10-09 Thread Lukasz Lenart
How did you use that archetype? mvn archetype:generate -DarchetypeCatalog=http://struts.apcahe.org/ ? And then ${package} should be replaced with package name you have defined. Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ ---

Re: Error on every concurrent deployment.

2013-07-26 Thread Sreekanth S. Nair
Yes it is. -- Thanks & Regards Srikanth Software Developer eGovernments Foundations www.egovernments.org Mob : 9980078913 On Fri, Jul 26, 2013 at 1:19 PM, Lukasz Lenart wrote: > So this is probably related to > https://issues.ap

Re: Error on every concurrent deployment.

2013-07-26 Thread Lukasz Lenart
So this is probably related to https://issues.apache.org/jira/browse/WW-4152 2013/7/26 Sreekanth S. Nair : > yes thats right and my local wars/lib don't have any lib of struts2. > > -- > Thanks & Regards > Srikanth > Software Developer > > eGovernments Foundations

Re: Error on every concurrent deployment.

2013-07-26 Thread Sreekanth S. Nair
yes thats right and my local wars/lib don't have any lib of struts2. -- Thanks & Regards Srikanth Software Developer eGovernments Foundations www.egovernments.org Mob : 9980078913 On Fri, Jul 26, 2013 at 1:11 PM, Lukasz Lenart wr

Re: Error on every concurrent deployment.

2013-07-26 Thread Lukasz Lenart
So you have many war archives in one ear archive? Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2013/7/26 Sreekanth S. Nair : > Yes, its an ear deployment and all my struts libs are in .ear/lib/ folder > > -- > Thanks & Regards > Srikanth > Software Developer > --

Re: Error on every concurrent deployment.

2013-07-26 Thread Sreekanth S. Nair
Yes, its an ear deployment and all my struts libs are in .ear/lib/ folder -- Thanks & Regards Srikanth Software Developer eGovernments Foundations www.egovernments.org Mob : 9980078913 On Fri, Jul 26, 2013 at 1:08 PM, Lukasz Lena

Re: Error on every concurrent deployment.

2013-07-26 Thread Lukasz Lenart
Do you put framework's lib in JBoss shared library folder? I mean all the app instances use the same libs? Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2013/7/26 Sreekanth S. Nair : > Hi, >I'm using eclipse + jboss 7 to deploy my struts2 latest distro app... > gettng this fo

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-16 Thread Lukasz Lenart
2013/7/15 Sreekanth S. Nair : > Sorry i didn get you. > > You mean directly under WebContant folder? Is like this the following > > struts2-core.jar/ template to WebContent/template > struts2-jquery-plugin/template to WebContent/template (as it is or static > and .flt should be in seperate folder )

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-15 Thread Sreekanth S. Nair
Even extracting static content to local web-app also throwing the same error if we don't mapped with /*. -- Thanks & Regards Srikanth Software Developer eGovernments Foundations www.egovernments.org Mob : 9980078913 On Mon, Jul

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-15 Thread Sreekanth S. Nair
Sorry i didn get you. You mean directly under WebContant folder? Is like this the following struts2-core.jar/ template to WebContent/template struts2-jquery-plugin/template to WebContent/template (as it is or static and .flt should be in seperate folder ) strust2-core.jar/org/apache/struts2/stat

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-15 Thread Lukasz Lenart
2013/7/15 Sreekanth S. Nair : > Sorry to bother you, > templates (.flt) has to be put inside template folder thats quite right but > still confused with freemarker template to be moved or not. > > My doubt is not about template files but about the these static contents. > Where i have to add these

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-15 Thread Lukasz Lenart
2013/7/15 Sreekanth S. Nair : > Some legacy jsp's are still using dojo tags, to keep it we are maintaining > dojo. And about Jquery, template/jquery/ folder contains .flt, what i have > to do with this? once i extracted where i suppose to add in My web app, > static or struts directory? Put next

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-15 Thread Sreekanth S. Nair
Sorry to bother you, templates (.flt) has to be put inside template folder thats quite right but still confused with freemarker template to be moved or not. My doubt is not about template files but about the these static contents. Where i have to add these static files ? inside a *static* or *stru

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-15 Thread Sreekanth S. Nair
Some legacy jsp's are still using dojo tags, to keep it we are maintaining dojo. And about Jquery, template/jquery/ folder contains .flt, what i have to do with this? once i extracted where i suppose to add in My web app, static or struts directory? -- Thanks & Regards Srikanth Software Develop

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-15 Thread Lukasz Lenart
2013/7/15 Sreekanth S. Nair : > Struts2-core & dojo-plugin is fine and its straight forward. But in jquery > plugin there is no static folder, one template folder is there (this > contains both flt and some js and css). Why do you mix dojo plugin (deprecated) with jquery? And what I see, the folde

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-15 Thread Sreekanth S. Nair
Struts2-core & dojo-plugin is fine and its straight forward. But in jquery plugin there is no static folder, one template folder is there (this contains both flt and some js and css). -- Thanks & Regards Srikanth Software Developer eGovernments Foundations www.ego

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-15 Thread Lukasz Lenart
It's very easy, extract struts2-core and check folder structure, the same with jquery plugin. You can also disable serving static content by Struts http://struts.apache.org/development/2.x/docs/static-content.html Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2013/7/15 Sreekanth

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-15 Thread Sreekanth S. Nair
/* basically works but i felt its unnecessary to map filter with /* url pattern. As you said extracting all static resource to appropriate folder would work. But i have no idea about which / what all have to be extracted (even this may help in strust2 performance). Since i have posted a query long

Re: Error while using struts-jquery-plugin 3.6.0 + sitemesh-2.4.2.jar + struts 2.3.15

2013-07-14 Thread Lukasz Lenart
2013/7/13 Sreekanth S. Nair : > Hi, > > I'm getting the following exception when i try to use > strust2-jquery-plugin, My web.xml fragment for struts2 as follows. > > > struts2Prepare > *.action > > > sitemesh > *.action > *.jsp > REQUEST > FORWARD > INCLUDE > > > struts2Execute > *.action >

Re: Error while passing list of hidden elements into list of objects

2012-08-06 Thread Arpan
I am using struts1. Can anyone guild how to solve this problem. Thanks On Mon, Aug 6, 2012 at 4:36 PM, Arpan wrote: > Hi All, > > I have a requirement where I am creating hidden input elements and > submitting the form. > > I have a list of objects and my hidden elements "name" attribute shoul

Re: Error "Function 'json:serialize' specifies 5 params, but 1 were declared" on WebLogic

2011-09-17 Thread Maurizio Cucchiara
Well done! Maurizio Cucchiara Il giorno 17/set/2011 00.36, "JOSE L MARTINEZ-AVIAL" ha scritto: > Well, I opened a ticket with Oracle, and send them a testcase. They > determined that it is a bug with the parsing of EL expression on WebLogic > 10.3.0 for Windows. Later versions are not affected.

Re: Error "Function 'json:serialize' specifies 5 params, but 1 were declared" on WebLogic

2011-09-16 Thread JOSE L MARTINEZ-AVIAL
Well, I opened a ticket with Oracle, and send them a testcase. They determined that it is a bug with the parsing of EL expression on WebLogic 10.3.0 for Windows. Later versions are not affected. Thank you for your help! 2011/8/31 Maurizio Cucchiara > IIRC some application server provide their "

Re: Error "Function 'json:serialize' specifies 5 params, but 1 were declared" on WebLogic

2011-08-31 Thread Maurizio Cucchiara
IIRC some application server provide their "custom" implementation of the taglib library. Looks like a WebLogic issue, after all there is no reason it works on Linux (and also as you noticed, there is only one function declaration inside JsonPlugin.tld). Maurizio Cucchiara On 31 August 2011 06:

Re: Error "Function 'json:serialize' specifies 5 params, but 1 were declared" on WebLogic

2011-08-30 Thread JOSE L MARTINEZ-AVIAL
BTW, I just upgraded to Strus-2.2.3, and it fails too, but this time the errors says Function 'json:serialize' specifies 6 params, but 1 were declared. 2011/8/30 JOSE L MARTINEZ-AVIAL > It's strange. I remove the c:put, deploy the war, and it failed again. When > I took a look at the java code g

Re: Error "Function 'json:serialize' specifies 5 params, but 1 were declared" on WebLogic

2011-08-30 Thread JOSE L MARTINEZ-AVIAL
It's strange. I remove the c:put, deploy the war, and it failed again. When I took a look at the java code generated by the JSP, and it has the following declaration static private weblogic.jsp.internal.jsp.JspFunctionMapper _jspx_fnmap = weblogic.jsp.internal.jsp.JspFunctionMapper.getInstance();

Re: Error "Function 'json:serialize' specifies 5 params, but 1 were declared" on WebLogic

2011-08-30 Thread Maurizio Cucchiara
Also, you should verify against the latest version (2.2.3). Again, IIRC there should be some similar trouble with the version you are using. Maurizio Cucchiara On 30 August 2011 21:51, JOSE L MARTINEZ-AVIAL wrote: > Hi, > >  I'm using Struts 2.1.8, with plugin struts2-json-plugin-2.1.8.1.jar i

Re: Error "Function 'json:serialize' specifies 5 params, but 1 were declared" on WebLogic

2011-08-30 Thread Maurizio Cucchiara
Did you try without c:out? IIRC out call shoul be useless. Maurizio Cucchiara Il giorno 30/ago/2011 21.52, "JOSE L MARTINEZ-AVIAL" ha scritto: Hi, I'm using Struts 2.1.8, with plugin struts2-json-plugin-2.1.8.1.jar in an application deployed on WebLogic 10.3 ovver RedHat. We've been using the

Re: ERROR [http-8080-Processor24]

2011-07-29 Thread Paul Benedict
Your string failed converting to a BigDecimal. Likely your form validation is incorrect or not running at all. See the javadoc on BigDecimal to determine what are correct formats for the String you want to convert. On Thu, Jul 28, 2011 at 5:25 AM, ian11976 wrote: > Can anyone help me with this er

Re: Error 404: com.ibm.ws.webcontainer.servlet.exception.NoTargetForURIException:

2011-07-13 Thread sivaks75
I did complete rebuild and worked fine without any changes -- View this message in context: http://struts.1045723.n5.nabble.com/Error-404-com-ibm-ws-webcontainer-servlet-exception-NoTargetForURIException-tp4581593p4583717.html Sent from the Struts - User mailing list archive at Nabble.com. -

RE: error JSTL

2011-05-16 Thread Ilya Kazakevich
onday, May 16, 2011 4:28 PM To: Struts Users Mailing List Subject: Re: error JSTL I have resolved the problem by changing the URI, the one witch I was using is : <%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %>, or the good one would be : <%@ taglib uri=&quo

Re: error JSTL

2011-05-16 Thread Mohamed SIDI
I have resolved the problem by changing the URI, the one witch I was using is : <%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %>, or the good one would be : <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %> thanks to you two for your willingness 2011/5/16 Ilya Kazakev

RE: error JSTL

2011-05-16 Thread Ilya Kazakevich
You use JSTL 1.0 and EL is not allowed in properties there. Try to use newer version of JSTL. Ilya Kazakevich, Developer JetBrains Inc http://www.jetbrains.com "Develop with pleasure!" -Original Message- From: Mohamed SIDI [mailto:mhm.s...@gmail.com] Sent: Monday, May 16, 2011 4:15 PM

[OT] Re: error JSTL

2011-05-16 Thread Dave Newton
On Mon, May 16, 2011 at 8:14 AM, Mohamed SIDI wrote: > Static attribute must be a String literal, its illegal to specify an > expression Did you try searching the web for an answer? Sometimes just copying an error message verbatim is enough. Dave

Re: error while running code of struts2.x and hibernate 3.3: java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I

2011-02-12 Thread abhishek jain
On Sat, Feb 12, 2011 at 9:47 PM, Dave Newton wrote: > On Sat, Feb 12, 2011 at 10:58 AM, abhishek jain > wrote: > > I am not doing any dependency management, i am just relying on myeclipse, > > what is the best way, > > I'm not sure; I haven't used MyEclipse in some time (but I did for > quite aw

Re: error while running code of struts2.x and hibernate 3.3: java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I

2011-02-12 Thread Dave Newton
On Sat, Feb 12, 2011 at 10:58 AM, abhishek jain wrote: > I am not doing any dependency management, i am just relying on myeclipse, > what is the best way, I'm not sure; I haven't used MyEclipse in some time (but I did for quite awhile; very often worth the (minimal) cost. I would strongly pursue

Re: error while running code of struts2.x and hibernate 3.3: java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I

2011-02-12 Thread abhishek jain
On Sat, Feb 12, 2011 at 8:12 PM, Dave Newton wrote: > On Sat, Feb 12, 2011 at 9:39 AM, abhishek jain > wrote: > > no, i am not that experienced in java to do dependency management > manually, > > i just tried removing the library after the probelm just in case it > solved > > How are you doing d

Re: error while running code of struts2.x and hibernate 3.3: java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I

2011-02-12 Thread Dave Newton
On Sat, Feb 12, 2011 at 9:39 AM, abhishek jain wrote: > no, i am not that experienced in java to do dependency management manually, > i just tried removing the library after the probelm just in case it solved How are you doing dependency management? Dave

Re: error while running code of struts2.x and hibernate 3.3: java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I

2011-02-12 Thread abhishek jain
no, i am not that experienced in java to do dependency management manually, i just tried removing the library after the probelm just in case it solved thanks abhi On Sat, Feb 12, 2011 at 8:06 PM, Dave Newton wrote: > You need to determine which versions you're actually depending on. > > Are you

Re: error while running code of struts2.x and hibernate 3.3: java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I

2011-02-12 Thread Dave Newton
You need to determine which versions you're actually depending on. Are you attempting to do dependency management manually?! Dave On Sat, Feb 12, 2011 at 9:32 AM, abhishek jain wrote: > hi, > I am using myeclipse , and using its own default classpath. > I have two antlr-2.7.2.jar in Struts cor

Re: error while running code of struts2.x and hibernate 3.3: java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I

2011-02-12 Thread abhishek jain
hi, I am using myeclipse , and using its own default classpath. I have two antlr-2.7.2.jar in Struts core libraries and antlr-2.7.6.jar in hibernate core libraries. I tried removing antlr-2.7.2.jar and still the problem persists. thanks abhishek On Sat, Feb 12, 2011 at 7:05 PM, Maurizio Cucchi

Re: error while running code of struts2.x and hibernate 3.3: java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I

2011-02-12 Thread Maurizio Cucchiara
It looks like there something wrong in your dependencies. Check your classpath (I'm not sure, but at first glance it'd seem the antlr library version). I could be proprably wrong but it not seems a struts problem. Maurizio Cucchiara Il giorno 12/feb/2011 14.20, "abhishek jain" ha scritto: > hi,

Re: error while running code of struts2.x and hibernate 3.3: java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I

2011-02-12 Thread Dave Newton
Chances are you're not running using the same classpath. Dave On Sat, Feb 12, 2011 at 8:20 AM, abhishek jain wrote: > hi, > I am running a simple search of a product via Hibernate on struts code, > the code runs fine when i run via a function in public static void main > > when i run the same co

Re: Error validating struts-2.0.dtd

2010-12-28 Thread Li Ying
May be something getting wrong in Eclipse IDE. Try: (1)Delete the whole project from Eclipse IDE. But NOT delete the project content from the file system (2)Import the project to Eclipse again (3)Clean the project And see if the error get cleared? -

Re: Error validating struts-2.0.dtd

2010-12-28 Thread Stefaan Somers
* There is no problem on the level of firewall/proxy, because I can do software updates within eclipse without any problems * if something is broken in dependencies, how can I check this?? The strange thing is if I deploy it directly on my web-server, it works without any problems On 28 December 2

Re: Error validating struts-2.0.dtd

2010-12-28 Thread Maurizio Cucchiara
At first glance your struts.xml seems to be ok. I don't know the eclipse environment, the only two things that come to my mind are: 1 you are behind a firewall/proxy and eclipse is not be aware of this 2 there is something broken in your dependencies 2010/12/28 Stefaan Somers : > I have create th

Re: Error Message on the page source

2010-06-30 Thread Paweł Wielgus
Hi, did your app start without any problems? It looks like there is something wrong on startup. Best greetings, Paweł Wielgus. 2010/6/28 Nadipally, Srikar : > > Hi, > > I am a struts 2 beginner, I have written a basic login struts application and > when I inspect the page source of the welcome.

Re: Error in Weblogic

2010-06-09 Thread Abhishek Doctor
I do have xwork-core.jar included. Regards, Abhishek From: Lukasz Lenart To: Struts Users Mailing List Sent: Wed, June 9, 2010 1:51:14 AM Subject: Re: Error in Weblogic 2010/6/8 Abhishek Doctor : > am trying to deploy simple hello world application f

Re: Error in Weblogic

2010-06-08 Thread Lukasz Lenart
2010/6/8 Abhishek Doctor : >  am trying to deploy simple hello world application from APACHE STRUTS > TUTORIAL on weblogic after exporting war files from Eclipse. I am Do you have xwork jar included? Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ Kapituła Javarsovia 2010 http://ja

Re: Error in running juit test case for struts2 action class

2010-05-03 Thread rameshbabu
Thanks for ur reply. I have another problem with the StrutsSpringTestCase. This is my code. -- import org.apache.struts2.StrutsSpringTestCase; import ipl.admin.action.RoleMasterNewAction; import ipl.admin.beans.RoleMasterNewBeanRemote; impo

Re: Error in running juit test case for struts2 action class

2010-04-30 Thread Wes Wannemacher
Short story, use StrutsSpringTestCase (from the junit plugin) instead of the StrutsTestCase. Long story - your unit tests aren't running inside of the web-app context. The web.xml listener configuration instantiates the applicationContext and puts it in the application scope where other spring com

Re: Error creating form bean - struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-08 Thread Nanu Khota
I tried the same code with tomcat 5.5.28 server and surprisingly... it worked absolutely fine. But got no clue of what's wrong with weblogic 8.0. PS: Sandeep, Iam working with struts 1.2, please see the subject line. NanuOn Fri, 02 Apr 2010 00:14:44 +0530 wrote>in struts 2 we don't have form be

RE: Error creating form bean struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-01 Thread adam pinder
seems like form definition isn't in struts config file or properly defined > Date: Thu, 1 Apr 2010 11:45:42 + > To: user@struts.apache.org > Subject: Error creating form bean struts 1.2 + weblogic 8.1 + myeclipse 5.5 > From: nanukh...@rediffmail.

Re: Error: Cannot get a connection, pool error Timeout waiting for idle object

2010-03-15 Thread abhishek jain
Hi friends, Additional to the config file i also realized that the connection with my server never ends when viewed on browser, i mean the status bar always says that "Waiting for URL.", Pl. help on the Error: Cannot get a connection, pool error Timeout waiting for idle object, thanks abhish

Re: Error: Cannot get a connection, pool error Timeout waiting for idle object

2010-03-14 Thread abhishek jain
Hi friends, I am still having the problem, here is the config in my struts-config.xml thanks abhishek On Sat, Mar 13, 2010 at 4:48 PM, abhishek jain wrote: > Hi friends. > I am using strurts 1 with mysql and is using the datasource in > struts-config.xml. > I am gettting th

Re: Error 500 problem.

2009-10-09 Thread Musachy Barroso
It seems like ajaxtags is doing something that xerces doesn't like: On Fri, Oct 9, 2009 at 10:44 AM, Bruno wrote: > at org.apache.xerces.parsers.DOMParser.parse(Unknown Source) >    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source) >    at > net.sourceforge.ajaxtags.tags.BaseAja

Re: error : 404: There is no Action mapped for namespace / and action name showlogin.

2009-10-07 Thread RogerV
barkha.jasani wrote: > > Hi Folks, > > I've deployed my application in tomcat but when i hit the url to call my > action,i'm facing this error..here is the detailed log, > > http://pastebin.com/d3e33ffdf > > please have a look at this and kindly do the needful if you know the > solution. >

Re: error : 404: There is no Action mapped for namespace / and action name showlogin.

2009-10-07 Thread barkha.jasani
i did this then also getting the same error :( Lukasz Lenart wrote: > > 2009/10/7 barkha.jasani : >> please have a look at this and kindly do the needful if you know the >> solution. > > Add attribute namespace="/" to your action's config > > > Regards > -- > Lukasz > http://www.lenart.org.p

Re: error : 404: There is no Action mapped for namespace / and action name showlogin.

2009-10-07 Thread Lukasz Lenart
2009/10/7 barkha.jasani : > please have a look at this and kindly do the needful if you know the > solution. Add attribute namespace="/" to your action's config Regards -- Lukasz http://www.lenart.org.pl/ http://dailylog.lenart.org.pl/ --

Re: Error while deploying struts2 Application

2009-10-07 Thread barkha.jasani
yeah i'm doing that all.. thanks again for sparing your invaluable time buddy!!! :-) Lukasz Lenart wrote: > > The config is ok and the class as well, I'm not Eclipse expert bur you > have to check config for building and deploying classes for that > project > > > Regards > -- > Lukasz > htt

Re: Error while deploying struts2 Application

2009-10-07 Thread Lukasz Lenart
The config is ok and the class as well, I'm not Eclipse expert bur you have to check config for building and deploying classes for that project Regards -- Lukasz http://www.lenart.org.pl/ http://dailylog.lenart.org.pl/ - To uns

Re: Error while deploying struts2 Application

2009-10-07 Thread barkha.jasani
here is my struts.xml and action class http://pastebin.com/d27d7619b and yeah your guess is correct,action's class file is not created at destination folder:( Lukasz Lenart wrote: > > 2009/10/7 barkha.jasani : >> dunno y its not getting my struts.xml and because of that my action >> class

Re: Error while deploying struts2 Application

2009-10-07 Thread Lukasz Lenart
2009/10/7 barkha.jasani : > dunno y its not getting my struts.xml and because of that my action class... Exactly, could you show your struts.xml? Caused by: Action class [com.hello.ShowLogin] not found - action - file:/C:/apache-tomcat-5.5.26/webapps/UserLogin/WEB-INF/classes/struts.xml:7:63 Ans

Re: Error while deploying struts2 Application

2009-10-07 Thread barkha.jasani
Hi Lukasz, first of all thanks a lot for replying.. anyways sorry 4 the inconvenience,here is the error log http://pastebin.com/d225c201c dunno y its not getting my struts.xml and because of that my action class... please go through it.. Thanks, Barkha Jasani Lukasz Lenart wrote: > >

Re: Error while deploying struts2 Application

2009-10-06 Thread Lukasz Lenart
Hi, You have to send some more informative logs with stacktraces and so on... there is nothing special in what you sent Regards -- Lukasz http://www.lenart.org.pl/ http://dailylog.lenart.org.pl/ - To unsubscribe, e-mail: user-

Re: error at import package with struts 1.3.8

2009-08-25 Thread Yessica Brinkmann
I resolved my question. Thanks. Yessica Brinkmann 2009/8/25, Yessica Brinkmann : > > Hello. > I am using Struts 1.3.8 with NetBeans IDE 6.7.1. > In my code i import a struts package writing: > import org.apache.struts.action.*; > When I try to built my application i have this error: > package org

Re: Error creating bean with name 'org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor'

2009-07-27 Thread Musachy Barroso
On Mon, Jul 27, 2009 at 4:44 PM, desi wrote: > is java.lang.Unsupport > edClassVersionError: Bad version number in .class file That means that you are running the application on a jvm whose version is older that the version that the code was compiled for, the code was probably compiled with/for 1.

  1   2   3   4   5   >