RE: Debug ON/OFF

2004-03-01 Thread kishor Patil
Hi Shashank, First check out which logging tools you are using. By default the commomns-logging uses hte Simple-Logging. If you are using the log4j for logging purpose, then check out the log4j.properties file. If there is no properties then add one overridding the default setting.

Re: Breadcrumbs

2004-03-01 Thread Adam Hardy
On 02/29/2004 08:33 PM Jason Lea wrote: it just occurred to me (must have had my eyes shut) after a couple of weeks that the last breadcrumb in the breadcrumb menu done with your tiles method is actually a link to the page that you are already on. Is this the way you have implemented it, or have

Re: Grid..........

2004-03-01 Thread Mark Lowe
Sounds great.. On 1 Mar 2004, at 06:05, Milind P wrote: Hi All! Iam a new developer using the struts framework... We are developing a web application where in we are using the MVC architecture..Hence we are using the Jsp for the view. Now the problem is our project demands to dsiplay the dat

RE: Grid..........

2004-03-01 Thread Andrew Hill
Hang on one cotton pickin minute... We are developing a web application where in we are using the MVC architecture..Hence we are using the Jsp for the view. Since when did MVC imply JSP? -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Monday, 1 March 2004 16:39

Re: Problems with UTF-8 and forms

2004-03-01 Thread Adam Hardy
On 03/01/2004 12:29 AM Jon Bohm wrote: BUT if I rewrite my custombean's getValue method it all works fine (except for swedish uppercase letters): public String getValue() { return new String( value.getBytes(), "UTF-8"); } Still shouldn't be necessary. Apache Tomcat/5.0.12 Java 1.4.2_01-b06 Str

RE: Debug ON/OFF

2004-03-01 Thread Dixit, Shashank (Cognizant)
I am not using logging yet. Struts is using I think Log4j. Which is in commonsLogging.jar. If I want to make debug statements of struts programms on or off what should I do? Shashank S. Dixit Cognizant Technology Solutions Pvt. Ltd. Hinjewadi, Pune Mobile : 98904 25400 An Obstacle is somethi

Re: Broken pipe problem

2004-03-01 Thread Ray
Thanks .. :-) I'll read up and give it a try ... --- [EMAIL PROTECTED] wrote: > > Hi this exception will occur in the following > situation. > > 1. User uses the Stop, Back and forward button > while the browser waiting for a respond. > 2. He submits 1+ request to the server while the > first

Using commons-collections lazylist for nested actionforms

2004-03-01 Thread Andrew Hill
Im about to have a go using the lazylist stuff in commons-collections 2.1 to implement some nested actionforms stuff (previously Ive always been initialising the lists the hard way in my reset method!). http://jakarta.apache.org/commons/collections/api/org/apache/commons/collect ions/ListUtils.htm

Question about File downlods and letting users save a downloaded file. I am losing the original file name.

2004-03-01 Thread Stephan Jones
My Problem is with the URL presented when i get prompted to save a file. I am retreiving files/resources from a database and want to let the users browse them at will. The code below works except when i get prompted to Save or Open the file. The name of the file is the name of my Action Mapping. i

RE: Debug ON/OFF

2004-03-01 Thread kishor Patil
Hi Shashank, If you have not configured the Struts Logging mechnism i.e. log4j / jdk1.4 is not in the classpath. Then the Struts makes use of the SimpleLog. Simple implementation of Log that sends all enabled log messages, for all defined loggers, to System.err. The following system prope

RE: Question about File downlods and letting users save a downloaded file. I am losing the original file name.

2004-03-01 Thread Stephan Jones
Answered My own Question. Thank you Jacob -Original Message- From: Hookom, Jacob [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2003 9:04 AM To: Struts Users Mailing List Subject: [OT] RE: File Download? This is what we use for file downloads (Excel/PDF files). String contentType

RE: Using commons-collections lazylist for nested actionforms

2004-03-01 Thread Andrew Hill
Cheers mate! Exactly what I was hoping to hear :-) -Original Message- From: Arron Bates [mailto:[EMAIL PROTECTED] Sent: Monday, 1 March 2004 17:57 To: [EMAIL PROTECTED] Subject: Re: Using commons-collections lazylist for nested actionforms No worries about the order of the submit. The n

Parameters to an Action in struts-config.xml

2004-03-01 Thread Boaz Barkai
Hi Is there a why to give config parameters to an Action entry in the struts-config.xml (I mean several parameters - the parameter attribute isn't enuff) Thanks Boaz - To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

RE: Parameters to an Action in struts-config.xml

2004-03-01 Thread Andrew Hill
Yes. Here is an example: You set the className attribute of the actionmapping to your ActionMapping subclass that has setters (and usually getters) for the properties you want. You have to set those properties using the element (darn nuisance) to get around the dtd. And

struts and DHTML

2004-03-01 Thread Michel Van Asten
Hi, maybe the question is of topic but. I need to mix javascript in my strut application. I am looking some DHTML taglibs that would help me to build "proper" javascript code for things like DHTML menus... Does it exist ? I also try to develop my own tags with java forte CE It works ... but

RE: Broken pipe problem

2004-03-01 Thread Abhishek Srivastava
This exception is harmless exception. You can also ignore it ... If you want to. It doesn't stop weblogic from processing requests. Regards, Abhishek. -Original Message- From: Ray [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 2:59 PM To: Struts Users Mailing List Subject: Re: Bro

Avoiding app server restarts while doing struts development

2004-03-01 Thread Abhishek Srivastava
Hello All, I develop my apps on weblogic app server. When doing development on struts I feel for every little operation (change in resource file, change in source file, change config files) it requires me to either redeploy the app or to restart the app server. I have tried to switch to the debu

dynamic validation

2004-03-01 Thread Bubeník Miroslav
Hi, does anybody have idea, how can I dynamicaly change, which field from form will be validated against validation defined in validation.xml? Which field should be validated will be determined on data from DB or other source Regards miro

Re: multipart-request / file upload problem

2004-03-01 Thread Adam Hardy
I'm going to put this another way: what's the secret with file upload requests? I can't see my file parameter in the request parameters when I submit the form with the multipart-request. Adam On 02/29/2004 07:05 PM Adam Hardy wrote: I use the Commons multipart request handler stuff to set up a

RE: struts and DHTML

2004-03-01 Thread McCormack, Chris
Hi Michel, I don't know what the solution to your jsp problem is, but, as a side note I would use html

Re: struts and DHTML

2004-03-01 Thread Mark Lowe
You want to put all the stuff that you need to be dynamic in div with id's .. then layer the javascript and css on after. This will allow you to get a minimal version running (no dhtml) and get the dhtml stuff running on one browser at a time. Trying to throw it all in together will push your d

[FRIDAY] YA Stuts In Action / JUnit in Action Trivia Quiz

2004-03-01 Thread Ted Husted
Last time, we asked contestants to recite the "jingle" from The Demolished Man by Alfred Bester and the "Fear" litany from Dune -OR- name two favorite changes, improvements, or new additions to theStruts Nightly Build since 1.1 was released (now known as Struts 1.2.0 ). The sought answers wer

validation.xml with German Characters (sauch as ü)

2004-03-01 Thread Zsolt Koppany
Hi, I want to use German Characters in validation.xml but when I use the expression below I get an error message attached to the end of this email: username [EMAIL PROTECTED]ü]+$ Error message: Reference to undefined entity "ü". org.xml.sax.SAXParseException: Reference to undef

tiles - smth like addToList?

2004-03-01 Thread Axel Gross
Hi people! Concerning tiles definition and extension of those. First part-o-mail: concrete problem Second part-o-mail: a more general approach (beginning of it ;) First part: I see the need for extending the entries of a putList without overriding the entries in the super definition. Example:

Re: validation.xml with German Characters (sauch as ü)

2004-03-01 Thread Axel Gross
Moin zsolt! hi didn't do this before, so i'm not to sure about it. looks like your current problem is a xml related one import the namespace of html, or define the entity by yourself (should be something on selfhtml.teamone.de about it...) if it works with the validator, i don't know besides...

Re: is struts UI internationalized?

2004-03-01 Thread Axel Groß
yes, you can i use smth like: hope it helps, Axel On 2004-02-24 at 09:50:21 -0500, Glanville, Jay wrote: > Are the UI components of Struts internationalized for me, or do I need > to do that myself? > > For example, the and tags create buttons > with the text "Submit" and "Canc

Re: validation.xml with German Characters (sauch as ü)

2004-03-01 Thread Theodosios Paschalidis
Hi guys, I had similar issues with Greek. Certain regular expressions that were supposed to work with Unicode characters, actually didn't. A Struts fellow suggested changing the xml's encoding to UTF-8 as follows I was then able to insert Greek characters directly, so it should work with German

SwitchAction

2004-03-01 Thread Daniel
My SwitchAction doesn't work, in my struts-congig.xml I put this: at my struts-config-comer.xml I have this: and type this on internet explorer: http://localhost:8080/TopitSGI/goToComer.do?prefix=/comer&page=/pesqClientes.do and the result is: The requ

RE: Avoiding app server restarts while doing struts development

2004-03-01 Thread Marco Mistroni
HI, I guess those changes,which have 'context scope', need Always a redeploy Only changes that don't need a redeploy can be jsp changes (provided that You deploy your application as a 'directory' rather than war file) Regards marco -Original Message- From: Abhishek Sr

struts-form vs struts html

2004-03-01 Thread Dean A. Hoover
Newbie here trying to make sense out of usage of these two tag libraries. I am using struts 1.1. Should I just use struts-html instead of struts-form? I haven't looked really close but there appears to be overlap. Dean Hoover - To

Re: Avoiding app server restarts while doing struts development

2004-03-01 Thread Mark Lowe
How about not redeploying on every single change and do things in batches? On 1 Mar 2004, at 15:18, Marco Mistroni wrote: HI, I guess those changes,which have 'context scope', need Always a redeploy Only changes that don't need a redeploy can be jsp changes (provided that You deploy

RE: validation.xml with German Characters (sauch as ü)

2004-03-01 Thread Zsolt Koppany
I tried that but it didn't help either. it is strange because I can use the following expression does work: filename ^[^\\/:*?"<>|]+$ Zsolt > -Original Message- > From: Theodosios Paschalidis [mailto:[EMAIL PROTECTED] > Sent: Monday, March 01, 2004 3:09 PM > To: Struts

[OT] MacOS X Java/Struts development (was RE: [OT] Maven (was Re: [ANNOUNCE] Struts 1.2.0 Test Build available))

2004-03-01 Thread Paul, R. Chip
I had been considering moving to MacOS X for a while now just because of general windows frustration. I was wondering how many issues, such as the one below, there are in developing on a mac? I've heard that Eclipse runs much faster in Windows than on a Mac as well, and I don't know if their Xcod

getting started

2004-03-01 Thread Dean A. Hoover
I am experimenting with some code from "Struts in Action" but I am moving source code around abit. Specifically, I am moving all of the .jsp files into the WEB-INF directory except index.jsp. This is so that a user cannot hit a given .jsp directly. Anyway, I am getting an exception right from the g

replacing messages tag with fmt tag - can both exist at 1x?

2004-03-01 Thread Menke, John
does anyone have the messages tag working in the same application as the fmt tag using the fmt tag for displaying messages in some pages and messages for other pages? can you implement both at once? - To unsubscribe, e-mail: [E

Re: [OT] MacOS X Java/Struts development (was RE: [OT] Maven (was Re: [ANNOUNCE] Struts 1.2.0 Test Build available))

2004-03-01 Thread Jeff Kyser
I have been extremely happy with IDEA on the MacOS X platform, although Mac was a little late getting a jdk1.4 up and running. I'm on Jaguar, have not migrated to Panther... -jeff On Monday, March 1, 2004, at 09:07 AM, Paul, R. Chip wrote: I had been considering moving to MacOS X for a while no

Splitting struts-config into multiple jar and read them as resource stream

2004-03-01 Thread Filippo Munafò
Hi, we have many projects whose output is a single jar: - two general framework projects; - more than 8 specific functional projects, each focused on a particular functional area; All those projects have a source structure like this: | |- java packages (struts action files plus some other not s

RE: [OT] MacOS X Java/Struts development (was RE: [OT] Maven (was Re: [ANNOUNCE] Struts 1.2.0 Test Build available))

2004-03-01 Thread Nguyen, Hien
I'm using Panther (OS X 10.3) with Eclipse, tomcat, mySQL and things are working perfectly fine. The latest JDK on OS X is 1.4.2. -Original Message- From: Jeff Kyser [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 10:23 AM To: Struts Users Mailing List Subject: Re: [OT] MacOS X

[REPOST] Problem updating bean from multi-select box

2004-03-01 Thread Andrew Bate
Hi, I posted this a week ago and didn't get a resolution - now I'm back on the case I would appreciate a few ideas on what else I could try:- Here's a bit more info (bean names etc sanitised to protect the innocent...) The main FormBean:- public class MyFormBean extends MyAncestorFormBea

Re: replacing messages tag with fmt tag - can both exist at 1x?

2004-03-01 Thread James Mitchell
Yes, just point them to the same file. -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx MSN: [EMAIL PROTECTED] - Original Message - From: "Menke, John" <[EMAIL PROTECTED]> To: "Struts (E-mail)" <[EMAIL PROTECTED]> Sent: Monday, Marc

Re: [OT] MacOS X Java/Struts development (was RE: [OT] Maven (was Re: [ANNOUNCE] Struts 1.2.0 Test Build available))

2004-03-01 Thread Mark Lowe
I use xcode on osx and personally i prefer it to those swing based things, (although IDEA I hear is in a class of its own). Xcode isn't as bigger leap at apple would have you believe I had project builder doing the same sorts of things with ant. But its quite nice that all the basics are there

RE: [OT] MacOS X Java/Struts development (was RE: [OT] Maven (was Re: [ANNOUNCE] Struts 1.2.0 Test Build available))

2004-03-01 Thread Andy Engle
"Nguyen, Hien" <[EMAIL PROTECTED]> wrote: > I'm using Panther (OS X 10.3) with Eclipse, tomcat, mySQL and things > are working perfectly fine. The latest JDK on OS X is 1.4.2. Same here. I like it all pretty well, but the only minor drawback is that sometimes I think the Eclipse interface in OS

java.lang.NullPointerException struts form is null

2004-03-01 Thread as as
Hi, Struts form is giving null in my action class .execute().Below are my files.Hep appreciated.Thanks import java.io.IOException; import java.util.List; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; i

RE: java.lang.NullPointerException struts form is null

2004-03-01 Thread Andrew Hill
Well... doublecheck your mapping in struts config. If you misspelled the class name or got the wrong form name struts can be rather silent about it and just give you a null form! -Original Message- From: as as [mailto:[EMAIL PROTECTED] Sent: Tuesday, 2 March 2004 00:29 To: [EMAIL PROTECTED

RE: [OT] MacOS X Java/Struts development (was RE: [OT] Maven (was Re: [ANNOUNCE] Struts 1.2.0 Test Build available))

2004-03-01 Thread Andrew Hill
Feeling Like I Just Started Another OS Shouting Match Yeh, cos windows is like really really g00d. Yeh. All us 133t [EMAIL PROTECTED] d00ds use it n' stuff. So dont be like putting it down cos its totally >>> 133t <<< and like .net will [EMAIL PROTECTED] owns linux and mac soon. Yeh. Ye gods!

RE: java.lang.NullPointerException struts form is null

2004-03-01 Thread Daniel Kalcevich
Try changing the "name" attribute in your config file to be "TeacherAddForm" instead of "teacherAddForm". HTH. Daniel -Original Message- From: as as [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 8:29 AM To: [EMAIL PROTECTED] Subject: java.lang.NullPointerException struts for

Semi-OT: Saving state when using EJB Session Beans and Struts

2004-03-01 Thread Smith, Darrin
I have an ordering application that will use stateful session beans to do the business logic. It can store session state in those stateful session beans. What implications does this have on the way state is handled in the upstream Struts app? In short, the Actions will be calling various Stateful

Re: DropDowns....

2004-03-01 Thread Daniel
1-This tag is free for comercial applications 2-At JDBC provider example, there is a select statement inside param tag into xml file, there is a possibitity of this select statment will be created inside my java code and xml file read it? 3-How can I make for get pa parameter value and pass th

Re: [OT] MacOS X Java/Struts development (was RE: [OT] Maven (was Re: [ANNOUNCE] Struts 1.2.0 Test Build available))

2004-03-01 Thread Tarik El Berrak
hi excuse me, can you tell me can i unsubscribe from this mailig list thanks a lot - Original Message - From: "Andrew Hill" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, March 01, 2004 5:36 PM Subject: RE: [OT] MacOS X Java/Struts development (was RE

Re: java.lang.NullPointerException struts form is null

2004-03-01 Thread Tarik El Berrak
hi excuse me, can you tell me can i unsubscribe from this mailig list thanks a lot - Original Message - From: "Daniel Kalcevich" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, March 01, 2004 5:40 PM Subject: RE: java.lang.NullPointerException struts f

Re: tiles - smth like addToList?

2004-03-01 Thread Adam Hardy
On 03/01/2004 02:37 PM Axel Gross wrote: I see the need for extending the entries of a putList without overriding the entries in the super definition. Example: so usually

RE: java.lang.NullPointerException struts form is null

2004-03-01 Thread Daniel Kalcevich
Try sending an empty email to [EMAIL PROTECTED] Daniel -Original Message- From: Tarik El Berrak [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 9:02 AM To: Struts Users Mailing List Subject: Re: java.lang.NullPointerException struts form is null hi excuse me, can you tell me ca

hiding jsp files under WEB-INF

2004-03-01 Thread Dean A. Hoover
I realized that the subject I filed this under (getting started) may not get attention. So I'm sending it out under this subject. Did some google searching but still don't see what the problem is. = I am experimenting with some code from "Struts in Action" but I am moving source code around abi

RE: [OT] MacOS X Java/Struts development (was RE: [OT] Maven (was Re: [ANNOUNCE] Struts 1.2.0 Test Build available))

2004-03-01 Thread Mainguy, Mike
It's included at the bottom of every message... <> -Original Message- From: Tarik El Berrak [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 12:02 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: [OT] MacOS X Java/Struts development (was RE: [OT] Maven (was Re: [ANN

Re: tiles - smth like addToList?

2004-03-01 Thread Axel Groß
On 2004-03-01 at 17:53:30 +0100, Adam Hardy wrote: > On 03/01/2004 02:37 PM Axel Gross wrote: > >I see the need for extending the entries of a putList without overriding > >the > >entries in the super definition. > >Example: > > > > > > > > > > > >

RE: hiding jsp files under WEB-INF

2004-03-01 Thread Mainguy, Mike
I usually code my index.jsp as follows: If your index.jsp isn't being processed through the struts controller, I'm not sure how much the logic tags like that. That should eliminate at least one problem. <> -Original Message- From: Dean A. Hoover [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: hiding jsp files under WEB-INF

2004-03-01 Thread Mainguy, Mike
Also, are sure sure welcome is not supposed to be Welcome? (case sensitive?) <> -Original Message- From: Dean A. Hoover [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 11:59 AM To: [EMAIL PROTECTED] Subject: hiding jsp files under WEB-INF I realized that the subject I filed this

Capture array from form bean into struts action class

2004-03-01 Thread as as
Any samples? Thanks (BAsically I am trying to get list of shoping cart items from my jsp and retrieve them like an array to later send it to my ItemDeleteAction.java class for deleeion.But how to stor the delete array in request or session?Request.setParameter or session permits only String ri

Re: hiding jsp files under WEB-INF

2004-03-01 Thread Dean A. Hoover
Mainguy, Mike wrote: Also, are sure sure welcome is not supposed to be Welcome? (case sensitive?) The way I understand it, "welcome" is globally forwarded to "/Welcome.do", as per the struts-config.xml. <> -Original Message- From: Dean A. Hoover [mailto:[EMAIL PROTECTED] Sent: Monday,

Re: hiding jsp files under WEB-INF

2004-03-01 Thread Niall Pemberton
If you look in 'logic tags' package: http://cvs.apache.org/viewcvs.cgi/jakarta-struts/src/share/org/apache/struts/taglib/logic/ In LocalStrings.properties you will see that the message you are getting ("Exception forwarding for name ?") matches the message named 'forward.forward'. If you th

RE: hiding jsp files under WEB-INF

2004-03-01 Thread Mainguy, Mike
Whoops, didn't see that. Now I'm more inclined to think this will not work as this page is not being handled by the struts controller. <> -Original Message- From: Dean A. Hoover [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 12:35 PM To: Struts Users Mailing List Subject: Re: hi

Re: hiding jsp files under WEB-INF

2004-03-01 Thread Niall Pemberton
Alternatively Change the on your index.jsp page to an ordinary link and see if that works. Click Here Niall - Original Message - From: "Niall Pemberton" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, March 01, 2004 5:40 PM Subject: Re: hiding

RE: hiding jsp files under WEB-INF

2004-03-01 Thread shirishchandra.sakhare
Hi, The taglibs will work, whether or not the page is being handled by struts controller,so long as they have the required objects(form bean , other beans)in the scopes mentioned in jsps. :-)) -Original Message- From: Mainguy, Mike [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 6

RE: java.lang.NullPointerException struts form is null

2004-03-01 Thread Mainguy, Mike
It seems like that user is getting that text automagically added to the top of his messages... <> -Original Message- From: Daniel Kalcevich [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 11:57 AM To: Struts Users Mailing List; Tarik El Berrak Subject: RE: java.lang.NullPointerEx

RE: DropDowns....

2004-03-01 Thread Guillermo Meyer
Providers is an open source project under GNU General Public License (GPL), so you can use it freely. You can create your own provider class (in className attribute in providers) to produce anything you need if you want to avoid placing SQL statements in configuration file. We are working in next v

Re: Capture array from form bean into struts action class

2004-03-01 Thread Hubert Rabago
Tons of samples with discussion in the archives. http://marc.theaimsgroup.com/?l=struts-user&w=2&r=1&s=indexed&q=b http://marc.theaimsgroup.com/?l=struts-user&m=107600405406119&w=2 --- as as <[EMAIL PROTECTED]> wrote: > Any samples? > Thanks > > (BAsically I am trying to get list of shoping cart

Struts and Javascript

2004-03-01 Thread as as
HI, I am working on an app that has a jsp with a drop down.This drop down must automatically be populated(on first page load) with the defualt value showing up as "Selected". i got the drop down working with tag but it shows the drp down and not the defualta s teh selected .how to accomplish

Re: Capture array from form bean into struts action class

2004-03-01 Thread as as
Hubert, Excellent and thanks for the quick response.I will look and try following these examples! Hubert Rabago <[EMAIL PROTECTED]> wrote: Tons of samples with discussion in the archives. http://marc.theaimsgroup.com/?l=struts-user&w=2&r=1&s=indexed&q=b http://marc.theaimsgroup.com/?l=struts-use

Re: multipart-request / file upload problem

2004-03-01 Thread Martin Cooper
"Adam Hardy" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm going to put this another way: what's the secret with file upload > requests? I can't see my file parameter in the request parameters when I > submit the form with the multipart-request. Ah, if I told you that, it woul

RE: Action class calling other Action class

2004-03-01 Thread Ramadoss Chinnakuzhandai
When I try to call actionA from actionB by forwarding to the path which mapped to actionA it is not actually invoking actionA. -Original

RE: Action class calling other Action class

2004-03-01 Thread Ramadoss Chinnakuzhandai
pls ignore my prev mail. -Original Message- From: Ramadoss Chinnakuzhandai Sent: Monday, March 01, 2004 3:12 PM To: Struts Users Mailing List Subject: RE: Action class calling other Action class When I try to call actionA from actionB by forwarding to the path which mapped to actionA i

Re: problem with URL forwarding

2004-03-01 Thread Raj Atchutuni
Watch these following url. They work fine in the browser directly. The second one does'nt work through struts-config.xml. First one works fine either way. Can some one tell me the reason for this ? pls. https://server.mycompany.com/webapp/wcs/stores/servlet/MYAUCTION/index.jsp https://server.myco

RE: Action class calling other Action class

2004-03-01 Thread Ramadoss Chinnakuzhandai
When I try to call actionA from actionB by forwarding to the path which mapped to actionA it is not actually invoking actionA. I dont know what is wrong with my codefollowing is piece of my code Note: I hv tried in the actionA bu

RE: Action class calling other Action class

2004-03-01 Thread Hubert Rabago
Try changing updateSuccess path to reflect your actual relative URL: - or whatever extension you're using. --- Ramadoss Chinnakuzhandai <[EMAIL PROTECTED]> wrote: > When I try to call actionA from actionB by forwarding to the path which > mapped to actionA it is not actually invoking actionA. >

Re: microsoft sqlserver driver & struts

2004-03-01 Thread Danko Desancic
Hi, newbie to struts and I have similar problem namely I added a datasource in my struts-config.xml and after that I can't even reload my app. Non - struts applications are using this driver without problems. Bellow are stack trace from tomcat log (5.0.18) and part of my struts-config. I have al

RE: Action class calling other Action class

2004-03-01 Thread Raj Atchutuni
Look at this. It is working fine and fires callMe action. Ramadoss Chinnakuzhandai <[EMAIL PROTECTED]> wrote: When I try to call actionA from actionB by forwarding to the path which mapped to actionA it is not actually invoking actionA. I dont know what is wrong with my codefollo

Starting time-consuming jobs early

2004-03-01 Thread Andy Engle
Hi all, It looks like I am going to be involved with a project where the goal is to gather a bunch of product information from multiple databases, and then mix-n-match (a highly-technical term there) all that data to ultimately generate some metrics charts. It seems that making this a web applica

Re: tiles - smth like addToList?

2004-03-01 Thread Adam Hardy
On 03/01/2004 06:12 PM Axel Groß wrote: On 2004-03-01 at 17:53:30 +0100, Adam Hardy wrote: I see the need for extending the entries of a putList without overriding the entries in the super definition. Example: so usually this would replace the list in .head.common with

Re: Starting time-consuming jobs early

2004-03-01 Thread amr
Quartz might work for you http://www.quartzscheduler.org Andy Engle <[EMAIL PROTECTED]

Re: multipart-request / file upload problem

2004-03-01 Thread Adam Hardy
Thanks for the exposÃ. :) So it's worse than I feared! Well, I shall just come up with a convincing error message in those situations where I would have needed it, rather than try to force a square peg somewhere it doesn't want to go. Adam On 03/01/2004 08:23 PM Martin Cooper wrote: I'm going

Re: Starting time-consuming jobs early

2004-03-01 Thread David Erickson
You ought to be able to make a struts plugin or a servlet thats loaded by your webserver that starts a thread that watches for a certain time each week then wakes up and does stuff.. -David - Original Message - From: "Andy Engle" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, M

Re: microsoft sqlserver driver & struts

2004-03-01 Thread Mark Lowe
Just a guess . but its looking for the old GenericDataSource have the the struts-legacy.jar in your lib directory? There's also some weird BillGates-tastic argument you have to pass though with the url string. But i have no experience with ms sql server. On 1 Mar 2004, at 21:28, Danko Desa

Actions with Modules

2004-03-01 Thread Daniel
I have 2 modules (moduloA,moduloB), and I'm use SwitcAction, when I call page1.jsp from moduloB form it's ok, but doesn't work page1jsp action , I think the problem is just path, when I change module the can't find actions. obrigado Daniel S.

RE: [OT] RE: Memory usage

2004-03-01 Thread P K
Sorry to continue on this topic. I've learnt a great deal of non struts stuff on this list and this only adds to it. I've been bothered (mostly in my mind) with questions about peoples capabilities and desires when it comes to work. Viru, this original poster of the question on Memory Usage clea

Life, the Universe and Everything (was: RE: [OT] RE: Memory usage)

2004-03-01 Thread Chappell, Simon P
While the original flame war was less helpful, the question that has emerged from it's ashes is a good one. I don't claim to have all the answers, but I can offer some personal observations. Feel free to disagree. 1. You can do nothing about those who choose not to learn. I've tried changing the

RE: [OT] RE: Memory usage

2004-03-01 Thread Hookom, Jacob
I think especially in large corporate environments, it can be very difficult to "boil to the surface" without stepping on toes. People have different ideas on what it means to work and what is acceptable code ;-) I have managers who only know the way things were done 5-10 years ago, but I'm very

Re: [OT] MacOS X Java/Struts development (was RE: [OT] Maven (was Re: [ANNOUNCE] Struts 1.2.0 Test Build available))

2004-03-01 Thread Tim Coy
I have been doing Struts projects on Mac OS X (currently Panther) for nearly 2 years now using Eclipse/Dreamweaver/Ant etc I like it. Most of my associate developers using windows on the same projects seem to wish they had a mac to work with. Java on the Mac has come a long way in 8 years. Just b

Action not forwarding to another Action

2004-03-01 Thread Au-Yeung, Stella H
Hi: I have a similar problem that I can't invoke OrderSearchAction.exe from OrderMaintainAction. I set a debug breakpoint at the beginning of OrderSearchAction and never get there. I have two other questions: 1) Can someone also tell m

[OT] extension [WAS] RE: Action not forwarding to another Action

2004-03-01 Thread Mainguy, Mike
Wow, that's almost like me setting the mapping extension to .asp and confusing the heck out of the people I was talking too. Has that issue come up? <> -Original Message- From: Au-Yeung, Stella H [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 5:51 PM To: '[EMAIL PROTECTED]' Subj

Alternate Presentations

2004-03-01 Thread DuBois, Joseph
Heylo all, We are currently using struts (started with 1.0) and are moving to 1.1 and using Tiles. Our managers want us to develop for both the desktop browser client and the PocketPC browser client (possibly more in the future). In our applications we have the same actions, just need separate

RE: Action not forwarding to another Action

2004-03-01 Thread Ramadoss Chinnakuzhandai
if ".exe" is what you hv configured in web.xml then I see there is no reason why it is not picking up possible reason could be... make sure that you are forwarding to "Content" which is mapped to "/app/ListOfOrder.exe" in your OrderMaintainAction >>1) Can someone also tell me if I have a "Req

Re: Semi-OT: Saving state when using EJB Session Beans and Struts

2004-03-01 Thread Adam Hardy
On 03/01/2004 05:47 PM Smith, Darrin wrote: In short, the Actions will be calling various Stateful Session Beans to do the actual work. These are used for various reasons with the main one being their built-in transaction support (online orders...need to be either done...or not done). How should s

RE: Action not forwarding to another Action

2004-03-01 Thread Gopalakrishnan, Jayesh
I think when you say 'redirect="true"', then you lose your request object. This is like a client side/browser redirect. Remove this attribute from your element and give it a try. -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 3

RE: Action not forwarding to another Action

2004-03-01 Thread Ramadoss Chinnakuzhandai
tnx a lot for your help. -Ramadoss -Original Message- From: Gopalakrishnan, Jayesh [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 6:45 PM To: Struts Users Mailing List Subject: RE: Action not forwarding to another Action I think when you say 'redirect="true"', then you lose yo

Validator & multiple message-resources

2004-03-01 Thread amind
Hi, I have successfully used validator with a single message resources file specified in the config file, everything works out fine. Since the project has gotten bigger, i created another message-resource file but when 'required' error happens, the message specifying the field name which is in the

[OT] Rick Hightower on Thursday, March 18th in Mountain View, CA

2004-03-01 Thread Van Riper, Mike
Rick Hightower will be presenting at the March 18th meeting of the Silicon Valley Struts User Group. We are still working out the final details, but, it looks like Rick will make a presentation on the Tiles framework. A partial meeting announcement is already on the web. It will be updated soon wit

RE: Life, the Universe and Everything (was: RE: [OT] RE: Memory usage)

2004-03-01 Thread Andrew Hill
Ive found the best way to avoid those kind of morons is to work at small companies where any deadwood has nowhere to hide and is quickly pruned :-) Our tech leads really know their stuff here. -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Tuesday, 2 March 2004

[OT] Applet communication with web app

2004-03-01 Thread Andrew Hill
Quick question: Given an applet that is part of a web app, what is the usual (best/easiest?) technique for said applet to communicate with the server and vice-versa: 1. Handle the socket stuff itself and open a connection with the server 2. Use RMI 3. Other? ---

RE: Action not forwarding to another Action

2004-03-01 Thread Au-Yeung, Stella H
Thanks Ramadoss. You led me to look into my web.xml file. It is mapped to *.exec and not *.exe. It's an oversight on my part. Let me elaborate my question #3: If my .JSP has a , I know when I click a 'submit' button to get to an Action class, I can retrieve the id in my Action class by doing "

Re: Life, the Universe and Everything (was: RE: [OT] RE: Memory usage)

2004-03-01 Thread Vic Cekvenich
-Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] 4. I had the same frustrations that you have. I made the decision that the best way to restore the balance of good in the universe, was to try to become the kind of tech lead that I would have wanted when I was a newbie/

  1   2   >