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

2014-07-07 Thread manoj . sharma
Hi Ratna, Just go to Jquery Ajax API this url and you will find all ajax implementation. you just need to specify url, data, and type and on success what ever you want to do just do... Re: Please help me in resolving the problem(dojo + struts 2) Ratna Kar to

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

2014-07-07 Thread Ratna Kar
Thanks srikanth and manoj. Please point me good documentation w.r.t jquery struts 2. I want to do some samples w.r.t ajax and i need to add the required jar's before doing the sample apps. (please suggest good documentation link to know these things.) On Mon, Jul 7, 2014 at 5:11 PM, Sreekanth S.

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

2014-07-07 Thread manoj . sharma
Hi Ratna, For AJAX implementation JQuery is best as you can find lots of option and example to implement it. Re: Please help me in resolving the problem(dojo + struts 2) Ratna Kar to: Struts Users Mailing List 07/07/2014 05:11 PM Please respond to "Struts

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

2014-07-07 Thread Sreekanth S. Nair
Yes its, within my knowledge, jquery plugin is at the top priority now. -- Thanks & Regards Srikanth Software Developer eGovernments Foundations www.egovernments.org Mob : 9980078913 On Mon, Jul 7, 2014 at 5:08 PM, Ratna Kar wro

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

2014-07-07 Thread Ratna Kar
Thanks Srikanth.. Seems like there is a bug on the above issue.. https://issues.apache.org/jira/browse/WW-4349 Also seems like dojo plugin is going to be deprecated from the next major release 2.5.. Can any one confirm this.. One more question, in order to develop ajax based application... Which

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: Please Help with struts2

2009-09-27 Thread Konstantyn Harasevich
status required false if org.apache.struts2.views.jsp.IfTag JSP test required false else org.apache.struts2.views.jsp.ElseTag JSP id required false

Re: Please Help with struts2

2009-09-26 Thread musomesa
Do you also have an exception for the decorator tag library? The one you have in your post is for the page tag library. Check that you have the struts2-sitemesh-plugin jar in WEB-INF/lib because that is where those tag libraries are. Also check that your web.xml has the appropriate elements fo

RE: Please Help with struts2

2009-09-26 Thread Martin Gainty
ourni. > Date: Sat, 26 Sep 2009 15:26:57 -0400 > From: newton.d...@yahoo.com > To: user@struts.apache.org > Subject: Re: Please Help with struts2 > > Konstantyn Harasevich wrote: > > Here is exception relative to this taglib in NetBeans7.1: > > <%@ tagl

Re: Please Help with struts2

2009-09-26 Thread Dave Newton
Konstantyn Harasevich wrote: Here is exception relative to this taglib in NetBeans7.1: <%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator"; prefix="decorator" %> org.apache.jasper.JasperException: /WEB-INF/decorators/main.jsp(26,72) PWC6188: The absolute uri: http://www.opensymph

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-08 Thread SofIAm
You're correct. That was exactly the problem. Thanks for responding! satyanarayana katta wrote: > > Take a close look at your getAllEmployees()method. You have declared the > list with same name myList, which is a local variable. You need to either > call setList and pass this or use the

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-08 Thread satyanarayana katta
Take a close look at your getAllEmployees()method. You have declared the list with same name myList, which is a local variable. You need to either call setList and pass this or use the samelist. public String getAllEmployees() { //remove the List List myList = new Ar

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-08 Thread SofIAm
That's great! I'll look into that. Thanks again. Jim Kiley wrote: > > The checkstyle, FindBugs, or PMD plugin does this for sure. > > On Thu, May 7, 2009 at 8:50 PM, Dave Newton wrote: > >> SofIAm wrote: >> >>> Thank YOU ALL! What a dumb JAVA 101 mistake! I was never populating the >>> class

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-07 Thread Jim Kiley
The checkstyle, FindBugs, or PMD plugin does this for sure. On Thu, May 7, 2009 at 8:50 PM, Dave Newton wrote: > SofIAm wrote: > >> Thank YOU ALL! What a dumb JAVA 101 mistake! I was never populating the >> class >> member variable myList, but the local one in my method, unintentionally of >> co

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-07 Thread Dave Newton
SofIAm wrote: Thank YOU ALL! What a dumb JAVA 101 mistake! I was never populating the class member variable myList, but the local one in my method, unintentionally of course. DUH!!! It's working like a charm! Thanks again! There is a warning available in Eclipse to notify you when a local

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-07 Thread SofIAm
Thank YOU ALL! What a dumb JAVA 101 mistake! I was never populating the class member variable myList, but the local one in my method, unintentionally of course. DUH!!! It's working like a charm! Thanks again! Timothy Orme wrote: > > Ah good catch, this is whats causing it. Although as I

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-07 Thread Timothy Orme
Ah good catch, this is whats causing it. Although as I said, you dont need to rename the method if you've setup your struts.xml as it is. Jim Kiley wrote: Even then it won't be OK. The OP is declaring myList as a local variable in getAllEmployees(), so getMyList won't return it. Change the li

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-07 Thread Timothy Orme
This is actually not correct, he defined the method as "getAllEmployees" in his struts.xml That said, I'm not sure of the default behavior of the s:property tag. Have you tried something like s:property value="top"? I'm not huge on the struts tag libs, but this would be the first place I'd lo

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-07 Thread Jim Kiley
Even then it won't be OK. The OP is declaring myList as a local variable in getAllEmployees(), so getMyList won't return it. Change the line "List myList = new ArrayList();" in getAllEmployees() to just be "myList = new ArrayList();" and do as Lukasz suggests and you should be OK. jk On Thu, May

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-07 Thread Lukasz Lenart
2009/5/7 SofIAm : >        public String getAllEmployees() { This method is never called, renamed it to execute() and should be ok Regards -- Lukasz http://www.lenart.org.pl/ - To unsubscribe, e-mail: user-unsubscr...@struts.a

Re: please help me

2009-04-07 Thread Lukasz Lenart
2009/4/7 PEGASUS84 : > public class DataOre { >    List giorno=new ArrayList(); > > > >  public DataOre(){ >    giorno = new ArrayList(); You already created list, not needed > <%...@page import="bean.DataOre"%> > listValue="giorno" /> You can't use that bean directly, it has to be returned by g

Re: please help me

2009-04-07 Thread Nils-Helge Garli Hegvik
ter and the Map >> value will become the option body. "" >> >> Now, you have list as "DataOre".  This is not, as the documentation says, >> an >> "Iterable source to populate from". >> >> M. >> >> -----Origi

RE: please help me

2009-04-07 Thread PEGASUS84
M. > > -Original Message- > From: PEGASUS84 [mailto:pegasu...@hotmail.it] > Sent: Tuesday, April 07, 2009 12:56 PM > To: user@struts.apache.org > Subject: Re: please help me > > > this is my bean > package bean; > import java.util.*; > > p

RE: please help me

2009-04-07 Thread Security Management
have list as "DataOre". This is not, as the documentation says, an "Iterable source to populate from". M. -Original Message- From: PEGASUS84 [mailto:pegasu...@hotmail.it] Sent: Tuesday, April 07, 2009 12:56 PM To: user@struts.apache.org Subject: Re: please hel

Re: please help me

2009-04-07 Thread PEGASUS84
this is my bean package bean; import java.util.*; public class DataOre { List giorno=new ArrayList(); public DataOre(){ giorno = new ArrayList(); giorno.add("Sunday"); giorno.add("Monday"); giorno.add("Tuesday"); giorno.add("Wednesday"); giorno.add("

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-03-10 Thread sajidbigler
Hi Kavita, If you use http://www.nabble.com/Please-help-to-get-Arabic-i18n%28internationalization%29-using-struts2.1.6-tp2312p22437387.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-03-09 Thread kavita P
Hi Friends, I am also trying out the same example and facing the same problem. I am trying to make japanese locale but not able to do that. I have saved the package_ja.properties file as UTF-8 type. I have tried all the option mention below but all in vain. Can anyone please help. Appriciate

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-03-01 Thread sajidbigler
Hi Dave, Its like when i tried struts2-blank-2.1.6.war example and its working fine.here the logic is not much more complicated.here returns proper i18n even Arabic. this tag wont return proper Arabic i18n .unless we do . i really dint understand how come spanish ,german work but not Arabic.

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-03-01 Thread Dave Newton
sajidbigler wrote: we can make it in Spanish,German and few but few we cant.which we cant is Arabic. is this a bug can i report to devlopment list?can any one help me out? :( Can you describe the exact problem again? Under what circumstances are you unable to get localized Arabic messages? D

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-03-01 Thread sajidbigler
we can make it in Spanish,German and few but few we cant.which we cant is Arabic. is this a bug can i report to devlopment list?can any one help me out? :( -- View this message in context: http://www.nabble.com/Please-help-to-get-Arabic-i18n%28internationalization%29-using-struts2.1.6-tp2312

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-02-27 Thread sajidbigler
i have changed to Still problem din't resolved. How about these too are not i18n only works fine More over i am able to see following warnings in console Feb 28, 2009 12:56:15 PM com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn WARNING: Could not find property [theme] Feb

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-02-27 Thread Nuwan Chandrasoma
http://struts.apache.org/2.x/docs/how-do-i-add-i18n-to-a-ui-tag-like-the-textfield-tag.html sajidbigler wrote: Hi, have you tried this. Thanks, Nuwan Hi Nuwan, I tried and i got it as you said to

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-02-27 Thread sajidbigler
Hi, have you tried this. Thanks, Nuwan Hi Nuwan, I tried and i got it as you said to Can you please elaborate what exactly it conveys to browser and what was going wrong ? But still that doest

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-02-26 Thread sajidbigler
Hi Nuwan, Thanks a lot for your quick response. I am doing that by using following site http://www.utf.ru/tables/arabic.html i am using sample example struts2-blank-2.1.6.war HelloWorld.jsp ar Arabic package_ar.properties HelloWorld.message=

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-02-26 Thread sajidbigler
Hi Numan, I am doing that by using following site http://www.utf.ru/tables/arabic.html i am using sample example struts2-blank-2.1.6.war HelloWorld.jsp ar Arabic package_ar.properties HelloWorld.message= ت requiredstring = ${getText(fieldName)}

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-02-26 Thread Nuwan Chandrasoma
Hi, you have to convert the arabic into Unicode and put to the message properties file, Thanks, Nuwan sajidbigler wrote: Hi Friends, I tried struts2-blank-2.1.6.war example and its working fine.but when i tried to make it arabic locale i am not able to make it :( with reference to below li

Re: Please help! Validation Errors

2008-12-15 Thread Faraz Ali
08 09:47:33 +0800 > > From: farazali.fa...@gmail.com > > To: user@struts.apache.org > > Subject: Re: Please help! Validation Errors > > > > Any idea? > > > > On Fri, Dec 12, 2008 at 6:04 PM, Faraz Ali > wrote: > > > > > Hi Andy

RE: Please help! Validation Errors

2008-12-14 Thread Martin Gainty
08 09:47:33 +0800 > From: farazali.fa...@gmail.com > To: user@struts.apache.org > Subject: Re: Please help! Validation Errors > > Any idea? > > On Fri, Dec 12, 2008 at 6:04 PM, Faraz Ali wrote: > > > Hi Andy, > > > > Please take a look at the code snipp

Re: Please help! Validation Errors

2008-12-14 Thread Faraz Ali
Any idea? On Fri, Dec 12, 2008 at 6:04 PM, Faraz Ali wrote: > Hi Andy, > > Please take a look at the code snippet and suggest. > > *MyAction.java* > public class MyAction extends ActionSupport { > //getAction > //setAction > public String execute() throws Exception { > if(action==1) { >

Re: Please help! Validation Errors

2008-12-12 Thread Faraz Ali
Hi Andy, Please take a look at the code snippet and suggest. *MyAction.java* public class MyAction extends ActionSupport { //getAction //setAction public String execute() throws Exception { if(action==1) { return "input"; } elseif(action==2) { return "showResult"; } else { retur

Re: Please help! Validation Errors

2008-12-10 Thread Andy Sykes
Faraz, I think at this point some code would help. Could you post your struts.xml, and the action? Andy. On 10 Dec 2008, at 17:16, Faraz Ali wrote: Yes Andy, you are right. I added the , but why it is executing automatically. It is executed automatically when i start my application. On

Re: Please help! Validation Errors

2008-12-10 Thread Dave Newton
--- On Wed, 12/10/08, Faraz Ali wrote: > i mean when i access my application's main page. when i > hit http://localhost:8080/mywebapp. If you hit an action that has validations then this is correct behavior. There are a few ways to handle this, including defining an action that runs the action's

Re: Please help! Validation Errors

2008-12-10 Thread Faraz Ali
i mean when i access my application's main page. when i hit http://localhost:8080/mywebapp. On Thu, Dec 11, 2008 at 1:20 AM, Dave Newton <[EMAIL PROTECTED]> wrote: > --- On Wed, 12/10/08, Faraz Ali wrote: > > Yes Andy, you are right. I added the , but why it > > is executing automatically. It i

Re: Please help! Validation Errors

2008-12-10 Thread Dave Newton
--- On Wed, 12/10/08, Faraz Ali wrote: > Yes Andy, you are right. I added the , but why it > is executing automatically. It is executed automatically when i start > my application. What do you mean by "when i start my application"? Are you visiting a URL? Dave

Re: Please help! Validation Errors

2008-12-10 Thread Faraz Ali
Yes Andy, you are right. I added the , but why it is executing automatically. It is executed automatically when i start my application. On Wed, Dec 10, 2008 at 6:19 PM, Andy Sykes <[EMAIL PROTECTED]> wrote: > Faraz, > > When using validation, the input result tells Struts where to > dispatch/redi

Re: Please help! Validation Errors

2008-12-10 Thread Andy Sykes
Faraz, When using validation, the input result tells Struts where to dispatch/ redirect to if there's a validation error. When you submit the form, Struts checks the fields against the validation XML - if there's an error, it adds FieldError objects to the FieldErrors object on the value s

Re: Please help me in Coding

2008-01-31 Thread Martin Gainty
Good Morning can you display or attach the following files? your working copy of Struts2HelloWorld.java your working copy of HelloWorld.jsp your working copy of login.jsp your working copy of loginsuccess.jsp your working copy of ControlTagsIf.jsf Thanks M- - Original Message - From: "iha

Re: Please help me in Coding

2008-01-31 Thread Mark McLaren
You could try: I'm sure there are many such CSV related utilities out there. Mark On Jan 31, 2008 9:32 AM, Antonio Petrelli <[EMAIL PROTECTED]> wrote: > 2008/1/31, ihaveareason <[EMAIL PROTECTED]>: > > > > > > Hi, > > Any one please help in coding i have

Re: Please help me in Coding

2008-01-31 Thread Antonio Petrelli
2008/1/31, ihaveareason <[EMAIL PROTECTED]>: > > > Hi, > Any one please help in coding i have to bring CSV(comma separated values) > datas through struts.I can able to run java file successfully,but iam > getting errors in Struts.xml. Here by i pasted the java file and > Struts.xml. > Please help m

Re: Please Help: [Struts 1.3]Getting a ServletFilter Sample working

2007-10-26 Thread Laurie Harper
That looks OK; perhaps you didn't deploy the filter class correctly? You need to go through your Tomcat logs and find out what prevented it from starting up. L. enthucoder wrote: Hi, I am testing a Servlet Filter usage. And somehow, my application doesn't even start in Tomcat 5.5. Please hel

[OT]Re: Re: Please Help: [Struts 1.3]Getting a ServletFilter Sample working

2007-10-26 Thread sriharsha . chevuru
errors Oct 26, 2007 2:46:53 PM org.apache.catalina.core.ApplicationContext log INFO: HTMLManager: list: Listing contexts for virtual host 'localhost' Dave Newton <[EMAIL PROTECTED]> 10/26/2007 04:00 PM Please respond to "Struts Users Mailing List" To Struts Users Mailing List cc Subject [

[OT] Re: Please Help: [Struts 1.3]Getting a ServletFilter Sample working

2007-10-26 Thread Dave Newton
--- enthucoder <[EMAIL PROTECTED]> wrote: > I am testing a Servlet Filter usage. And somehow, my > application doesn't even start in Tomcat 5.5. You should consider asking this on a general-purpose JEE programming list/news group, as this isn't Struts-related. When you do, it would make sense to

Re: Please help me get started

2007-04-20 Thread Ian Roughley
There is also a article / tutorial that I wrote late last year - http://www.infoq.com/articles/converting-struts-2-part1. It has the basic steps to get running. /Ian Shahak Nagiel wrote: Are you comfortable (at least to some degree) with all the technologies discussed in the Primer (http://

Re: Please help me get started

2007-04-19 Thread Ted Husted
To sum up, * http://struts.apache.org/index.html#Newbies -T. On 4/19/07, Session A Mwamufiya <[EMAIL PROTECTED]> wrote: Hello, I tried following the Struts 2 bootstrap tutorial, but even the first piece looks like Martian to me. Could someone please give me a step by step approach to setup

Re: Please help me get started

2007-04-19 Thread Shahak Nagiel
on <[EMAIL PROTECTED]> To: Struts Users Mailing List Sent: Thursday, April 19, 2007 2:55:49 PM Subject: Re: Please help me get started --- Shahak Nagiel <[EMAIL PROTECTED]> wrote: > Problem is, Struts 2 is still too new and I don't > think any books cover it. However, there are bo

Re: Please help me get started

2007-04-19 Thread Dave Newton
--- Shahak Nagiel <[EMAIL PROTECTED]> wrote: > Problem is, Struts 2 is still too new and I don't > think any books cover it. However, there are books > out there for Struts 1 (e.g. > http://www.amazon.com/Struts-Complete-Reference-2nd/dp/0072263865/ref=pd_bbs_sr_1/103-0332319-3664651?ie=UTF8&s=bo

Re: Please help me get started

2007-04-19 Thread Musachy Barroso
Seems like someone hasn't been looking at the bootstrap (me) :) musachy On 4/19/07, Dave Newton <[EMAIL PROTECTED]> wrote: --- Musachy Barroso <[EMAIL PROTECTED]> wrote: > On 4/19/07, Session A Mwamufiya >> Could someone please give me a step by step >> approach to setup struts 2 (like 1. move

Re: Please help me get started

2007-04-19 Thread Shahak Nagiel
Are you comfortable (at least to some degree) with all the technologies discussed in the Primer (http://struts.apache.org/primer.html)? If not, that's probably a good place to start. If you want/need a lot of hand-holding, your best bet is probably a good book (which tend to go into a lot more

Re: Please help me get started

2007-04-19 Thread Dave Newton
--- Musachy Barroso <[EMAIL PROTECTED]> wrote: > On 4/19/07, Session A Mwamufiya >> Could someone please give me a step by step >> approach to setup struts 2 (like 1. move this [...] > You might want to start by creating a project using > the maven archetype: Bootstrap includes creating an app via

Re: Please help me get started

2007-04-19 Thread Musachy Barroso
You might want to start by creating a project using the maven archetype: http://struts.apache.org/2.0.6/docs/struts-maven-archetypes.html regards musachy On 4/19/07, Session A Mwamufiya <[EMAIL PROTECTED]> wrote: Hello, I tried following the Struts 2 bootstrap tutorial, but even the first pi

Re: Please help: Struts tags don't evaluate any expressions

2007-03-25 Thread Vijay Venkataraman
Irene, Quick question, why can't you move to Servlet 2.4 since you are working with Tomcat 5. There are lot of good things that come with JSP 2.0 which can be applied that will make developers more productive. When i joined my project it was on Tomcat 5 and Struts 1.2.4. but on JSP 1.2. I jus

Re: Please help: Struts tags don't evaluate any expressions

2007-03-20 Thread irene
Hi Laurie, It works! i'm not using servlet 2.4 specification. Now it works (but i have to change the taglib declaration to <%@ taglib uri="http://java.sun.com/jstl/core_rt"; prefix="c" %>) Thanks a lot, I wanted to avoid the use of scriptlets. Laurie Harper wrote: > > You probably *don't* wan

Re: Please help: Struts tags don't evaluate any expressions

2007-03-16 Thread Laurie Harper
You probably *don't* want the -el taglibs on Tomcat 5. You will need to make sure your web.xml uses the Servlet 2.4 style namespace declaration, though, to get EL working. For scriptlets, your problem is invalid syntax. An attribute value can be either plain text, or an RT expression. You can'

Re: Please help: Struts tags don't evaluate any expressions

2007-03-16 Thread Ed Griebel
I've done EL expressions like you want to do. Try using the -el version of the html tag: On 3/16/07, irene <[EMAIL PROTECTED]> wrote: Hi, I have a problem with Struts tags. I can't use any expression (EL, runtime) in the tag attributes : The result is an error: Invalid argument l

RE: Please Help: Problem in implementing Tiles Controller

2007-02-21 Thread Strachan, Paul
I can't see "q1Choice" defined in your tiles, it looks like you have defined the attribute only on request scope. "header","contact","footer" are tiles attributes - just comment out the and you might be OK. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thur

RE: [OT] Re: Please help

2006-05-04 Thread Meenakshi Singh
ruts Users Mailing List; [EMAIL PROTECTED] Subject: RE: [OT] Re: Please help c'mon dont be lazy why dont you try googling yaar. -Original Message- From: Meenakshi Singh [mailto:[EMAIL PROTECTED] Sent: Thursday, May 04, 2006 5:16 PM To: 'Struts Users Mailing List' Subject: RE: [

RE: [OT] Re: Please help

2006-05-04 Thread Roy, Ansuman
c'mon dont be lazy why dont you try googling yaar. -Original Message- From: Meenakshi Singh [mailto:[EMAIL PROTECTED] Sent: Thursday, May 04, 2006 5:16 PM To: 'Struts Users Mailing List' Subject: RE: [OT] Re: Please help Would u suggest any? Thanks & Regards, MS --

RE: [OT] Re: Please help

2006-05-04 Thread Meenakshi Singh
Would u suggest any? Thanks & Regards, MS -Original Message- From: Roy, Ansuman [mailto:[EMAIL PROTECTED] Sent: Thursday, May 04, 2006 5:08 PM To: Struts Users Mailing List Subject: RE: [OT] Re: Please help why not try microsoft pocket pc forums. as this is a microsoft product.

RE: [OT] Re: Please help

2006-05-04 Thread Roy, Ansuman
List Subject: [OT] Re: Please help Meenakshi Singh wrote: > However, When i view the same webpage on my Pocket PC 2003 emulator, it does > not work. I was under the impression Pocket PC 2003 runs javascript? Does > anyone know how i can make the emulator support the javascript on

Re: [OT] Re: Please help

2006-05-04 Thread Emmanouil Batsis
Meenakshi Singh wrote: Would u suggest any other way to meet the requirements mentioned in my mail. This is fully covered by CSS. I'm almost sure mobile profile also supports the pseudo classes for links (visited hover etc). BTW this is irrelevant to struts ;-) hth, Manos --

RE: [OT] Re: Please help

2006-05-04 Thread Meenakshi Singh
Would u suggest any other way to meet the requirements mentioned in my mail. Thanks & Regards, MS -Original Message- From: Gareth Evans [mailto:[EMAIL PROTECTED] Sent: Thursday, May 04, 2006 3:42 PM To: Struts Users Mailing List Subject: Re: [OT] Re: Please help From memory i t

Re: [OT] Re: Please help

2006-05-04 Thread Gareth Evans
age- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Thursday, May 04, 2006 12:53 AM To: Struts Users Mailing List Subject: [OT] Re: Please help Meenakshi Singh wrote: However, When i view the same webpage on my Pocket PC 2003 emulator, it does not work. I was under the impression Pocket PC

RE: [OT] Re: Please help

2006-05-04 Thread Meenakshi Singh
the same. Regards, MS. -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Thursday, May 04, 2006 12:53 AM To: Struts Users Mailing List Subject: [OT] Re: Please help Meenakshi Singh wrote: > However, When i view the same webpage on my Pocket PC 2003 emulator, it does &

[OT] Re: Please help

2006-05-03 Thread Dave Newton
Meenakshi Singh wrote: > However, When i view the same webpage on my Pocket PC 2003 emulator, it does > not work. I was under the impression Pocket PC 2003 runs javascript? Does > anyone know how i can make the emulator support the javascript on the above > webpage??? > No, but maybe try a grou

Re: Please help.

2005-10-09 Thread Michael Jouravlev
1) "input" attribute name is misleading. It is not actually an input page, it is a location where control will be forwarded in case of error, that is, if ActionForm.validate() returns non-null non-empty object. 2) Do not navigate directly to JSP page in browser, navigate to action. Action is suppo

Re: Please help.

2005-10-09 Thread Deep Chand
If I do that then I don't see a jsp page asking me to Confirm the data. It goes to the ConfirmAction class but as I said, what I want is Enter info on Page1. Ask for confirmation on Page2 and then insert the data in DB using DataAccess object. Display the data on Page3 that was entered by the user

Re: Please help.

2005-10-09 Thread Jeremiah Johnson
your path for the "customerConfirm" forward should be "/customerConfirm.do" probably but it might be "/do/customerConfirm" depending on what you have in your web.xml. /Jeremiah Deep Chand wrote: Hi All, I'm new to Struts, so please bear with me :). I've a form asking for customer data with f

RE: Please help! I have been looling at this problem for two days

2005-09-21 Thread Kam Lung Leung
Hi Wojciech, Yes, I forgot to put jbossall-client.jar. Now I can see the print out. Thank so much. Kam Lung Leung Struts Users Mailing List wrote: > > What's the appserver? Jboss or Tomcat? > > It seems that you do not have libraries containing javax.ejb.* packages in > server lib direct

RE: Please help! I have been looling at this problem for two days

2005-09-21 Thread Vijaya S
Hi, In your code "mailto:[EMAIL PROTECTED] Sent: Wednesday, September 21, 2005 5:06 AM To: Struts Users Mailing List Subject: Please help! I have been looling at this problem for two days Importance: High Hi, I have a class named UserLoginForm that extend ActionForm. I also have a UserL

Re: Please help! I have been looling at this problem for two days

2005-09-20 Thread Kam Lung Leung
Yes, I do have the Struts Users Mailing List wrote: > > Kam Lung Leung wrote: > > > > > > > > > > > > > > > > > > > > > > > > I don't know anything about the exception you're getting, but do you >

Re: Please help! I have been looling at this problem for two days

2005-09-20 Thread Dave Newton
Kam Lung Leung wrote: I don't know anything about the exception you're getting, but do you have the start tag in your file? Dave -

RE: Please help! I have been looling at this problem for two days

2005-09-20 Thread Wojciech Ciesielski
What's the appserver? Jboss or Tomcat? It seems that you do not have libraries containing javax.ejb.* packages in server lib directory... - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

Re: ??? Please help with including two action results STUPID!!!

2005-02-18 Thread Eric Lemle
STUPID the flush="false" was breaking it. What the heck does that property do, except make you wonder whether it should be true or false or not there at all? It works when it is not there at all. -Eric Eric D. Lemle Senior Programmer / Analyst Intermountain Health Care 36 South State Street

Re: [Please help me!] upgrade from struts 1.1 rc1 to struts 1.1 final

2004-08-10 Thread Andrea Till
Hello, please can someone be so kind to help me. Problem see below. Thanks! Andrea > Hello, > > I didn't neccessarily exspect that someone could recite the steps, but it > could be possibe that someone could do it. To tell the truth I've not > thought that it are so many steps. > Perhaps some

Re: Please HELP with HARD problem: STRUTS-tags VS Proxy, Weblogic loadbalancing, and BASE tag

2004-07-14 Thread John Brayton
> Accessed through the proxy, the RequestUtils.getActionMappingURL() that > (it > appears) does the real work inside those tags produces wrong servername / > port combinations (correct would be the Proxy's name on port 80). You could write a filter to create a ServletRequestWrapper to override rel

Re: Please HELP with HARD problem: STRUTS-tags VS Proxy, Weblogic loadbalancing, and BASE tag

2004-07-13 Thread Craig McClanahan
Lukas Latz wrote: Hi List, Sent this yesterday, but it seemed to not get through to the list. My apologies if it's come through already. : I'm badly stuck with a STRUTS web-app that runs fine on Tomcat, but refuses to bahave nicely in production, where a Netscape Proxy on port 80 maps to a Netscape

RE: Please Help Me To Convert My JSP Scripting Elements To Tags

2004-06-21 Thread McCormack, Chris
Users Mailing List; [EMAIL PROTECTED] Subject: RE: Please Help Me To Convert My JSP Scripting Elements To Tags > -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > > I am converting all the scripting elements in my JSP > to tags. I have decided to go on

RE: Please Help Me To Convert My JSP Scripting Elements To Tags

2004-06-21 Thread Karr, David
> -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > > I am converting all the scripting elements in my JSP > to tags. I have decided to go one step at > the time -- I only want to print out one basic number > as a start. > > My action class passes an object "Tota

Re: Please Help Me To Convert My JSP Scripting Elements To Tags

2004-06-21 Thread salgado.pc
> I replaced: > > int totalPosts = ( ( Integer )request.getAttribute( > "TotalPosts" ) ).intValue(); > with > value="${requestScope.TotalPosts}" /> > > And I replaced: > > <%=totalPosts%> > with > > You are missing the taglib uri for c.tld (included with standard taglibs [for Tomcat 4 use st

RE: Please help: Empty form while error

2004-05-10 Thread Kevich Gan
Geeta, Thanks for the reply! I got it working just now. It was the add.jsp. I did not have the scope="request" in the form tag. I thought that was the default. Now it's working, but I am still vague on why it didn't work in the first place. - Kevich Geeta Ramani <[EMAIL PROTECTED]> wrote:

RE: Please help: Empty form while error

2004-05-10 Thread Geeta Ramani
Kevich: make sure you don't have a "redirect=true" in your add configuration in struts-config file. If that looks ok, post the relevant portions of the struts-config.xml and someone could maybe spot the problem.. Regards, Geeta > -Original Message- > From: Kevich Gan [mailto:[EMAIL PROT