Re: Struts and Cocoon Integration

2003-03-06 Thread alexj
your demo don't work I got an exception every time I try to save datas. org.apache.jasper.JasperException: getOutputStream() has already been called for this response -- Alexandre Jaquet - Original Message - From: Don Brown [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March

bean:write , boolean, and yes or no

2003-03-06 Thread John Towell
Is there a simple way to display a yes or no instead of true or false when writing a boolean from bean:write? I was thinking of creating a custom tag for this, but this has to have come up before no? What is the best solution? -John

Re: word wrap

2003-03-06 Thread Dan Allen
Here's the code. Just plant this in your MailerBean class and call it when running setText(). protected String wrapText(String text) { int width = 68; StringTokenizer parser = new StringTokenizer(text, , true); StringBuffer buf = new StringBuffer(); String token;

Re: Struts and Cocoon Integration

2003-03-06 Thread Don Brown
Ah yes, it looks like I missed an unclosed hr element hidden in the application resources. Thanks for pointing that out. The example and demo have been updated. Don On Thu, 6 Mar 2003, alexj wrote: your demo don't work I got an exception every time I try to save datas.

Tiles and appending request parameters

2003-03-06 Thread Brandon Goodin
Hey all, I have asked this question in the past and have lived with the limitation of not being able to do it. The only reason why I ask now is that I recently gave a quickstart presentation on tiles and wasn't sure if somethin had been added to remedy the problem. So, I wanted to pose it again

RE: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Heligon Sandra
Tomcat is responsible of the cookie creation but it is the Struts Action Servlet that is responsible of the session (HttpSession initialization) isn't it ? A few months ago I had had a discussion with Craig and it had indicated to me that a session was initialized in several cases: * The

Re: Servlet Mapping

2003-03-06 Thread usha
Hi Nico Thanks a lot for the reply. You mentioned about the unknown action can you explain me a little bit how i can create an unknown action. actually i need to perform the action that i specify after '0' . Thanks usha Nicolas De Loof wrote: i am trying to give servletmapping for the

RE: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Mohan Radhakrishnan
Hi, Exactly what happens with my pet project here. The login page times out before the user logs in after the specified timeout period. I have been pulling my hair all day. Need more explanation. I am using setLocale in the base action which my login action is extending. I do

RE: struts IDE

2003-03-06 Thread Aris Kyriakidis
What is your opinion on JDeveloper 9.0.3? -Original Message- From: Alok Garg [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 10:04 AM To: Struts Users Mailing List Subject: Re: struts IDE Jbulider8.0 and Eclipse - Original Message - From: Buics [EMAIL PROTECTED] To:

RE: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Andrew Hill
HttpSession is a seperate matter from authentication as far as the container is concerned, in as much as session tracking operates to associate requests with a particular client. The way it does this is by allocated a session id - which the client submits with each request. There are two ways

What is the use of struts

2003-03-06 Thread RAMU
Dear friends I am new to struts. What is use of struts. I have cofigured in tomcat. If anyone can give me examples and procedure to executue, It is help me lot. Thanx in advance. Best Regards Srinivasan Ramachandran

RE: What is the use of struts

2003-03-06 Thread ALAMI Ahmed
Just install a struts-application like struts-example undes tomcat. Lauch Tomcat and open the URL of the application and that's all. Don't put struts.jar in your CLASSPATH environement variable, your application will not work. hava fun -Message d'origine- De : RAMU [mailto:[EMAIL

RE: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Heligon Sandra
I well understand now that Sessions (object on the web server) are used either cookies or URL writing (in the client side). In the struts application I have to make changes if I want to use URL rewriting. But what I still do not understand (I am sorry to be also insistent) is why/or how each user

Re: Localisation

2003-03-06 Thread Micael
Just put the locale and other choices in the same form. At 12:45 PM 3/5/03 +0100, you wrote: - Original Message - From: James [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 8:38 PM Subject: Re: Localisation ok simon.. thanks one more question, what happens to

Re: Localisation

2003-03-06 Thread Micael
In my opinion the message solution works and this solution is messy. At 01:52 PM 3/5/03 +0200, you wrote: You could set a group of forwards up, based on the locale ie forward name=this_en path=/jsp_pages/out_en-jsp redirect=true/ forward name=this_de path=/jsp_pages/out_de-jsp

RE: Localisation

2003-03-06 Thread Micael
Chinese? At 08:02 PM 3/5/03 +0800, you wrote: So... if they click on say , the flag for Belgium, what language will they get? -Original Message- From: James [mailto:[EMAIL PROTECTED] Sent: Thursday, 6 March 2003 03:12 To: [EMAIL PROTECTED] Subject: Localisation I have a LocaleActionClass

Re: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Nicolas De Loof
I well understand now that Sessions (object on the web server) are used either cookies or URL writing (in the client side). In the struts application I have to make changes if I want to use URL rewriting. But what I still do not understand (I am sorry to be also insistent) is why/or how each

RE: Localisation

2003-03-06 Thread Micael
This is effectively unreadable in my email. At 06:06 PM 3/5/03 +, you wrote: This what I did: ++ In the homepage page: % pageContext.setAttribute(URLPath, request.getRequestURL()); % ++ or ++ In Struts Config: ++ In the SetLocaleAction:

Re: struts IDE

2003-03-06 Thread Buics
how about scioworks camino 3.0.1 Alok Garg wrote: Jbulider8.0 and Eclipse - Original Message - From: Buics [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, March 06, 2003 12:52 PM Subject: struts IDE good day! anyone could suggest an IDE

RE: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Mohan Radhakrishnan
Hi, I looked at all the conditions in Craig's mail that you included. * Actions will create a session for you automatically if you use transaction tokens, or the getLocale()/setLocale() methods. My BaseAction that my LoginAction extends has code like this. protected

List-backed properties

2003-03-06 Thread Johann Uhrmann
Hello all, I am a little bit confused about an example for list-backed properties: The documentation at http://jakarta.apache.org/struts/userGuide/building_controller.html contains the following example in section 4.3.2: public FooForm extends ActionForm { private final List values = new

RE: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Heligon Sandra
but however if one uses the cookies for saving the sessionId on the customer, the cookie is saved under a user directory C:\WINNT\Profiles\user-name\Cookies. the user-name reprensents a physical person for cookie information, isn't it ?

Re: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Nicolas De Loof
right, but if you restart your browser, session will be invalidated, as coockie is (by default) set to a browser instance. The way coockies are stored on windows (NT) platform has no impact on session tracking mechanism. Nico. but however if one uses the cookies for saving the sessionId on the

RE: struts IDE

2003-03-06 Thread Davor Cengija
Aris Kyriakidis wrote: What is your opinion on JDeveloper 9.0.3? I'd like to hear the people's opinion on JDev 9.0.3 as well, especially regarding the Struts support. I used JDev 9.0.1 and 9.0.2 on a quite big project with my custom struts integration and it was just horrible. 9.0.1 was

Which J2EE version is compliant with Struts apps?

2003-03-06 Thread Adolfo Miguelez
Hi All, an easy question. AFAIK, Struts is based on servlets 2.2 and JSP 1.1 specs. Therefore a J2EE 1.2 compliant app server is needed. Right? We are investigating about using WAS5 and WSAD5. Both of them actually permit to choose among developing or deploying J2EE1.2 or J2EE1.3 compliant

Re: [OT] Java method size limitations

2003-03-06 Thread Davor Cengija
Kwok Peng Tuck wrote: I had that problem in a compiled JSP page (therefore, in the created servlet): a table with 150 rows and 8 bean:write / columns (some financial data). The solution was to split the table into 3 files and in the first one just included the second and the third using

Struts-Tiles causes charset problem!!!

2003-03-06 Thread Eric Chow
Hi, I want to display some Chinese in JSP(Customer Tag). If my JSP as following: (showChineseContent.jsp) === % page language=java contentType=text/html % % taglib uri=/WEB-INF/tld/test.tld prefix=test % % taglib uri=/WEB-INF/tld/share.tld prefix=share % html

Re: [OT] Java method size limitations

2003-03-06 Thread Kwok Peng Tuck
I hit those limitations once, although it wasn't really my fault. Some eons ago when tomcat 3.X was in use in my company, some guy decided he would like us all to be able access the db through tomcat easily. Problem was it required plugging your select statement into his code until well you

Re: Beginner Tiles Problem

2003-03-06 Thread Cedric Dumoulin
Kuzminski, Nicolas wrote: Besides, any one knows if it's posible to have an url association with tiles definitions, as we have with actions and, for example, /*.do urls? It would be great to have, let's say, /*.def requests You can post an enhancement request in bugzilla ;-)

Re: Basic Tiles question

2003-03-06 Thread Cedric Dumoulin
Hi, A tile attribute is only visible in its tile, not in its parent, not in the sub tiles. You should pass the attribute explicitly from the current tile to the inserted tile, or put the value in the request context: tiles:insert attribute=header tiles:put name=title beanName=title

Re: Tiles problems (Building complex pages)

2003-03-06 Thread Cedric Dumoulin
Fabio Mancinelli wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 4 Mar 2003, Cedric Dumoulin wrote: Hi, It looks like your unlucky using Tiles ;-). Thank you for your answers. I admit that some of my questions were a bit brain-damaged :) Anyway passing a definition to

RE: Struts-Tiles causes charset problem!!!

2003-03-06 Thread Andrew Hill
Sorry, you can't display Chinese until the user has clicked on the flag of Belgium. (j/k) ;-) snip -Original Message- From: Micael [mailto:[EMAIL PROTECTED] Sent: Thursday, 6 March 2003 17:30 To: Struts Users Mailing List Subject: RE: Localisation Chinese? At 08:02 PM 3/5/03 +0800,

Re: how to catch exception using tiles thrown by e.g. org.apache.struts.tiles.TilesUtilStrutsModulesImpl.doInclude

2003-03-06 Thread Cedric Dumoulin
Jörg Maurer wrote: Cedric exactly as you said, insert is used. despite the big try-catch block approach, its unclear to me why error-page in web.xml doesn#t get a try. Additionally i searched for similar behaviour and all i found was following page 52 of the JSP 1.2 spec : Note: if

Re: Struts-Tiles causes charset problem!!!

2003-03-06 Thread Cedric Dumoulin
Check if the returned page (the page source in the browser) has the appropriate encoding tag. The page encoding is usually set in your template.jsp file. Cedric Eric Chow wrote: Hi, I want to display some Chinese in JSP(Customer Tag). If my JSP as following: (showChineseContent.jsp)

Re: Tiles and appending request parameters

2003-03-06 Thread Cedric Dumoulin
Hi, I think that the problem is not related to the Tiles. What you want is to be able to add a request parameter to the current requestResponse. When Tiles include the controller via its url, is simply do an include, and doesn't modify the requestResponse object. So, you still have all the

Re: Urgent, TilesRequestProcessor

2003-03-06 Thread Cedric Dumoulin
Hi, If you use Tiles, and want to extends the RequestProcessor, you need to extend the TilesRequestProcessor. This later extends the RequestProcessor, so you transitively extends it also. The TilesRequestProcessor purpose is to catch the definition names used in urls. If a struts url

Re: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Max Cooper
Session IDs identify sessions, not users. A session is using a browser to access a server from a particular machine. It doesn't matter if you login or not, sessions are meant just to associate a group of requests as coming from one (or more) person sitting at a computer using a browser. HTTP is a

Re: struts IDE

2003-03-06 Thread Dejan Krsmanovic
I have used 9.0.3 for building few struts applications and I can say it saved me a lot of time. They have integrated few wizards for working with config files and support for taglibs (autocomplete etc.). However I have found few bugs (for example when specifying data source configuration in

Re: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Gemes Tibor
2003. március 6. 12:10 dátummal Max Cooper ezt írtad: Here's a little dialog to illustrate: Wow! That was marvellous! Tib - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Mohan Radhakrishnan
Hi, It seems that there is no way to associate the session timeout information in the web.xml for the session created after the user logs in. Or is there ? Let me know if I am very wrong here but my login page also expires before the user is authenticated. The user perception is that the

RE: [OT] Simulating Concurrent Users

2003-03-06 Thread Jim Krygowski
I don't know if anyone missed this- but JMeter, an open source project at Apache is a pretty nice stress testing tool. Very easy to use and set up. Check it out and you won't have to deal with Microsoft. -Original Message- From: Todd Pierce [mailto:[EMAIL PROTECTED] Sent: Wednesday,

Re: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Max Cooper
It sounds like there is something else going on. The session timeout set in the web.xml file is the time required for the server to totally forget about you, whether you had authenticated yourself or not. It is the time since your last request that matters. If the timeout is set for 30 minutes,

Re: struts IDE

2003-03-06 Thread James Holmes
You can use the Struts Console plugin in JDeveloper and it has fully working support for Struts, Tiles and Validator config files. This should solve your problems. http://www.jamesholmes.com/struts/ -james --- Dejan Krsmanovic [EMAIL PROTECTED] wrote: I have used 9.0.3 for building few struts

Re: struts IDE

2003-03-06 Thread Sundar Narasimhan
Jbulider8.0 and Eclipse Do either of these provide breakpointing ability in JSP's, and traversing transparently into container code. My current environment (which is WSAD 5.0 built on top of Eclipse) doesn't do this, and I find it annoying. The other annoyance I have is that when I run tomcat

Re: struts IDE

2003-03-06 Thread Dejan Krsmanovic
Yeah, I know. However I have switched to Eclipse now and using both Easy Struts Struts Console. By the way I coudn't see option for creating new struts/validator/tiles config file in Eclipse with Struts Console plugin installed. I can only edit existing config file. Am I missing something? Dejan

RE: Association between Session object and Cookies/URL rewriting

2003-03-06 Thread Mohan Radhakrishnan
So I will have to use inValidateSession( request ); What will happen to code like this in by base action if I do this? That would be lost. protected void setLocale( HttpServletRequest request, Locale locale) { HttpSession session =

Re: struts IDE

2003-03-06 Thread James Holmes
That is correct. The Struts Console plugins don't provide a facility to create new config files in any of the IDEs. Unfortunately, this is only available in the standalone version. -james --- Dejan Krsmanovic [EMAIL PROTECTED] wrote: Yeah, I know. However I have switched to Eclipse now and

Re: struts IDE

2003-03-06 Thread Chetan Sahasrabudhe
James : I am trying out plug-in suggested by u, I followed all the steps and restarted JDev. but I am not able to get it work. do u know any common problem Chetan - Original Message - From: James Holmes [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday,

Re: struts IDE

2003-03-06 Thread Tony Baity
[SERIOUS] The number of times that this topic has come up, does anyone have a poll-taking web site that struts users can place their votes on for favorite IDEs or OR Mapping tools or whatever? [NOT SERIOUS] Or perhaps C|NET could be talked into providing this. . Buics [EMAIL PROTECTED]

RE: List-backed properties

2003-03-06 Thread Jörg Maurer
Hi hans ! As my best practice, the thing missing is following : in any action form is a reset method per subclassing action from. 1st-class use of reset for me is to set every action form instance variable to some initialising state. so what is the initialising state of an array list? exactly,

Re: struts IDE

2003-03-06 Thread James Holmes
Most likely the plugin is installed fine, but it is not recognizing your xml file as a Struts config file. You need to make sure you have the right DOCTYPE in your config file otherwise Struts Console won't work. For more on this see the help page:

Re: editable list using nested:iterate and lazyList

2003-03-06 Thread William Salvucci
Is this an example of an editable list (ie. a table like structure)? Based on your student example, I am trying to edit a list of students all on one page. ie. I could change five students names with one submit. Maybe I didn't fully understand your example, but it sounds like your example is

CSS stylesheet

2003-03-06 Thread Renato Romano
Does anyone knows how to render a LINK rel=stylesheet href=../stileForm.css type=text/css With struts ?? Thanks a lot. Renato Renato Romano Sistemi e Telematica S.p.A. Calata Grazie - Vial Al Molo Giano 16127 - GENOVA e-mail: [EMAIL PROTECTED] Tel.: 010

RE: CSS stylesheet

2003-03-06 Thread apachep2
Don't have to use struts to render LINK tag -Original Message- From: Renato Romano [mailto:[EMAIL PROTECTED] Sent: March 6, 2003 9:57 AM To: 'Struts Users Mailing List' Subject: CSS stylesheet Does anyone knows how to render a LINK rel=stylesheet href=../stileForm.css type=text/css

Help! How to Configure Multiple Resources in Struts 1.0.2

2003-03-06 Thread Frohock, Bradley K (Brad), ALABS
Struts 1.0.2 I have seen several threads in the archives pertaining to multiple resources in Struts 1.1+, but no satisfactory replies for Struts 1.0. I want to create several ApplicationResources to be used in different JSPs, primarily for displaying html:errors bundle=xxx / differently.

Client Side validation problem with Struts 1.1 RC1

2003-03-06 Thread Camper Richard D
I deployed the struts-validator.war file to both Tomcat 4.1 and Websphere 5.0 (via WSAD 5.0). I am not geting any client-side validation. When I viewing source via the browser for the jsRegistration.jsp page, I noticed that the page did not contain any of the validator java script that the

date format problems

2003-03-06 Thread Søren Blidorf
Hi. I have an action that gets a date from the MS SQL 2000 in -MM-dd. I convert it with simpledateformat as dd-MM- and put it in a jsp form. When submitting the form the date must be coverted back to -MM-DD before another actions update the db. I am trying to convert the date value

RE: word wrap

2003-03-06 Thread David Graham
That attribute is not in the HTML 4.01 standard so it will not be included in struts. David From: John Devine [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: word wrap Date: Thu, 06 Mar 2003 00:03:28 -0600

Re: CSS stylesheet

2003-03-06 Thread Nicolas De Loof
LINK rel=stylesheet href=html:rewrite page=/css/stileForm.css / type=text/css Nico. Does anyone knows how to render a LINK rel=stylesheet href=../stileForm.css type=text/css With struts ?? Thanks a lot. Renato Renato Romano Sistemi e

Re: Which J2EE version is compliant with Struts apps?

2003-03-06 Thread David Graham
You can use Struts in servlet 2.2 or 2.3 environments. David From: Adolfo Miguelez [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Which J2EE version is compliant with Struts apps? Date: Thu, 06 Mar 2003 10:07:32 + Hi All, an easy

Re: date format problems

2003-03-06 Thread Gemes Tibor
2003. március 6. 16:06 dátummal Søren Blidorf ezt írtad: Hi. I have an action that gets a date from the MS SQL 2000 in -MM-dd. I convert it with simpledateformat as dd-MM- and put it in a jsp form. When submitting the form the date must be coverted back to -MM-DD before another

RE: date format problems

2003-03-06 Thread Kandi Potter
I'm no expert at struts but I convert and validate my dates in my Action or Business Class instead of the Form. I could be completely off-base here in my interpretation of the struts ActionForm though -Original Message- From: Søren Blidorf [mailto:[EMAIL PROTECTED] Sent:

RE: date format problems

2003-03-06 Thread Chen, Gin
The standard for an actionForm is to have every field as String. All conversion (which should really be thought of as business logic) should occur in the Action classes or further down the food chain. If this is not possible in your case or does not solve what your working on then can you please

RE: date format problems

2003-03-06 Thread apachep2
Make sure it is a java.sql.Date during conversion using ConvertUtil. -Original Message- From: Gemes Tibor [mailto:[EMAIL PROTECTED] Sent: March 6, 2003 10:14 AM To: Struts Users Mailing List Subject: Re: date format problems 2003. március 6. 16:06 dátummal Søren Blidorf ezt írtad: Hi.

Re: Which J2EE version is compliant with Struts apps?

2003-03-06 Thread Adolfo Miguelez
So, then we can choose among J2EE 1.2 (servlets 2.2) and J2EE 1.3 (servlets 2.3). Is not it? From: David Graham [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Which J2EE version is compliant with Struts apps? Date: Thu, 06 Mar 2003

[Q] actionset-property

2003-03-06 Thread WILLIAMS,RAND (HP-USA,ex1)
Hi All, action... type=myAction name=myBean set-property property=x value=y / /action does struts try to 'set' the myBean or myAction? -Rand - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Iterating through a Map collection of Beans

2003-03-06 Thread Paul Blundell
Does anyone have any examples of code for iterating through a Map containing The application is storing data related to a Location. A location can contain several rooms, so on the form there will be fields such as: Locationname Locationcity Locationcountry Room1name Room1description Room2name

RE: date format problems

2003-03-06 Thread apachep2
You are not alone. Re the original posting, I have another thought. 1. Date can be displayed using format string. 2. Date can be saved as long. Will that reduce your conversion? -Original Message- From: Kandi Potter [mailto:[EMAIL PROTECTED] Sent: March 6, 2003 10:21 AM To: Struts

Re: Which J2EE version is compliant with Struts apps?

2003-03-06 Thread David Graham
Yes, but I don't know why you would choose 2.2 when 2.3 is newer and more powerful. David From: Adolfo Miguelez [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Which J2EE version is compliant with Struts apps? Date: Thu, 06 Mar 2003

RE: struts IDE

2003-03-06 Thread James Higginbotham
No kidding! This needs to be on the frontpage, just as the question of when 1.1 is going to be released.. This is getting painful! www.mail-archive.com - use it people! -Original Message- From: Tony Baity [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 8:04 AM To: Struts

RE: Iterating through a Map collection of Beans

2003-03-06 Thread apachep2
Location bean is made up of Locationname Locationcity Locationcountry And a Map, rooms Rooms consist of 3 room beans Room1name Room1description Room2name Room2description Room3name Room3description Assume there is a session/request/page scope Object location. On JSP page using struts,

Re: Struts-Tiles causes charset problem!!!

2003-03-06 Thread Jim Theodoridis
Hi Eric I have the same problem using Greek characters. - Original Message - From: Eric Chow [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, March 06, 2003 12:40 PM Subject: Struts-Tiles causes charset problem!!! Hi, I want to display some Chinese in

MEthod for population

2003-03-06 Thread ALAMI Ahmed
Hello everyone, Can someone help me by sending me sample code for the populate method for a checkbox List. In the application in wich I'm wrking, when i don't choose any option of a checkbox list in a form in the session, In the action I get the old value of the checkboxes

RE: struts IDE

2003-03-06 Thread Chappell, Simon P
So ... how is that 1.1 release coming? ;-) Simon -Original Message- From: James Higginbotham [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 9:50 AM To: Struts Users Mailing List Subject: RE: struts IDE No kidding! This needs to be on the frontpage, just as the question of

Re: Struts-Tiles causes charset problem!!!

2003-03-06 Thread Jim Theodoridis
I have the same problem with Greek Characters If i use the encoding tag at the page encoding wich is set in our template.jsp file then the text from tiles-def.xml diplayes correct but the data from database and Application.resources displays like ? If i remove encoding tag then the data and

RE: struts IDE

2003-03-06 Thread James Higginbotham
Thinking outloud - could a nice search box somewhere on the struts site that POSTs to mail-archive.com help? Dunno if the majority of these posts could be prevented or if its just going to happen due to lack of research.. -Original Message- From: James Higginbotham Sent: Thursday,

RE: struts IDE

2003-03-06 Thread Chen, Gin
IMHO. It might reduce it by a bit but if people cant even use Google then what makes you think they will be able to use a search box on the struts site? -Tim -Original Message- From: James Higginbotham [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 11:13 AM To: Struts Users

RE: [Q] actionset-property

2003-03-06 Thread Kandi Potter
myBean...check out the example that comes with the struts src for more details. -Original Message- From: WILLIAMS,RAND (HP-USA,ex1) [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 10:35 AM To: 'Struts Users Mailing List' Subject: [Q] actionset-property Hi All,

Re: date format problems

2003-03-06 Thread Rick Reumann
On Thu, 6 Mar 2003 16:14:26 +0100 Gemes Tibor [EMAIL PROTECTED] wrote: 2003. március 6. 16:06 dátummal Søren Blidorf ezt írtad: Hi. I have an action that gets a date from the MS SQL 2000 in -MM-dd. I convert it with simpledateformat as dd-MM- and put it in a jsp form. When

[OT] How to make a method deprecated

2003-03-06 Thread Chiming Huang
Hi, In java, I would like to make a method deprecated. So that javac will complain if a program uses the deprecated method. What should I do? Thanks in advance. Chiming - Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more

Re: [OT] How to make a method deprecated

2003-03-06 Thread David Graham
Use the @deprecated javadoc tag. David From: Chiming Huang [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [OT] How to make a method deprecated Date: Thu, 6 Mar 2003 08:27:14 -0800 (PST) Hi, In java, I would like to make a method

RE: [OT] How to make a method deprecated

2003-03-06 Thread Sri Sankaran
Use the @deprecated Javadoc tag. Sri -Original Message- From: Chiming Huang [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 11:27 AM To: [EMAIL PROTECTED] Subject: [OT] How to make a method deprecated Hi, In java, I would like to make a method deprecated. So that javac

Re: [OT] How to make a method deprecated

2003-03-06 Thread Brian Lee
You can just add @deprecated to the javadoc for that class or method. Example: /** * Does something. * @deprecated */ foo(){ BAL From: Chiming Huang [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [OT] How to make a method deprecated

RE: CSS stylesheet

2003-03-06 Thread Renato Romano
Thanks a lot !! Renato Romano Sistemi e Telematica S.p.A. Calata Grazie - Vial Al Molo Giano 16127 - GENOVA e-mail: [EMAIL PROTECTED] Tel.: 010 2712603 _ -Original Message- From: Nicolas De Loof [mailto:[EMAIL

Re: date format problems

2003-03-06 Thread Rick Reumann
On Thu, 6 Mar 2003 10:39:08 -0500 apachep2 [EMAIL PROTECTED] wrote: You are not alone. Re the original posting, I have another thought. 1. Date can be displayed using format string. 2. Date can be saved as long. Will that reduce your conversion? I think he wants to use

RE: struts IDE

2003-03-06 Thread Becky Norum
I agree. Some posters seem to not even have explored the struts site very thoroughly, though, and would probably miss the point. But a link to search the archives may filter out some of the repetitive questions. imho, of course. Becky On Thu, 2003-03-06 at 11:15, Chen, Gin wrote: IMHO. It

RE: [OT] How to make a method deprecated

2003-03-06 Thread Chiming Huang
Thank you all for your quick reponse. Chiming Sri Sankaran [EMAIL PROTECTED] wrote:Use the @deprecated Javadoc tag. Sri -Original Message- From: Chiming Huang [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 11:27 AM To: [EMAIL PROTECTED] Subject: [OT] How to make a method

Re: struts IDE

2003-03-06 Thread Davor Cengija
Sundar Narasimhan wrote: Jbulider8.0 and Eclipse Do either of these provide breakpointing ability in JSP's, and traversing transparently into container code. My current environment (which is WSAD 5.0 built on top of Eclipse) doesn't do this, and I find it annoying. WSAD 4 does, and

RE: [Q] actionset-property

2003-03-06 Thread James Mitchell
If you create a class that extends org.apache.struts.action.ActionMapping, you can tell Struts to use your class by specifying className=yourpackage.yourclass in your action. -- James Mitchell Web Developer/Struts Evangelist http://jakarta.apache.org/struts/ People demand freedom of speech to

[OT] IDE / ERD modeling (Was: Re: struts IDE)

2003-03-06 Thread Becky Norum
I've stayed quiet on this since I've used IDEs rarely. I stick with xemacs and vi when necessary. I've been curious how much an IDE like JDeveloper speeds up the process, once you are familiar with it. I tried it for a couple of hours once, but found it kind of a pain to use. Is spending time

RE: [OT] IDE / ERD modeling (Was: Re: struts IDE)

2003-03-06 Thread James Higginbotham
I am an Emacs/JDE user myself, and I am beginning to look into Eclipse only because it seems to make me more efficient with some tasks.. I always liked the paradigm that VAJ provided but hated the repository due to its difficulty in CVS integration. Eclipse is a nice middle ground, giving me good

Re: [OT] IDE / ERD modeling (Was: Re: struts IDE)

2003-03-06 Thread Rick Reumann
On 06 Mar 2003 11:44:06 -0500 Becky Norum [EMAIL PROTECTED] wrote: I've stayed quiet on this since I've used IDEs rarely. jEdit http://www.jedit.org It will do all you need and you choose the plugins you want. Want the XML validation - just download the XMl plugin, etc. It's the most

Re: [OT] IDE / ERD modeling (Was: Re: struts IDE)

2003-03-06 Thread alexj
ArgoUML is free and open source . http://argouml.tigris.org/ -- Alexandre Jaquet - Original Message - From: Becky Norum [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, March 06, 2003 5:44 PM Subject: [OT] IDE / ERD modeling (Was: Re: struts IDE) I've

Re: Which J2EE version is compliant with Struts apps?

2003-03-06 Thread Adolfo Miguelez
When deployed to a server container as WAS, or even WSAD making de WAR (EAR) file, it ask you which J2EE version you want to use for the deployment. So far we have used J2EE 1.2, since we were using WAS 3.5 and it was the only chance. Now, updating to WAS 5 it is possible choose among J2EE 1.2

Re: [OT] IDE / ERD modeling (Was: Re: struts IDE)

2003-03-06 Thread Don Brown
To add to that, I worked on porting a Struts builder application to a jEdit plugin a while back. The application had some issues I wasn't comfortable with (unfortunately I don't remember what they were :)), so I never quite finished it. However, for the adventurous, the plugin is here:

Re: Which J2EE version is compliant with Struts apps?

2003-03-06 Thread Emmanuel Feller
Hi, You can compile against J2EE 1.3. (It contain servlet2.3 API and it is supported by struts.) You may use J2EE 1.2 but it is not the best environnement on was5. I'd prefer 1.3 if i had to do the choice. I hope it helps, Regards, Emmanuel Feller Senior Developper Cap Gemini Ernst Young +33

Re: Which J2EE version is compliant with Struts apps?

2003-03-06 Thread Adolfo Miguelez
Also the recent Craig´s message is helpful: Building Struts and Servlet/JSP Versions Adolfo. From: Emmanuel Feller [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Which J2EE version is compliant with

RE: Tiles and appending request parameters

2003-03-06 Thread Brandon Goodin
Thanks, let me provide a more real world example and see what you would do. - I have a menu that is customized according to the user. - I have a tile that displays the menu data. - I have a layout that has a tiles:insert name=menu - In my tiles-defs.xml I give the following definition for the

Re: Which J2EE version is compliant with Struts apps?

2003-03-06 Thread Adolfo Miguelez
Thats is what I wanted to hear. Cheers all, Adolfo. From: Emmanuel Feller [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Which J2EE version is compliant with Struts apps? Date: Thu, 6 Mar 2003 18:13:08

problem with struts 1.1 rc1

2003-03-06 Thread Scott Power
Hi, I just downloaded the struts 1.1 rc1 and when I try to run my tomcat I get debug printing to the screen for many, many screens. I have tried to turn off my debug, I have debug set to 0 in the server.xml, web.xml, and all other xml's that I could find. I still continue to get these debug's.

  1   2   3   >