AW: urgent

2006-05-24 Thread Martin Kindler
The documentation is your friend. See http://displaytag.sourceforge.net/11/tut_style.html The even and odd CSS classes allow you to do what you want. Martin > -Ursprüngliche Nachricht- > Von: Abhimanyu Koul [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 25. Mai 2006 07:56 > An: Struts

urgent

2006-05-24 Thread Abhimanyu Koul
hi all! I want to display the records in a list using display tag in a tabular form. But i need to alternate row background colours using css. i am not able to figure out how. how do we alternate styles in rows of a table using css and display tag. Abhimanyu Koul FinEng Solutions (P) Ltd. Dani

More then 1 Action Forms in JSP

2006-05-24 Thread Raghuveer
I have 10 JSP's and used 10 Action forms,10 action classes(dispatch action and action) with 10 Action Mappings in Struts-config.xml. I have 1 common functionality where if user clicks HELP button in any screen i need to get documennt stored in database and show to user. Question1) Is it possiab

Re: [OT] utility to print DOM object of XML file

2006-05-24 Thread Monkeyden
Not to be an "RTFM tool" but, any reason not to refer to the 1.4 javadocs? It's right there. Use the Document instance to construct the Source and a new (and likely empty) StringWriter to construct the Result. yourStringWriter.toString() andpoof!...MAGIC. I'll give you a hint on the next ste

Re: Object size in App Server

2006-05-24 Thread Hanmay Udgiri
Hi Is the API available in JDK1.4?? I am not able to get the API in WSAD 5.1.1 version JDK... Thanks and Regards Hanmayya Udgiri On 5/24/06, Hanmay Udgiri <[EMAIL PROTECTED]> wrote: Hi I am getting a ResultSet from database. I want to get the size of the object in the App Server. Also I want

Re: Object size in App Server

2006-05-24 Thread paz . periasamy
Hello Hanmayya, You can use ObjectOutputStream to serialize and write the object to a Stream and find the size of it... Based on my experience, I dont believe this will be exactly same as the size in reality if you are loading some binary content into it... Thanks and regards, Pazhanikanthan.

Re: Object size in App Server

2006-05-24 Thread Frank W. Zammetti
I can help with the session size at least: http://javawebparts.sourceforge.net Specifically, the SessionSize class: http://javawebparts.sourceforge.net/javadocs/javawebparts/session/SessionSize.html I think you should be able to yank that code and and make it generic to work with any Object (

Object size in App Server

2006-05-24 Thread Hanmay Udgiri
Hi I am getting a ResultSet from database. I want to get the size of the object in the App Server. Also I want to get the size of session object after the user is validated and the user details are added to session. Thanks and Regards Hanmayya Udgiri

Re: RequestProcessor and execute method

2006-05-24 Thread Monkeyden
See, I thought of going the same route, but I didn't want it to be the burden of a task controller (Action). It just didn't seem to make sense at that level, but I can see you struggled with the same uneasiness I did. You're right, what we're both mimicking here is doGet and doPost of HttpServlet

RE: display tag ??

2006-05-24 Thread David Friedman
I noticed that before I replied. Good luck! Regards, David -Original Message- From: A. Lotfi [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 24, 2006 5:26 PM To: Struts Users Mailing List Subject: RE: display tag ?? Thank you David, that's not my JSPs, that's from source code of that we

[shale] some improvement proposal for performance

2006-05-24 Thread 林 明
Hello, every one. I'm an chinese, my english not good enough to express my concepts fluently. say sorry first. I would like to start an new idea project in which jsf ,page flow and work flow are integrated seamlessly . it will use pageflow(or dialog) as the user form interfaces for every human

Re: How to pass request parameters through a waiting page?

2006-05-24 Thread Adam Samere
Starki, I assume you have a form or a link on a page that the user submits. Here is a sample of a simple link with parameters: Do Something I'm making use of the set tag from the JSTL core tag library to set the parameters into a HashMap, then linking the the action. The Action subcla

Re: Ajax and MVC pattern

2006-05-24 Thread Adam Samere
I've recently used AJAX in some existing Struts applications making use of AjaxTags http://ajaxtags.sourceforge.net/. The Struts controller is still very much applicable, in that the Ajax requests are made to struts action urls, the action subclasses then delegate processing to business objects

Ajax and MVC pattern

2006-05-24 Thread Adam Hardy
I have only a small knowledge of the Ajax frameworks out there and I am trying to work out how much an Ajax app would depend on Struts. I assume the view in an Ajax app is handled at the initial request by a JSP with HTML and that afterwards every request from the browser is XHR, ideally broken

RE: display tag ??

2006-05-24 Thread A. Lotfi
Thank you David, that's not my JSPs, that's from source code of that web site : http://displaytag.homeip.net/displaytag-examples-1.1/example-nocolumns.jsp David Friedman <[EMAIL PROTECTED]> wrote: I think your JSP skills are a little rusty because the JSP page source code you included spel

Re: Getting a list of fields in a form along with their values

2006-05-24 Thread Ed Griebel
Take a look at jakarta BeanUtils.describe() -ed On 5/24/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hello, The DynaActionForm class has a method called getMap which "Returns the Map containing the property values" We've found this quite useful for some of the things we need to do. I am l

Re: RequestProcessor and execute method

2006-05-24 Thread Jorge Martín Cuervo
I use eventDispatcher. Default to present and others to submit. http://wiki.apache.org/struts/DataEntryForm someone post this url in this mailing list before. El 24/05/2006, a las 20:01, Monkeyden escribió: I recently came to the conclusion that I didn't like the hidden form field markers a

RE: [Shale] How to cancel the

2006-05-24 Thread Gary VanMatre
>From: "James Reynolds" <[EMAIL PROTECTED]> > > Thanks Gary, > > I created my first submission to the issue tracker. I saw that one, thanks. >Do I get a jacket or a certificate now that I belong to this exclusive group? > Yea, You can use the tracker ticket number and $2 will get you a cu

Re: [OT] utility to print DOM object of XML file

2006-05-24 Thread [EMAIL PROTECTED]
There are two example on this page of how to use transform. http://www.kickjava.com/1942.htm Bryan LaPlante -- Original Message --- From: Monkeyden <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Wed, 24 May 2006 15:22:36 -0400 Subject: Re: [OT] utility to print DOM ob

Re: [OT] utility to print DOM object of XML file

2006-05-24 Thread Dave Newton
Ashish Kulkarni wrote: > I am using java 1.4.2 , and dont have JDOM or xerces, Why not get them? It's always a shame to reinvent the wheel. Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

Re: RequestProcessor and execute method

2006-05-24 Thread Dave Newton
Monkeyden wrote: > I'm wondering if anyone else has done something different and/or more > practical. Different, yes; more practical, probably not. In the past I've just used a base Action class that differentiated between GET and POST requests and called executeGet and executePost methods. Inter

Re: Regarding in struts-config.xml

2006-05-24 Thread Dave Newton
Ranganathan Srinivasan wrote: > What I want to know is can i pass query Strings as shown below :- > > Why not just try it and see if it works? It's gotta be faster than waiting for a response from the mailing list. (Yes, I know the question was already answered.) Dave ---

Re: [OT] utility to print DOM object of XML file

2006-05-24 Thread Monkeyden
The beautiful thing is you dont need JDom or Xerces if you have JDK1.4. I'm not going to give you the answer, as that wouldn't truly help either one of us, but I will tell you that the answer can be found in the javax.xml.transform.Transformer class, which is the fruit of the TransformerFactory c

RE: How do I remove myself from this mailing list?

2006-05-24 Thread George.Dinwiddie
from the message headers: List-Unsubscribe: List-Help: > -Original Message- > From: Pradeep Shekade [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 24, 2006 2:12 PM > To: user@struts.apache.org > Subject: How do I remove myself from

[OT] utility to print DOM object of XML file

2006-05-24 Thread Ashish Kulkarni
Hi Is there a apache or some utility which will print XML file if i provide a document object. I am writing a program to build XML file in memory and then write it to a file, i need this utility for debug so i can print the xml file in standard output, (screen or log file) . I am using java 1.4.2

RE: [Shale] How to cancel the

2006-05-24 Thread James Reynolds
Thanks Gary, I created my first submission to the issue tracker. Do I get a jacket or a certificate now that I belong to this exclusive group? -Original Message- From: Gary VanMatre [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 23, 2006 3:52 PM To: Struts Users Mailing List Subject: RE:

RE: display tag ??

2006-05-24 Thread David Friedman
I think your JSP skills are a little rusty because the JSP page source code you included spelled it out for you: 1) Import the class org.displaytag.sample: request.setAttribute( "test", new ReportList(6) ); 3) Use a displaytag table on the object (in whatever scope) named "test": It m

Re: Action 2.0 xdoclet?

2006-05-24 Thread Konstantin Priblouda
--- Emmanouil Batsis <[EMAIL PROTECTED]> wrote: > > Holla, > > Is an xdoclet plugin or hack available for Struts > Action 2? I finished one for webwork / xwork ( which is SAF 2 ;) ) for xdoclet 2 http://xdoclet.codehaus.org/Xwork+plugin Though it is available as snapshot for now. Feedback

RE: display tag ??

2006-05-24 Thread Chaudhary, Harsh
The data comes from a List which can be set as a request Attribute. Harsh. P.S.: I also had to do a pagination solution for my project. After working with it for a while, I did not found it to be very useful except for the simplest of cases. My major beef with DT is the location of the TLD file.

How do I remove myself from this mailing list?

2006-05-24 Thread Pradeep Shekade
Hello, I want to be removed from this list. Does any one know how it could be done? Thanks, Pradeep Shekade

display tag ??

2006-05-24 Thread A. Lotfi
Hi, I found this display tag, but I don't understand where data come from : http://displaytag.homeip.net/displaytag-examples-1.1/example-nocolumns.jsp The source code : http://java.sun.com/JSP/Page"; xmlns:display="urn:jsptld:http://displaytag.sf.net";> Simplest cas

RequestProcessor and execute method

2006-05-24 Thread Monkeyden
I recently came to the conclusion that I didn't like the hidden form field markers and conditional logic used in the Action.execute() method, to determine whether the user was performing the initial fetch of an ActionMapping or submitting. The solution I came up with was to extend the Struts Requ

回复: [WEB-SERVICES ]

2006-05-24 Thread Kyle Wu
this would help http://www.roseindia.net/webservices/webservices.shtml temp temp <[EMAIL PROTECTED]> 写道: Web services. How web services are written in java. Are there any tutorials to understand the concept of web services? Several application servers provide tools which build

RE: Action 2.0 xdoclet?

2006-05-24 Thread David Friedman
I haven't tried it but since webwork is Struts 2.0, won't the Xdoclet Webwork tags do most of the job (except for any brand new Action 2.0 specific add-ons to WebWork): http://xdoclet.sourceforge.net/xdoclet/tags/webwork-tags.html Regards, David -Original Message- From: Emmanouil Batsis

Re: Getting a list of fields in a form

2006-05-24 Thread No Body
BeanUtils.describe(java.lang.Object bean), then loop over the keyset. On 5/24/06, pantichd <[EMAIL PROTECTED]> wrote: Hello, The DynaActionForm class has a method called getMap which "Returns the Map containing the property values" We've found this quite useful for some of the things we need

Re: Getting a list of fields in a form

2006-05-24 Thread Gareth Evans
Map map = new HashMap(); BeanUtils.copyProperties( map , actionForm ); Emmanouil Batsis wrote: pantichd wrote: Can someone tell me if there is an easy way to get all the property keys along with their values from those two classes? Maybe there is a better way but using BeanUtils to construct

Re: Getting a list of fields in a form

2006-05-24 Thread Emmanouil Batsis
pantichd wrote: Can someone tell me if there is an easy way to get all the property keys along with their values from those two classes? Maybe there is a better way but using BeanUtils to construct a map out of the formbean should be pretty easy. hth, Manos -

Re: struts tags !!

2006-05-24 Thread No Body
The Struts tag offers only a small part of what the JSTL tag offers. I would recommend using JSTL as a supplement to the Struts tags anyway. The expression language is "java like" and quite nice. What also might be of interest to you down the road is the struts-el tags, included in the *contr

Getting a list of fields in a form

2006-05-24 Thread pantichd
Hello, The DynaActionForm class has a method called getMap which "Returns the Map containing the property values" We've found this quite useful for some of the things we need to do. I am looking for a similar method in the ActionForm & ValidatorForm but I can't find anything. Can someone

Re: struts tags !!

2006-05-24 Thread Mark Petrovic
Good day. Control flow as you describe can be implemented with a standard JSTL tag as in the following example: This link may help: http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html hth, Mark On 5/24/06, Natarajan IMS <[EMAI

Re: DynaActionForm

2006-05-24 Thread pantichd
Marcus, I apologize for "attaching" my question to your thread. I honestly have no idea how I managed to do that. I'll just create a new post with my question. David -- View this message in context: http://www.nabble.com/DynaActionForm-t1674521.html#a4543726 Sent from the Struts - User forum a

struts tags !!

2006-05-24 Thread Natarajan IMS
Hai All, I am new to struts frame work. any one of u suggest / explain how to use the all struts tags in jsp file. I can't understand how to handle the form bean values in jsp using struts tag. is there any way to implement in if condition in struts logic tags. Regards, NAT

Re: Getting a list of fields in a form along with their values

2006-05-24 Thread pantichd
Hello, Sorry to be impatient. Does anyone know if what I'm asking is possible? If my question isn't clear, please let me know and I'll be glad to elaborate. If this isn't the right forum to ask this question please let me know. Thanks! David

Action 2.0 xdoclet?

2006-05-24 Thread Emmanouil Batsis
Holla, Is an xdoclet plugin or hack available for Struts Action 2? Cheers, Manos - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: get ResourceBundle in ActionForm subclass

2006-05-24 Thread Jorge Martín Cuervo
Thanks to all, this is a working solution, but i didn't want to instantiate another ResourceBundle, struts already have one. I solve the problem after i check the struts source: [...] if (orgName == null || orgName.equals("")) { //errors.add("orgName", new ActionMessage("employer.orgNam

RE: Harsh: Issue with float validation instruts validator

2006-05-24 Thread Chaudhary, Harsh
I am surprised that noone else came across this issue. But for now, I think I will go with a custom validator. Unless I am missing something. Thanks, Harsh. -Original Message- From: The Jasper [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 24, 2006 2:59 AM To: Struts Users Mailing List Su

Re: Multi-Channels tiles

2006-05-24 Thread Antonio Petrelli
Vinit Sharma ha scritto: Hi, I'm looking for an example on multi-channels tiles. The url: http://www.lifl.fr/~dumoulin/tiles/ did not help me much. Any clues?? Dimensions is an implementation that leverages multi-channel Tiles: http://mutidimensions.sf.net/ Ciao Antonio

Multi-Channels tiles

2006-05-24 Thread Vinit Sharma
Hi, I'm looking for an example on multi-channels tiles. The url: http://www.lifl.fr/~dumoulin/tiles/ did not help me much. Any clues?? Thx, -- Vinit Sharma IBM

Re: get ResourceBundle in ActionForm subclass

2006-05-24 Thread Vinit Sharma
Load resource bundle and get the message from bundle: ResourceBundle labels = ResourceBundle.getBundle( "properties/ApplicationResources", (Locale) request.getSession().getAttribute( Globals.LOCALE_KEY)); String orgName = labels.getString("employer.orgNam

Re: Regarding in struts-config.xml

2006-05-24 Thread Shervin Asgari
I noted something. Shouldn't this line: Say "failure" and not "faliue" ? Shervin Asgari - System Consultant M: +47 918 64 148, @: [EMAIL PROTECTED] Linpro AS - Leading on LinuxTel: +47 21 54 41 00/02 Vitaminveien 1AFax: +47 21 54 41 01 PB 4 Grefsen, 0409 OsloWWW: http://www.lin

Re: Regarding in struts-config.xml

2006-05-24 Thread Vinit Sharma
With little modification: On 5/24/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Yes you can -Original Message- From: Ranganathan Srinivasan [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 24, 2006 6:07 PM To: user@struts.apache.org Subject: Regarding in struts-config.xml Hi, **

AW: urgent

2006-05-24 Thread marcus biel \(innoWake gmbh\)
Hi, I am trying to create a DynaActionForm. I want to validate that a value consist of 13 digits like ^[0-9]{13}$. Therefore, I added this to my validation.xml: myValueDef ^[0-9]{13}$

RE: Regarding in struts-config.xml

2006-05-24 Thread nageshkumar.siddu
Yes you can -Original Message- From: Ranganathan Srinivasan [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 24, 2006 6:07 PM To: user@struts.apache.org Subject: Regarding in struts-config.xml Hi, ** *The following is a the action-mappings in struts-config.xml* **

Regarding in struts-config.xml

2006-05-24 Thread Ranganathan Srinivasan
Hi, ** *The following is a the action-mappings in struts-config.xml* ** On success I call another action here..What I want to know is can i pass query Strings as shown below :- Regards, Ranganathan

Object size in App Server

2006-05-24 Thread Hanmay Udgiri
Hi I am getting a ResultSet from database. I want to get the size of the object in the App Server. Also I want to get the size of session object after the user is validated and the user details are added to session. Thanks and Regards Hanmayya Udgiri

Re: urgent

2006-05-24 Thread Abhimanyu Koul
Thanks a lot. That solved the problem Abhimanyu Koul FinEng Solutions (P) Ltd. Dani Compound, 158, Vidyanagari Marg, Kalina, Santacruz (East), Mumbai - 400 098 Mobile : +91 9860582533 - Original Message - From: "Martin Kindler" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" Sent:

Getting a list of fields in a form along with their values

2006-05-24 Thread pantichd
Hello, The DynaActionForm class has a method called getMap which "Returns the Map containing the property values" We've found this quite useful for some of the things we need to do. I am looking for a similar method in the ActionForm & ValidatorForm but I can't find anything. Can someone tell me

DynaActionForm

2006-05-24 Thread marcus biel \(innoWake gmbh\)
I am just trying to use a DynaActionForm. Now I would like to check out the ValidateURL method - however it doesn't accept an url like: http://www.myUrl.com/ Is there any page available giving examples of valid urls, or so? I had a look in the API http://struts.apache.org/struts-action/struts-co

Re: urgent

2006-05-24 Thread navin mca
Then map the same form bean against the action of the current jsp page in struts config. Abhimanyu Koul <[EMAIL PROTECTED]> wrote: hi all! I use to display some values of an Action form (in the request). now, i want to set those values(fields) again in the action form so that i can use those va

AW: urgent

2006-05-24 Thread Martin Kindler
add a field (if you do not want users to edit it, use type hidden) to your form. Martin > -Ursprüngliche Nachricht- > Von: Abhimanyu Koul [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 24. Mai 2006 13:27 > An: Struts Mailing list > Betreff: urgent > > > hi all! > I use to display som

urgent

2006-05-24 Thread Abhimanyu Koul
hi all! I use to display some values of an Action form (in the request). now, i want to set those values(fields) again in the action form so that i can use those values in the next page as well. please tell me the way out. Abhimanyu Koul FinEng Solutions (P) Ltd. Dani Compound, 158, Vidyanagar

Re: AW: AW: Missing message key

2006-05-24 Thread Gareth Evans
Hi, > What's the difference? "resources.MessageResources" would look for the file named /WEB-INF/classes/resources/MessageResources.properties "MessageResources" would look for the file named /WEB-INF/classes/MessageResources.properties Is there maybe a configuration file to tell the load

Re: Displaying date with Region Time difference

2006-05-24 Thread Bart Busschots
Hi, You need to look at java.util.Calendar and java.util.GregorianCalendar, these can do everything you need. You just load in the timestamp, set the locale to where ever you want to display the time for and then build your string. HTH, Bart. Hanmay Udgiri wrote: Hi We have a date which we

AW: AW: Missing message key

2006-05-24 Thread marcus biel \(innoWake gmbh\)
Actually, YES, this DID help! Thanks!!! In struts-config, I had the line: Now I changed it to: What's the difference? >The message resources are loaded by the class loader Is there maybe a configuration file to tell the loader which files and classes to load? I am using eclipse. Marcus -

Re: AW: Missing message key

2006-05-24 Thread Gareth Evans
You can set up the location of your MessageResources from within your struts-config.xml. The message resources are loaded by the class loader so you'll either have to put it in your WEB-INF/classes or WEB-INF/lib folder Extract from struts-config Hope that helps, Gareth marcus biel

Re: Missing message key

2006-05-24 Thread Jorge Martín Cuervo
do you have set the correct parameter value un struts-config? This means that you have to put the MessageResources.properties in WEB-INF/class/resources directory. El mié, 24 de 05 de 2006 a las 10:55, marcus biel (innoWake gmbh) escribió: > Hi, > > I've (also) got the following problem: >

AW: Missing message key

2006-05-24 Thread marcus biel \(innoWake gmbh\)
>maybe the whitespace? try to remove it... >mypage.title=My page title >> mypage.title =My page title No, that's not it. Thanks anyway. Marcus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [E

Re: Missing message key

2006-05-24 Thread Jorge Martín Cuervo
El mié, 24 de 05 de 2006 a las 10:55, marcus biel (innoWake gmbh) escribió: > Hi, > > I've (also) got the following problem: > When trying to start my app, it throws this error: > > javax.servlet.ServletException: Missing message for key "mypage.title" > in my WEB-INF folder, I've got one folder

Missing message key

2006-05-24 Thread marcus biel \(innoWake gmbh\)
Hi, I've (also) got the following problem: When trying to start my app, it throws this error: javax.servlet.ServletException: Missing message for key "mypage.title" in my WEB-INF folder, I've got one folder "src" containing one folder that is my packet with all java files, and one folder "resour

Displaying date with Region Time difference

2006-05-24 Thread Hanmay Udgiri
Hi We have a date which we store in Database as a timestamp. While getting a system date we get the date in US time like if the user has submitted a request in Aus,if he submits in morning 9 it will have date at server side in US time that is around some 17 hours less,we store the date with US ti

Re: Harsh: Issue with float validation instruts validator

2006-05-24 Thread The Jasper
Near as I can tell a float s evaluated as Float(value). So, looking in the java specs we see that a float needs a 'decimal point, an exponent, or a float type suffix '. see http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#230798 for more information. As for the validwhen, th

AW: Struts app on bar code scanner

2006-05-24 Thread marcus biel \(innoWake gmbh\)
>this.barcode? Is this a bug or a typo? >Probably it returns null because you set myValue and get this.barcode? No, sorry, typo - I just forgot to "transform" this value from my real code to "sample code". Remember I also wrote, it works fine on any other pc, it even works fine on the scanner, wh

Re: Struts app on bar code scanner

2006-05-24 Thread Gareth Evans
It looks like your getters is returning this.barcode and your setter is setting this.myValue I'm guessing this could be the problem. Gareth marcus biel (innoWake gmbh) wrote: Hi, I got a little struts app that works fine on my or any other pc - But it's supposed to be running on a little bar

problem with iframe

2006-05-24 Thread Medicherla Lakshmi
Hi All, Am trying to load some xxx. jsp into an iframe located in one jsp. But, that xxx.jsp has some html:selects to which data shld come from database. So, in the first jsp, i tried to call iframe.location.href = "/action.do?method="; its working fine, entering into

Re: Struts app on bar code scanner

2006-05-24 Thread Antonio Petrelli
marcus biel (innoWake gmbh) ha scritto: public String getMyValue() { System.out.println("Get MyValue: "+ myValue); // returns NULL return this.barcode; } public void setMyValue ( String myValue) { System.out.println("My MyValue: "+ myValue); // Returns myVal

Struts app on bar code scanner

2006-05-24 Thread marcus biel \(innoWake gmbh\)
Hi, I got a little struts app that works fine on my or any other pc - But it's supposed to be running on a little bar code scanner similar to a palm or so. As you might have guessed, I am using the application to enter bar codes. The scanner is running on Windows CE and there is a little applicati

Re: get ResourceBundle in ActionForm subclass

2006-05-24 Thread navin mca
Hi, Follow these steps. 1. Define ApllicationResources_locale specific property file. 2. add the message keys to thse different locale specific property file. 3. in Jsp file set the locale based on the reuest parameters. with wrote: Hi all, i want to use externa