[ANNOUNCEMENT] 6/27 Struts User Gathering at JavaOne

2004-06-21 Thread Van Riper, Mike
Since there were no strong preferences stated in the initial responses, I made an executive decision and went with Sunday evening after the conference opening reception. We'll be gathering around 8:30pm at the Thirsty Bear less than a block from Moscone Center. The full announcement including direc

RE: Pulling Punches

2004-06-21 Thread Joe Hertz
Okay, whew. Knew I had seen something else about it. http://www.jguru.com/faq/view.jsp?EID=1057613 "...There are times when one Action should forward to another, but only to display the final result. Using a second action to complete a business transaction is where we start sliding toward the dar

RE: Pulling Punches

2004-06-21 Thread Frank Zammetti
I don't know if it's the recommended solution (I would expect not), but one option is to instantiate your own instance of Action A and call execute() on it before returning your ActionErrors. The caveat there is that you won't have the form or the response object available to pass to it, and th

RE: Pulling Punches

2004-06-21 Thread Joe Hertz
> This is not a great solution, for all the reasons that action > chaining is considered dangerous. After the validation fails, Struts > would begin an entire re-execution of the RequestProcessor chain, and > the archives have plenty of discussion on why that's unpredictable > and worth avoidi

Re: Pulling Punches

2004-06-21 Thread Mark R. Diggory
Joe Germuska wrote: At 7:47 PM -0400 6/21/04, Joe Hertz wrote: Would making a Struts Action your "input" parameter solve this? This is not a great solution, for all the reasons that action chaining is considered dangerous. After the validation fails, Struts would begin an entire re-execution of

Re: Pulling Punches

2004-06-21 Thread Mark R. Diggory
Niall Pemberton wrote: More info on the circumstances would be helpful.. 1) How Often - just for one particular Action, for all Actions or somewhere in between? I'm looking for a generic solution for about 6 to 10 Actions that all work on a set of objects. 2) What kind of ActionForms are you u

Re: Pulling Punches

2004-06-21 Thread Niall Pemberton
More info on the circumstances would be helpful.. 1) How Often - just for one particular Action, for all Actions or somewhere in between? 2) What kind of ActionForms are you using - regular or DynaActionForm? 3) Are you using the validator framework? Having said that there are a number of possibi

RE: Pulling Punches

2004-06-21 Thread Joe Germuska
At 7:47 PM -0400 6/21/04, Joe Hertz wrote: Would making a Struts Action your "input" parameter solve this? This is not a great solution, for all the reasons that action chaining is considered dangerous. After the validation fails, Struts would begin an entire re-execution of the RequestProcessor

Re: Why the 'initial' in the form-bean Does Not Automatically Populate the Form?

2004-06-21 Thread Bill Siggelkow
When you say "without" threadForm do you mean that you are not specifying the "name" attribute on the mapping? If yes, it means that Struts doesn't know to associate the form with the action. If no, then did you try calling the "initialize" method on the DynaActionForm? Caroline Jen wrote: The

Why the 'initial' in the form-bean Does Not Automatically Populate the Form?

2004-06-21 Thread Caroline Jen
The form-bean in my struts-config.xml is specified like this: My servlet extends Action has the following code: DynaActionForm initForm = ( DynaActionForm )form; String sort = ( String )initForm.get( "sort" ); String order = ( String )initForm.get( "order" ); The action mapping

RE: Pulling Punches

2004-06-21 Thread Joe Hertz
Would making a Struts Action your "input" parameter solve this? This way you could do some checking before they made it all the way to the input page. > -Original Message- > From: Mark R. Diggory [mailto:[EMAIL PROTECTED] > Sent: Monday, June 21, 2004 7:33 PM > To: Struts Users Mailing L

Pulling Punches

2004-06-21 Thread Mark R. Diggory
Here's an interesting one for ya. I have a struts action in which I use the "input" parameter to forward back to the jsp when validation errors occur (pretty basic). There is an instance where an object could be stale once the browser gets into my Actions execute method, when this is encountered

Struts-menu question

2004-06-21 Thread Pavlikus
Hi all. Sory for a offtopic, but there are no response from struts-menu mailing list... May be some of you familiar with struts-menu. I try to add PermissionAdapter to my menu. But method is isAllowed was never called. Please point out me my mistakes. Menu-config: Jsp: <%@ taglib uri

Re: OT - why to get an answer to a j2ee install question?

2004-06-21 Thread Mark Lowe
which bits do you need? J2EE is a bit of a vague term dreamt up by marketing folk to describe some genuinely good stuff. Be careful by the time you realize which bits you don't need you'll have forgotten the problems you were trying to solve in the first place. Apple's dev tools was bundled wit

[OT] Posting timings

2004-06-21 Thread Christopher Marsh-Bourdon
Can anyone tell me why my postings appear a lot later than when I send them? All my other emails arrive within seconds/minutes when I post them to other mailing lists/email accounts? Cheers Christopher Marsh-Bourdon Pyplia Limited www.pyplia.com WWW

RE: OT - why to get an answer to a j2ee install question?

2004-06-21 Thread [EMAIL PROTECTED]
Jim I have done this a fair few times, email me directly with your problems, and I'll see what I can do. Part of the solution is on my www.marsh-bourdon.com site, at this url: http://213.52.195.182/marsh-bourdon.com/pages/development/languages/java/001/page.html Cheers Christopher Marsh-Bourd

FW: Lesbian & gays Mpeg

2004-06-21 Thread malcolm
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

FW: Lesbian & gays Mpeg

2004-06-21 Thread malcolm
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: a fine example of an example

2004-06-21 Thread Andy Engle
josh <[EMAIL PROTECTED]> wrote: > Hi, > > I have recently completed my first struts application and I am > beginning to feel comfortable with the framework. What I would like > now is to look at someone else's code for a really good example of > how things should be done. Hi Josh. I always tho

AW: a fine example of an example

2004-06-21 Thread Andreas Solarik
Just what I was about to suggest. Good call! Andreas -Ursprüngliche Nachricht- Von: Barnett, Brian W. [mailto:[EMAIL PROTECTED] Gesendet: Montag, 21. Juni 2004 19:22 An: 'Struts Users Mailing List' Betreff: RE: a fine example of an example JPetStore 4 at www.ibatis.com -Original Me

Re: where to call the DAO

2004-06-21 Thread Rick Reumann
javen fang wrote: In your Action where JSP comes from. In Action get the list from DAO, I usually throw in one more layer between the Action and the DAO. (Throw whatever groovy Design Pattern name you want at it.. delegate, facade, whatever.. I get them all confused :). Bottom line is I like

RE: a fine example of an example

2004-06-21 Thread Barnett, Brian W.
JPetStore 4 at www.ibatis.com -Original Message- From: josh [mailto:[EMAIL PROTECTED] Sent: Monday, June 21, 2004 11:01 AM To: [EMAIL PROTECTED] Subject: a fine example of an example Hi, I have recently completed my first struts application and I am beginning to feel comfortable with th

RE: [OT] Accessing Http Request with Groovy

2004-06-21 Thread Jerry Jalenak
Joe, That's along the lines of what I am playing with, except I chose to not use BSF. Groovy has an 'embedded' mode that allows you to call groovy directly from a Java class. I can get this to work (i.e. invoke the script), but I just can't figure out how to pass in a complex argument. I was ho

RE: [OT] Accessing Http Request with Groovy

2004-06-21 Thread Joe Germuska
I don't know the answer to your question, but I'm generally interested in using scripting languages in Struts, and validation seems like one of the likely candidates. Don Brown has taken a few steps towards hooking BSF into commons-validator; I'm sure he'd be happy to have other interested par

Re: problem with returning a pdf

2004-06-21 Thread Shyam A
Hello, I had a similar problem when I used iText with IE 6.0 for one of my Struts applications. The problem vanished when I disabled caching on the browser with the following setting in struts-config. HTH, Shyam --- tvvincam <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using JasperRep

OT - why to get an answer to a j2ee install question?

2004-06-21 Thread Anderson, James H [IT]
Sorry this is off-topic, but I'm hoping someone can direct me to the proper list. I'm trying to figure out how to install Sun's J2EE 1.3 package under OS X, but the only support provided is for Solaris, Redhat Linux, and Windoz. I need to find someone who's managed to do this. I'd be very grate

RE: a fine example of an example

2004-06-21 Thread Ram Venkataswamy
There are few good examples at this site http://sourceforge.net/project/showfiles.php?group_id=49385 V.K.Ram NitroX Struts Team -Original Message- From: josh [mailto:[EMAIL PROTECTED] Sent: Monday, June 21, 2004 10:01 AM To: [EMAIL PROTECTED] Subject: a fine example of an example Hi

RE : problem with returning a pdf

2004-06-21 Thread David Gagnon
Hi, You can also look how FOP work around this problem: http://xml.apache.org/fop/faq.html#iex-servlet-multiple /David -Message d'origine- De : tvvincam [mailto:[EMAIL PROTECTED] Envoyé : June 20, 2004 22:22 À : [EMAIL PROTECTED] Objet : problem with returning a pdf Hi, I'm using Ja

a fine example of an example

2004-06-21 Thread josh
Hi, I have recently completed my first struts application and I am beginning to feel comfortable with the framework. What I would like now is to look at someone else's code for a really good example of how things should be done. Does anyone know where I can download a shining example of coding i

Re: I Wondor Why Validation Doesn't Validate

2004-06-21 Thread cn
Nafise said: > I did the follow steps for setting validation, but there is no error on an > empty field checking 'chequeNumber' (see below plz). > > > 1. Placing the validation.xml & validator-rules.xml in WEB-INF folder > 2. In struts-config.xml : >a. > p

Re: Detecting browser close(ksitron [mailto:ksitron@elp.rr.com])

2004-06-21 Thread smuthu . subramaniam
Hi If u r working with Internet Explorer then try this code window.onunload=onClose; function onClose() { var retVal; if(window.screenTop>1) { alert("Closing the window"); } } by clicking the close button on the top right corner, rightclicking and selecting

RE: I Wondor Why Validation Doesn't Validate

2004-06-21 Thread [EMAIL PROTECTED]
In your struts-config.xml, the bit: validate="false" Should be: validate="true" Christopher Marsh-Bourdon Pyplia Limited Original Message To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> From: Mailing List <[EMAIL PROTECTED]> Date: Mon, 21 Jun 2004 15:25:03 +0430 Subject: I Wondor Why

html:select

2004-06-21 Thread kiran_babu31
Hi, I have a select box whose width has been restricted as This comes with a vertical scroll when the number of lines are more. But I am not able to get a horizondal scroll when the line is long enough to go out of the box. So I am not able to see some of the text. Is there some option that

Re: ActionForm returning blank jsp

2004-06-21 Thread Bill Siggelkow
One thing I noticed is that on your JSP the is inside the -- it should be vice-versa -- the needs to be inside the I have seen cases of a blank JSP when I am forwarding to an invalid or unknown page. [EMAIL PROTECTED] wrote: Thanks for your help, Frank. I tried changing my code to match yo

RE: problem with returning a pdf

2004-06-21 Thread Frank Zammetti
I assume the result of your form submission should be the PDF returned. I'm doing this in an app... you need to write out the results to ServletOutputStream, make sure you set the content type header and also the content-length header. Shoudl work then. I've also found that Acrobat is buggy w

problem with returning a pdf

2004-06-21 Thread tvvincam
Hi, I'm using JasperReports to create a pdf based on user criteria submitted via a struts form. I've run into a problem with a feature in IE http://support.microsoft.com/default.aspx?scid=kb;EN-US;q293792 Basically, IE will resubmit the request 3 times. This is causing a problem because the re

RE: Validator Error Messages different way to show them ?

2004-06-21 Thread Joe Hertz
By messages (plural) I assume you want them all. Did not work? > -Original Message- > From: Rouven Gehm [mailto:[EMAIL PROTECTED] > Sent: Monday, June 21, 2004 11:43 AM > To: Struts Users Mailing List > Subject: Validator Error Messages different way to show them ? > > > Hi, > > i'm

RE: Detecting browser close

2004-06-21 Thread Frank Zammetti
It was my understanding that only signed scripts could open popups off-screen, or of too small a size (I think 100px in either direction). I use the approach you outline as well, although it's not critical that the user logs out of my app anyway but they do feel good about having an explicit lo

RE: Detecting browser close

2004-06-21 Thread Joe Hertz
This is fine if you want to provide a popup window to the user. This still isn't an authoritative way of determining if the user has "logged out". Your app should never depend on the client's PC having electricity. > -Original Message- > From: Simone - Dev [mailto:[EMAIL PROTECTED] > Sen

Validator Error Messages different way to show them ?

2004-06-21 Thread Rouven Gehm
Hi, i'm trying to display the errors messages from the validator. But i don't know which property i have to use, i've tried this, which does not work, so does anyone have a solution ? - To unsubscribe, e-mail: [EMAIL PROTECTE

RE: [OT] Accessing Http Request with Groovy

2004-06-21 Thread Jerry Jalenak
Yes --- ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); if (null == classLoader) { classLoader = this.getClass().getClassLoader(); } Jerry Jalenak Development Manager, Web Publishing LabOne, Inc. 10101 Renner Blvd. Le

Re: [OT] Accessing Http Request with Groovy

2004-06-21 Thread Kris Schneider
How is "classLoader" obtained? Is it set to Thread.currentThread().getContextClassLoader()? Quoting Jerry Jalenak <[EMAIL PROTECTED]>: > Hi Guys - > > I know this is a little off topic, but the groovy mailing list doesn't seem > to be very active, and I need to track down an answer on this. Wh

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

2004-06-21 Thread McCormack, Chris
If you use then will work on the same JSP. Otherwise is required for the variable to be available at *Note the case of totalPosts and TotalPosts above and the scope variable used* Without calling a c:set method (and the variable TotalPosts exists on the request) then should work fine. It

RE: jstl trouble

2004-06-21 Thread Karr, David
> -Original Message- > From: Pavlikus [mailto:[EMAIL PROTECTED] > > <% > UserSessionInfo info = (UserSessionInfo) > session.getAttribute(UserSessionInfo.USER_SESSION_INFO_KEY); > > > out.println(info.getUser().getLogin()); > %> > > Later on page: > > > > > >

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: ActionForm returning blank jsp

2004-06-21 Thread lmrobertson
Thanks for your help, Frank. I tried changing my code to match yours and unfortunately got the same results...a blank (empty) jsp page. It is so weird that it works in my LogonAction class but not the ActionForm. I have used the ActionErrors class a hundred times in ActionForms and this one is no d

Re: How to handle refresh

2004-06-21 Thread mike
Sorry, I forgot that tags do not show in these emails. This should have read "IF YOU USE " At 07:27 AM 6/21/2004, mike wrote: You need to just look at the code and get the idea. The idea is that you have to have tokens that match. One token is kept in the session. Another token

Re: Tiles and paths

2004-06-21 Thread Bob Thomas
Thanks Mike! mike <[EMAIL PROTECTED]> wrote:For my part, this is a big bugaboo that continually causes problems in all sorts of ways for programs that access resources with relative and absolute URLs. I just decided, except for Applets, to deliver all resources via my own action classes and to

RE: ActionForm returning blank jsp

2004-06-21 Thread Frank Zammetti
Sorry, I didn't see that tag. Hmm, I'm not sure then. One thing I notice is that the code in your ActionForm adding the errors looks a little different than what I have, not sure it would matter though. Here's what I have: errors.add(ActionMessages.GLOBAL_MESSAGE, new ActionError("messages.us

Re: Tiles and paths

2004-06-21 Thread mike
For my part, this is a big bugaboo that continually causes problems in all sorts of ways for programs that access resources with relative and absolute URLs. I just decided, except for Applets, to deliver all resources via my own action classes and to use a "protocol" to do it. I now have none

RE: How to handle refresh

2004-06-21 Thread suhash . c
Hi Mike and Jacob,                    Thanks a lot for your suggestions.                  The one using tokens is working, so going ahead with it. Thanks, Suhash mike <[EMAIL PROTECTED]> 06/21/2004 08:01 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To "S

RE: ActionForm returning blank jsp

2004-06-21 Thread lmrobertson
Yes, it is literally returning a blank document. The errors should be displayed in the jsp using the tag. -Original Message- From: Frank Zammetti [mailto:[EMAIL PROTECTED] Sent: Monday, June 21, 2004 9:30 AM To: [EMAIL PROTECTED] Subject: RE: ActionForm returning blank jsp When you say

RE: How to handle refresh

2004-06-21 Thread mike
Cool solution. +1 At 07:03 AM 6/21/2004, Hookom, Jacob wrote: Sorry, I mean write out a no cache http header... (too early in the morning). -Original Message- From: Hookom, Jacob [mailto:[EMAIL PROTECTED] Sent: Monday, June 21, 2004 8:41 AM To: 'Struts Users Mailing List' Subject: RE: How t

RE: ActionForm returning blank jsp

2004-06-21 Thread Frank Zammetti
When you say the JSP is blank, do you mean you are literally getting a blank document back, or do you simply mean the errors are not being displayed? If the later, I don't see anywhere that you are displaying the errors. Trying adding the following before your form: Fro

Re: How to handle refresh

2004-06-21 Thread mike
You need to just look at the code and get the idea. The idea is that you have to have tokens that match. One token is kept in the session. Another token is kept in the request. The Action class has three methods that are important: isTokenValid(request), resetToken(request) and saveToken(re

RE: [OT] JavaOne Struts User Gathering-Looking for a job in San Francisco area

2004-06-21 Thread Mathew, Manoj
Hi all Right now I am in Des Moines, Iowa with www.principal.com Well have around 7 years of Java experience with more than 2 and a half years in struts.( around 4 years in jsp,servlets,xml and web sphere and one year in WSAD) working as a senior Analyst. I am planning to move to SFO by Aug

ActionForm returning blank jsp

2004-06-21 Thread lmrobertson
I am having a problem with my ActionForm validate() method returning a blank jsp page. It is a very simple logon.jsp with only two required fields "username" and "Password" The ActionForm validates that the user has in fact entered something in both fields. If the user has left a field blank, the A

Tiles and paths

2004-06-21 Thread Bob Thomas
I have JSPs that work fine using images, stylesheets, etc. from other directories. However, when I put those same JSPs into tiles, the JSPs can no longer find the images, stylesheets, etc. unless I change the paths to those images, etc. These JSPs are in child directories beneath the parent dire

Re: html-el:link and url from resources

2004-06-21 Thread Nicolas De Loof
You can use this : Nico. - Original Message - From: "Pavlikus" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, June 21, 2004 4:04 PM Subject: html-el:link and url from resources > Hi all. My menus defined in resou

[OT] Accessing Http Request with Groovy

2004-06-21 Thread Jerry Jalenak
Hi Guys - I know this is a little off topic, but the groovy mailing list doesn't seem to be very active, and I need to track down an answer on this. What I'm trying to do is call a groovy script from a java class (an Action) and pass over the current Http Request object. Here's the calling Java

html-el:link and url from resources

2004-06-21 Thread Pavlikus
Hi all. My menus defined in resources file. Like that: user-menu.profile =Edit profile user-menu.profile.link =/EditProfile.do user-menu.profile.tooltip =Edit your preferences Now, when i want to show menu items, I run into unexpectedness. I can't show url in html:link tag. Instead it shows the p

RE: How to handle refresh

2004-06-21 Thread Hookom, Jacob
Sorry, I mean write out a no cache http header... (too early in the morning). -Original Message- From: Hookom, Jacob [mailto:[EMAIL PROTECTED] Sent: Monday, June 21, 2004 8:41 AM To: 'Struts Users Mailing List' Subject: RE: How to handle refresh Create two actions, a list action and a sa

Re: can i call a function using jstl

2004-06-21 Thread James Mitchell
You can easily do this with a custom taglib or a simple helper bean. I prefer the bean approach. It is a standard JavaBean class that hides the static calls, etc with setter/getters. Use jsp:useBean and do what you need. -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, In

RE: How to handle refresh

2004-06-21 Thread Hookom, Jacob
Create two actions, a list action and a save action. In both cases, write out an no refresh http header - see Struts Config documentation for the controller element. When a user clicks save, post the data and on success or fail, REDIRECT to the list action. Then if they refresh, they will

Re:

2004-06-21 Thread Henrique VIECILI
For example: if you have something like this: Gender: ( ) Male ( ) Female your jsp will look like this: Male Female and you want to make 'Male' the default checked value, then your ActionForm will look like this: //form attributes declaration private String gender = "M"; if you l

RE: can i call a function using jstl

2004-06-21 Thread Asim Ghosh
hello, suppose i what to call static method or a method of an object. asim James Mitchell <[EMAIL PROTECTED]> wrote: Yes. It depends on what you want to do. What do you want to call? James > -Original Message- > From: Asim Ghosh [mailto:[EMAIL PROTECTED] > Sent: Monday, June 21

RE: can i call a function using jstl

2004-06-21 Thread James Mitchell
Yes. It depends on what you want to do. What do you want to call? James > -Original Message- > From: Asim Ghosh [mailto:[EMAIL PROTECTED] > Sent: Monday, June 21, 2004 8:07 AM > To: [EMAIL PROTECTED] > Subject: can i call a function using jstl > > hello, > > can i call a fuction u

RE: can i call a function using jstl

2004-06-21 Thread James Mitchell
Yes. It depends on what you want to do. What do you want to call? James > -Original Message- > From: Asim Ghosh [mailto:[EMAIL PROTECTED] > Sent: Monday, June 21, 2004 8:07 AM > To: [EMAIL PROTECTED] > Subject: can i call a function using jstl > > hello, > > can i call a fuction u

can i call a function using jstl

2004-06-21 Thread Asim Ghosh
hello, can i call a fuction using jstl and how ? asim - ALL-NEW Yahoo! Messenger - so many all-new ways to express yourself

Re:

2004-06-21 Thread Asim Ghosh
hello Henrique, can you give me an example... thanks Asim Henrique VIECILI <[EMAIL PROTECTED]> wrote: You must initialize the correspondent variable in ActionForm (inside 'reset' method) with the value you want to be checked, Struts will render the checked 'automagicly'. Henrique Viecili -

Re:

2004-06-21 Thread Henrique VIECILI
You must initialize the correspondent variable in ActionForm (inside 'reset' method) with the value you want to be checked, Struts will render the checked 'automagicly'. Henrique Viecili - Original Message - From: Asim Ghosh To: StrutsUsers Sent: Monday, June 21, 2004 2:39 AM

Re: I Wondor Why Validation Doesn't Validate

2004-06-21 Thread Pavlikus
Hello Mailing, Monday, June 21, 2004, 1:55:03 PM, you wrote: ML> Dear All, ML> I did the follow steps for setting validation, but there is no error on an ML> empty field checking 'chequeNumber' (see below plz). ML> 1. Placing the validation.xml & validator-rules.xml in WEB-INF folder ML> 2. I

Re: I Wondor Why Validation Doesn't Validate

2004-06-21 Thread Suresh S
hi 2. c. type="com.pdpsoft.lms.struts.action.CreditStudentAction" >name="CreditStudentForm" validate="false" scope="session"/> > make validate="true" that should fix the problem On Mon, 2004-06-21 at 16:25, Mailing List wrote: > Dear All, > > I did the fo

I Wondor Why Validation Doesn't Validate

2004-06-21 Thread Mailing List
Dear All, I did the follow steps for setting validation, but there is no error on an empty field checking 'chequeNumber' (see below plz). 1. Placing the validation.xml & validator-rules.xml in WEB-INF folder 2. In struts-config.xml : a. b.

html:slect

2004-06-21 Thread Babu, Kiran (Cognizant)
Hi I have selection box whose size is restricted as I am able to get a vertical scroll when I have more than 6 elements in the box. But I am not able to get a horizontal scroll bar when there is a long string in the selection box. Is there some way out? Kiran Ext: 2429 Vnet: 42441

RE: Sharing session beetwen HTTP and HTTPS

2004-06-21 Thread Jose Ramon Diaz
Ok, thanks. This plugin works perfect! And easy with this help: http://sourceforge.net/forum/forum.php?thread_id=982448&forum_id=202074 Thanks again... > -Mensaje original- > De: David Friedman [mailto:[EMAIL PROTECTED] > Enviado el: viernes, 18 de junio de 2004 14:25 > Para: Struts Use

RE: Java / MySQL

2004-06-21 Thread McCormack, Chris
http://dev.mysql.com/downloads/connector/j/3.0.html I have used connectorJ from (so far) swing apps, web based content tools, IRC control bots, gaming server interface gui's among various test applications. Chris McCormack -Original Message- From: Asim Ghosh [mailto:[EMAIL PROTECTED] Se

Re: Java / MySQL

2004-06-21 Thread salgado.pc
Yes. http://www.mysql.com/ and download the mysql connectorJ There you will find all the information you need. Pedro Salgado > hi, > is somebody use MySQL width Java ? > > what kind of client do u use ? > > Thanx ! > > > Y.

Re: Java / MySQL

2004-06-21 Thread Asim Ghosh
hi, yes i have used mysql with java using jdbc type IV "Le Goff, Yoann" <[EMAIL PROTECTED]> wrote: hi, is somebody use MySQL width Java ? what kind of client do u use ? Thanx ! Y. - ALL-NEW Yahoo! Messenger - so many all-new ways t

RE: Wizard form support in struts?

2004-06-21 Thread Rajat Pandit, Gurgaon
Not sure.. haven't used struts-workflow, but I did do some search on the possibilities, but somehow I wasn't convinced, maybe lack of documentation or something -Original Message- From: Amit Kumar Sharma [mailto:[EMAIL PROTECTED] Sent: Monday, June 21, 2004 3:43 PM To: 'Struts Users Mail

Re: which one is better, Validator framework or ActionError

2004-06-21 Thread salgado.pc
Both? :) I usually use the validator framework for straight-forward validations (require, integer, minlength, etc... which is most of the work) and complete the validations on the actions. Sometimes I use validator and a customized form. also. Pedro Salgado > hello guys, > >i have to

RE: which one is better, Validator framework or ActionError

2004-06-21 Thread Andrew Hill
depends -Original Message- From: Asim Ghosh [mailto:[EMAIL PROTECTED] Sent: Monday, 21 June 2004 18:10 To: [EMAIL PROTECTED] Subject: which one is better, Validator framework or ActionError hello guys, i have to implement validation which one should i go for 1. Validator Framewor

Java / MySQL

2004-06-21 Thread Le Goff, Yoann
hi, is somebody use MySQL width Java ? what kind of client do u use ? Thanx ! Y.

RE: Wizard form support in struts?

2004-06-21 Thread Amit Kumar Sharma
This can be done but we are looking for something where we can use some form "type" which takes care of these activities (How abt struts-flow? Need more inputs on this..) -Original Message- From: Rajat Pandit, Gurgaon [mailto:[EMAIL PROTECTED] Sent: Monday, June 21, 2004 3:25 PM To: 'Stru

which one is better, Validator framework or ActionError

2004-06-21 Thread Asim Ghosh
hello guys, i have to implement validation which one should i go for 1. Validator Framework or 2. ActionErrors by implementing validator() in ActionForm class which one is better? asim - ALL-NEW Yahoo! Messenger - so many all-new way

Re: Wizard form support in struts?

2004-06-21 Thread salgado.pc
just what you need to implement the wizard --> > ... Pedro Salgado > Dear friends, > > Is there anything available in struts framework which supports forms of > wizard type. > > Anything in this direction is appreciated. > > Regards > Amit Kumar Sharma > ---

RE: Wizard form support in struts?

2004-06-21 Thread Rajat Pandit, Gurgaon
Struts-workflow does this kind of stuff. But that's not a standard part of struts. In you want to use pure struts in that case u can happily implement it using basic action classes, just make sure you can store the state of the form in some scope request/session to re-populate in case you go back o

Wizard form support in struts?

2004-06-21 Thread Amit Kumar Sharma
Dear friends, Is there anything available in struts framework which supports forms of wizard type. Anything in this direction is appreciated. Regards Amit Kumar Sharma

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

Bi-dimensional indexed properties

2004-06-21 Thread Renato Romano
I need to define a form which has a 2-dimensional indexed property; I tried defining a setter method of the form setXXX(i, j, val) but it seems that struts only recognises 1 level indexed properties; in fact what happens is that the value of my property is the entire row (it is shown as ["someStrin

Re: property has no getter method

2004-06-21 Thread Nicolas De Loof
I've notice it to work 'easier' on jdk 1.4, but as I didn't know if it was a better introspection support on java 1.4 spec or specific to windows JDK 1.4.1, we changed our beans to avoid such 'multiple' setter, or incompatible type between getter and setter. Eclipse refactoring (rename) tools ma