RE: newbie html-el question

2004-03-26 Thread Slattery, Tim - BLS
, a local variable should also work, you can define it using the c:set... JSTL tag. Actually, you shouldn't need to specify a value here at all. The html-el:text... tag will get the default value from your form bean. -- Tim Slattery [EMAIL PROTECTED

RE: How to display a bean property with html markup?

2004-03-25 Thread Slattery, Tim - BLS
with lt;. That's what you want to hppen in this case. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Changing the FileUpload-Processing

2004-03-22 Thread Tim . Adler
the progress bar tugs in. Can somebody tell me a good way to do this? I know that there is a CommonsMultipartRequestHandler which starts on doing this. But where exactly does Struts utilize this thing? Thx for any help! Hope this is not too specific. ___ Tim

File-Upload: Progress-Bar

2004-03-19 Thread Tim . Adler
before and can give me some little advise? Or more specific: Is it possible to first get the complete filesize from the FormFiles and the do the real Upload during the Action (keeping track of the read bytes) Thx for every help!! ___ Tim Adler, Abt. SDA1 Adress

AW: SessionTimeout handling

2004-03-19 Thread Tim . Adler
I do something similar. I don't know which version of Struts you are using, but I decided to create a general SessionTimeoutException and forward the User to a SessionTimeout page when that error occurs. I'm simply configured a GeneralFoward for the SessionTimeout page. protected void

AW: SessionTimeout handling

2004-03-19 Thread Tim . Adler
Well I simply subclassed Action to my own and made the session-checking configurable through properties for the respective ActionMapping. Therefore you simply need to subclass ActionMapping also and put this on top of your action-mappings: action-mappings type=az.dias.miner.AzActionMapping

AW: File-Upload: Progress-Bar

2004-03-19 Thread Tim . Adler
Upload during the Action (keeping track of the read bytes) Thx for every help!! ___ Tim Adler, Abt. SDA1 Adress Management Solutions AZ | Direct Carl-Bertelsmann Straße 161s D-33311 Gütersloh Tel.: 05241/ 80 - 89574 [EMAIL PROTECTED

Struts: Session Serialization

2004-03-16 Thread Tim . Adler
are not Serializable (don't implement it). So my questions is, either: How do I prevent these Exceptions (like turning off Session-Serialization in cfg)? Or should I add Serializable to my not-serializable attributes, and what would be the benefit of that?? Thx for the help! Tim

RE: Text Area

2004-03-16 Thread Slattery, Tim - BLS
How to make the below a text area? html:text property=info/ html:textarea property=info/ -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: wizard best practices?

2004-03-12 Thread Slattery, Tim - BLS
and still get the empty page. Do you know why it would do that? Do you have an input= attribute for this page in your struts-config.xml file? -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: AW: AW: bean:message format ssn

2004-03-11 Thread Slattery, Tim - BLS
that returns the SSN string with the appropriate punctuation inserted. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How to make AND and OR conditions with logic struts tags

2004-03-11 Thread Slattery, Tim - BLS
that happens when none of the when clauses execute /c:otherwise /c:choose -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: people using action form field

2004-03-09 Thread Slattery, Tim - BLS
attribute: form action=whatever id=formname Now you can use the ID attribute to find the form: document.getElementById(formname).action=newaction.do; -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: people using action form field

2004-03-09 Thread Slattery, Tim - BLS
But I cannot set the id element in the html:form tag. Yes you can. The Struts styleId attribute of html:form... translates in HTML to the id attribute of form -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail

RE: people using action form field

2004-03-09 Thread Slattery, Tim - BLS
Ok, Tim. But when I try the change the value of the action, as you said, document.getElementById(formname).action=newaction.do; it refers to the action field and not the action element in the form tag. Suddenly I have the feeling that I don't know what you're talking about. What's

RE: people using action form field

2004-03-09 Thread Slattery, Tim - BLS
Julio, are you talking about something like: form action=whatever input type=text name=action In that case, you can assign an id attribute to the input field the same way you assigned one to the form field, and address it in the same manner. Or you can use the name field:

RE: people using action form field

2004-03-09 Thread Slattery, Tim - BLS
= Then your JavaScript would look like this: document.getElementById().action=somethingelse.do; That can only assign a new value to the action attribute of the form.. tag, it can't possibly address the hidden text field. -- Tim Slattery [EMAIL PROTECTED

Own Action-Subclass: How to configure using set-property-elemen ts?

2004-03-08 Thread Tim . Adler
seem like they could give me such an ability based on every action-mapping. That'd be nice. But HOW can I access those properties in my action?! I can't seem to find any methods for that. Thx for any help!! ___ Tim Adler, Abt. SDA1 Adress Management Solutions AZ

RE: Hiding URL Parameters

2004-03-04 Thread Slattery, Tim - BLS
. But if you're using an html hyperlink, or the Struts html:link... tag, you cannot pass arguments without having them appear in the URL. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Form name from JSP page

2004-03-03 Thread Tim Coy
all the names of the input fields one at a time form the second form on the page. This is cross browser compliant. document.all is only valid in the IE browser DOM -- Tim Coy Timco Electronics Pty Ltd [EMAIL PROTECTED] Hi, My JSP page has some javascript that need to references

Re: Another struts question on bean:write

2004-03-03 Thread Tim Coy
to keep the text width a certain size you can also inline style with p style=width: 200px;comments here/p HTH -- Tim Coy If I use bean:write to display a bean property comments which happens to be a long line of text. Is there a way to enforce wrapping with bean:write so the long comments

Re: Getting the real request url

2004-03-03 Thread Tim Coy
Hen, Unless I misunderstand your question HttpServletRequest getHeader(referer) should do it -- Tim Coy [more a generic servlet question than struts specific, but no jsr user lists] I've a page which wants to know the url that was used to request it. If I use the servlet API, all I

FileUpload and ActionForward

2004-03-03 Thread Tim Coy
information out of the request, it appears to be empty. Is it possible to do, will someone point me to an example? -- Tim Coy - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: FileUpload and ActionForward

2004-03-03 Thread Tim Coy
Doh! Perfect thank you -- Tim Coy There is a sample application that ships with Struts (struts-upload.war) which shows how they wrapped commons-fileupload to work with ActionForms. Hubert --- Tim Coy [EMAIL PROTECTED] wrote: I am trying to use org.apache.commons.fileupload within

Re: FileUpload and ActionForward

2004-03-03 Thread Tim Coy
Although... With my limited programming experience I can not see how they have used org.apache.commons.fileupload in the example -- Tim Coy There is a sample application that ships with Struts (struts-upload.war) which shows how they wrapped commons-fileupload to work with ActionForms

How do I access Message Resources in an Action?

2004-03-02 Thread Tim . Adler
the Message Resources, and I don't know how to access those in an Action. Can somebody help me?! Thx! P.S.: Can you guys access http://java.sun.com http://java.sun.com ??! Either my company's net is broken or the page is really down. ___ Tim Adler, Abt. SDA1 Adress

AW: How do I access Message Resources in an Action?

2004-03-02 Thread Tim . Adler
to access those in an Action. Can somebody help me?! Thx! P.S.: Can you guys access http://java.sun.com http://java.sun.com ??! Either my company's net is broken or the page is really down. ___ Tim Adler, Abt. SDA1 Adress Management Solutions AZ

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

RE: Problem with tags and overloaded methods

2004-02-27 Thread Slattery, Tim - BLS
I reiterate, I believe it's a bad idea to use the same method name for two different property mappings. If you can find some documentation that recommends you do that, I'd like to see it. I believe Tim is referring to what is defined in section 8.3.3 of the JavaBeans spec

RE: Iterate of List - need to test if list is null

2004-02-27 Thread Slattery, Tim - BLS
=progressBar /logic:iterate how can i test if the progressBar is null before i start the iterate. Use JSTL: c: if test=${!empty wizard.progressBar} logic iterate name=wizard property=pregressBar/logic:iterate /c:test -- Tim Slattery [EMAIL PROTECTED

RE: bean:define ???

2004-02-27 Thread Slattery, Tim - BLS
how pageContext translates, but I think this will do it. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: microsoft sqlserver driver struts

2004-02-27 Thread Tim Coy
I am using SQL Server 7 With the microsoft driver no problem Connection URL needs to be jdbc:microsoft:sqlserver://SERVERNAME:1433;DatabaseName=DBNAME;SelectMethod= Cursor Refer to http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3B313181 -- Tim Coy Timco Electronics Pty Ltd [EMAIL

RE: Problem with tags and overloaded methods

2004-02-26 Thread Slattery, Tim - BLS
is. Hmm...we were warned that 1.3.1_10 was more picky that what we had been using on the dev server in parsing properties. I'll have to look closely at the page that works in both environments with no changes, I thought it was doing the same thing in a couple of places. -- Tim Slattery [EMAIL

Problem with tags and overloaded methods

2004-02-26 Thread Slattery, Tim - BLS
. Changing the name of the unindexed getter, so that it's no longer an overloaded function, makes it work. I can't figure out why this works on my desktop and fails on the server. All tld and jar files for the tags are included in the WAR file. -- Tim Slattery [EMAIL PROTECTED

RE: optionsCollection ...

2004-02-25 Thread Slattery, Tim - BLS
), and a domesticForeignList property. That returns a collection of beans, each of which has code and value properties. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: Breadcrumbs

2004-02-24 Thread Tim Kettering
arrows, or a pipe symbol, or whatever for true separation of logic/HTML concerns, but we haven't needed to do that yet. Just my two cents. -tim -Original Message- From: Miller, Judd M,,DMDCWEST [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 7:57 PM To: 'Struts Users

RE: html:text question

2004-02-20 Thread Slattery, Tim - BLS
value=${testForm.testers.testerName}/ -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How to make readonly in Select Box

2004-02-20 Thread Slattery, Tim - BLS
I want to make readyonly in Select Box. If i gave readonly=true. There is no property called readonly..What i have to do for that one HTML Select groups don't have a readonly property, that's why the Struts tag doesn't have it. -- Tim Slattery [EMAIL PROTECTED

RE: easy question... logic:iterate

2004-02-19 Thread Slattery, Tim - BLS
: c:forEach items=${userInfo} var=users varStat=stat c:if test=${stat.first} c:out value=${users.userName}/ /c:if ... /c:forEach -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: Logic:equal

2004-02-19 Thread Slattery, Tim - BLS
How to compare boolean values by logic:equal? logic:equal name=currentRow property=editable value=true // do something /logic:equal Use JSTL instead: c:if test=${currentRow.editable} // do something /c:if -- Tim Slattery [EMAIL PROTECTED

RE: Html:Form input not being returned

2004-02-17 Thread Slattery, Tim - BLS
is the default for the html:form... tag, you can't see them in the URL. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: overlapping cells in table with firebird

2004-02-16 Thread Tim Coy
Are you using c:url to reference the external CCS file? Tim Hi, When displaying struts page in firebird or mozilla for the first time (increased load time due to jsp compilation) I got some strange effect: Some table's cells overllaps themself. Redisplaying the page using F5 corrects

RE: corporate hierarchy

2004-02-13 Thread Tim Kettering
the source himself. -tim -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of sean jones Sent: Friday, February 13, 2004 1:59 PM To: [EMAIL PROTECTED] Subject: corporate hierarchy Is there any struts tricks or tips that would help display an orgranizational tree i have a 17

RE: Double formating in html:text boxes

2004-02-12 Thread Slattery, Tim - BLS
to format it: fmt:formatNumber/ -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Struts Decision making

2004-02-11 Thread Slattery, Tim - BLS
/c:otherwise /c:choose -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Sending email from struts

2004-02-11 Thread Tim Kettering
a forward to a page while sending a email, like a password reminder workflow, etc. -tim -Original Message- From: Samyukta Akunuru [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 11, 2004 11:05 AM To: Struts Users Mailing List Subject: RE: [OT] Sending email from struts Did you try using

Errors or messages or??

2004-02-10 Thread Slattery, Tim - BLS
. What's this about messages=true? Where does that get set? -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Errors or messages or??

2004-02-10 Thread Slattery, Tim - BLS
an ActionErrors object, and a non-deprecated one that takes an ActionMessages object. This message is apparently telling me that the non-deprecated one doesn't exist. I'm using Struts 1.1. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe

RE: Errors or messages or??

2004-02-10 Thread Slattery, Tim - BLS
it to the JSP page in such a way that the html:messages tag can find the error messages. Sounds like I've been wasting my time. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: Errors or messages or??

2004-02-10 Thread Slattery, Tim - BLS
Not sure if you're just venting, or looking for a solution, but... you can install the struts-documentation.war that came with the Struts 1.1 binary distribution, and then you'll have the documentation that goes with the release you're using. Thank you! I hadn't found that. -- Tim

RE: Struts Tag

2004-02-09 Thread Slattery, Tim - BLS
does anyone know a tag like logic:Match or logic:equals beside that it should be able to handel more than one property! Use the JSTL c:if test=... tag. You can use a quite complex expression involving as many variables as you like. -- Tim Slattery [EMAIL PROTECTED

ActionErrors deprecated?

2004-02-09 Thread Slattery, Tim - BLS
? Are we supposed to drop ActionError entirely in favor of ActionMessage? There's no deprecation note in the description of ActionError. What's happening here? -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL

RE: ActionErrors deprecated?

2004-02-09 Thread Slattery, Tim - BLS
that to an ActionErrors collection, and use html:errors/ to display the contents of that on the JSP page. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: ActionErrors deprecated?

2004-02-09 Thread Slattery, Tim - BLS
in jsp use this: html:text property=foo/ struts-html:messages id=error property=foo struts-bean:write name=error/ /struts-html:messages Maybe I'm dumb, but I can't make any sense of this. Use it for what? -- Tim Slattery [EMAIL PROTECTED

RE: logic:iterate question

2004-02-06 Thread Slattery, Tim - BLS
... logic:equal value=... name=index ... /logic:equal /logic:iterate This is something that JSTL does *extremely* well: c:forEach items=foo.bar var=bar varStat=stat c:if test=stat.last do what needs to be done /c:if /c:forEach -- Tim Slattery [EMAIL

RE: logic:iterate question

2004-02-06 Thread Slattery, Tim - BLS
to be done /c:if /c:forEach -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: out tag inside html:text tag

2004-02-04 Thread Slattery, Tim - BLS
is not going to work. But, you can get the same place by using the el tags: html-el:text name=Customer property =Name maxlength=256 size=256 style=${styleVar}/ / -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail

RE: what is controller servlet in struts framework

2004-02-04 Thread Slattery, Tim - BLS
invokes a *.do URL. It reads struts-config.xml to determine what FormBean to create, parses the arguments sent with the request to populate that bean, then passes the bean to the execute method of the Action class specified by struts-config.xml. -- Tim Slattery [EMAIL PROTECTED

RE: [OT] Looking for junior Java/Struts developers

2004-02-04 Thread Slattery, Tim - BLS
against them. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Using Validator To Avoid Database Trip

2004-02-03 Thread Slattery, Tim - BLS
to the user. If they differ, then the database needs to be updated. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Problems when not using html:form

2004-02-02 Thread Slattery, Tim - BLS
-config.xml. In my struts-config.xml, and I think it's the standard way to do it, all the path attributes of the action definitions start with /. So using /Login.do would work as expected. -- Tim Slattery [EMAIL PROTECTED

RE: Problems when not using html:form

2004-02-02 Thread Slattery, Tim - BLS
the app context to the action value. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Form beans with nested arrays

2004-01-30 Thread Slattery, Tim - BLS
. But it only works because I know there are always exactly five prices. Is there a way to handle this with nested loops that will work regardless of the size of the array? -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail

RE: What does do stand for in .do files

2004-01-30 Thread Slattery, Tim - BLS
was chosen because these things are supposed to do something. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Form beans with nested arrays

2004-01-30 Thread Slattery, Tim - BLS
tag does, is that right? And the nested:iterate tag will get the right subscripts at all the right level too? Many thanks, this will help immensely! -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: What does do stand for in .do files

2004-01-30 Thread Slattery, Tim - BLS
I am old enough to remember when Mark Zibykowski used to stamp every DOS executable with MZ Umm..look again. Every *.exe file *still* begins with the letters MZ. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail

How to nest iterations?

2004-01-29 Thread Slattery, Tim - BLS
to do this within Struts? -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How to nest iterations?

2004-01-29 Thread Slattery, Tim - BLS
is submitted, NOTHING is accessed. I get no error messages, but something sure isn't working right. -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Debugging in JBoss 3.2.3

2004-01-22 Thread Tim Kettering
The newest release works on M6. (3.7RC2, I believe) I havent had any trouble using it. -tim Now, if only MyEclipse worked on 3.0 M6...hm - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

RE: deleted ApplicationResources_de.properties ghost

2004-01-19 Thread Tim Kettering
Does the same thing happen when you build/run the webapp on a different computer? Not sure what to tell you here, but that should at least narrow the scope to something in the source or some ghost file on your dev machine. -tim -Original Message- From: Adam Hardy [mailto:[EMAIL

logic:iterate problem

2004-01-12 Thread Tim
I'm using the logic:iterate tag in my jsp with the following code: theForm is a dynamic actionform, value(thelist) is a vector containing the values to be printed. I've checked the Action class, and all values of the form are properly filled and not null. logic:iterate id=item name=theForm

RE: [OT] Oldest Language

2004-01-08 Thread Tim Kettering
You'd probably be best off asking Google (the one true Oracle). This is what turned up on world's oldest language, but probably not the answer you were looking for. http://www.linguistlist.org/~ask-ling/archive-most-recent/msg01880.html -Original Message- From: Ramadoss

RE: [OT] Oldest Language

2004-01-08 Thread Tim Kettering
, more tangible, like the oldest written language, or earliest known language, you may have better answers. -tim -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 2:20 PM To: Struts Users Mailing List Subject: RE: [OT] Oldest

Unspecified action in LookupDispatchAction behavior?

2004-01-08 Thread Tim Kettering
be doing? Thanks! /fooAction.do // throws ServletError with handler not found message /fooAction.do?bar=invalid // non-valid parameter goes thru unspecified method. /fooAction.do?bar=valid// valid parameter does get executed. === Tim

BeanUtils.copyProperties()

2004-01-07 Thread Dixon Tim Contr HQ SSG/STN
I'm doing a copyProperties to an Entity from a DTO. Why is it that if a date field is null, a date is returned as if I had passed a value of 0 to the copy method for the date. I.E. I passed a null date into copyProperties, but I got back a non-null date. What gives? Thx, /tim

NullPointerException at ActionServlet.java:1003 using JRun4; work OK under Tomcat/JWSDP1.2

2004-01-06 Thread Tim Lucia
) . . . Peeking at the source, it looks like it's trying to read a config file, presumably for my module. Anyone seen this before? How did you overcome this problem? Thanks, Tim private void parseModuleConfigFile( String prefix, String paths, ModuleConfig config

RE: NullPointerException at ActionServlet.java:1003 using JRun4; work OK under Tomcat/JWSDP1.2

2004-01-06 Thread Tim Lucia
-config-module.xml rather then NullPointerException?) Tim -Original Message- From: Tim Lucia [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 06, 2004 10:00 AM To: 'Struts Users Mailing List' Subject: NullPointerException at ActionServlet.java:1003 using JRun4; work OK under Tomcat

RE: Need some Multibox help.

2004-01-06 Thread Tim Lucia
(...)) or request.setAttribute(...). Tim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 06, 2004 8:17 PM To: Struts Users Mailing List Subject: Need some Multibox help. Hi everyone. I need some simple multibox help here. I've gone

RE: Problem with action chaining

2004-01-02 Thread Tim Lucia
with the DAO value of the data (this way, the error messages make more sense.) I think my original posting may have been misleading to a degree. I was suggesting writing new (additional) ActionMappings to reuse existing Action classes to create new views. Thanks again, Tim -Original Message

RE: Problem with action chaining

2004-01-01 Thread Tim Lucia
tag libraries, and HTML [which they already know]. By chaining actions, they can use the existing .class files without us shipping the java sources and having them modified in the field.) Happy New Year, Tim -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: Wednesday

RE: Problem with action chaining

2003-12-31 Thread Tim Lucia
I define action path 1 to be action 1 and forward to the display for the Collection of Object1, and define action path 2 to be action 1 forward to action 2 forward to editor page which has a select of collection of object 1, while editing Object2. Thanks, Tim -Original Message- From

RE: Boolean checkbox in session form

2003-12-29 Thread Tim Lucia
Care to share? This would be a very, very useful extension. Is there any plan(s) for future Struts release(s) to support some attribute of this sort? Something like forceFalse='true' or forceValue='true'. Tim -Original Message- From: Guillermo Meyer [mailto:[EMAIL PROTECTED] Sent

RE: Struts test cases

2003-12-19 Thread Tim Lucia
is supposed to fix this. setContextDirectory(new File(ILT/)); // Set the module to ilt; load ilt's config file this.setConfigFile(ilt, /WEB-INF/ilt/struts-config-ilt.xml); setRequestPathInfo(ilt, /Welcome); // login actionPerform(); } Tim Lucia -Original

RE: [OT] reload servlet without restarting the application

2003-12-16 Thread Tim Lucia
and make a form out of them, so you can enable various loggers on the fly. Tim -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 16, 2003 4:08 PM To: [EMAIL PROTECTED] Subject: [OT] reload servlet without restarting the application Hi

RE: URLs Parameters

2003-12-15 Thread Tim Lucia
logic:present parameter=type logic:equal parameter=type value=name /logic:equal logic:equal parameter=type value=age /logic:equal . . . /logic:present I will assume you know you do not wish to use forms. Tim Lucia -Original Message- From: Steven Nakhla [mailto:[EMAIL PROTECTED] Sent

RE: [OFF TOPIC] STRUTS PROGRAMMER JOB.

2003-12-11 Thread Kuntz, Tim
Martin, Is the uniform and spatula provided? tk -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2003 5:37 PM To: Struts Users Mailing List Subject: Re: [OFF TOPIC] STRUTS PROGRAMMER JOB. Actually that figure is a bit high .. 4.75/hr if you

RE: Tiles setup question

2003-12-09 Thread Tim Lucia
. Tim Lucia -Original Message- From: Richard Hill [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 5:41 PM To: 'Struts Users Mailing List' Subject: RE: Tiles setup question Tim, I tried what suggested, but still get the The requested resource (/myapp/myapp.index

RE: [OT] Log4J and Pre-Processor

2003-12-09 Thread Tim Lucia
objects, costing memory and garbage collection, which will significantly impact performance more then the if () to check whether to do it or not. Tim Lucia -Original Message- From: Kirk Wylie [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 7:20 PM To: Struts Users Mailing List

RE: how to submit form using html:link tag

2003-12-08 Thread Tim Lucia
html:link ... onclick=x(arg); .../ Tim Lucia -Original Message- From: Nisith Dash [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 7:28 AM To: Struts Users Mailing List Subject: how to submit form using html:link tag Hi, Can anyone of you help me with this..i have

RE: how to submit form using html:link tag

2003-12-08 Thread Tim Lucia
This works for me: html:link href=# onclick=document.courseForm.submit();Done/html:link Put whatever javascript you want in the onclick handler. Tim Lucia -Original Message- From: Nisith Dash [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 7:51 AM To: Struts Users

RE: Tiles setup question

2003-12-08 Thread Tim Lucia
parameter=.tileTest/ Your-tiles-def.xml: definition name=.tileTest extends=layout/ Tim Lucia -Original Message- From: Richard Hill [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 7:59 PM To: '[EMAIL PROTECTED]' Subject: Tiles setup question I'm setting up tiles

RE: from Action to Facade: simple attributes or Business Objects

2003-12-07 Thread Tim Lucia
case in your example. Think about what happens if you add a property? How many places do you need to change it? One less (at least) in the patter case. You can (typically) use BeanUtils.populate() do move all properties in one fell swoop. Tim Lucia -Original Message- From: Felipe

RE: How to detect that session has expired ?

2003-12-07 Thread Tim Lucia
, Inheritance is your friend. Get to know him, and his cousin, Poly. Poly Morphism. Tim Lucia -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Sunday, December 07, 2003 10:45 AM To: Struts Users Mailing List Subject: Re: How to detect that session has expired

Deploying a struts application (WAR) under ColdFusionMX

2003-12-03 Thread Tim Lucia
for help with option #3 (preferred) or #4. Thanks for any pointers, tips, or help, Tim Lucia Ref: http://www.macromedia.com/devnet/mx/coldfusion/articles/struts05.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Hello .. Struts examples

2003-11-20 Thread tim duch
Hello , I am very new to the struts, Where can i find very simple examples on struts, any pointer will be very helpful.. -Tim __ Do you Yahoo!? Free Pop-Up Blocker - Get it now http://companion.yahoo.com

RE: Lazy questions on this list

2003-11-20 Thread Dixon Tim Contr HQ SSG/STN
Seems like the newbie caught a fish. May not be the fish he was trying to catch, but, hey, that's the way it goes sometimes. Someone responded, did they not? /tim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2003 11:45 AM To: [EMAIL

How o use build.xml at the struts-blank example

2003-11-18 Thread tim duch
Hello, How can I use the build.xml to build my sources ( I mean how to run it ) . Pleae help. Regards -tim __ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree

RE: How o use build.xml at the struts-blank example

2003-11-18 Thread tim duch
I am unserimpression that as tomcat4.1.12 is already installed there .. so ant is a by - default got installed. how to use it .. please let me know .. Regards -Tim --- Naveen S. Kumar [EMAIL PROTECTED] wrote: Install ant software and then set the class path and then run u r ant deploy

Hello Basic Question.

2003-11-14 Thread tim duch
Hello , I want to try out a very samll example of Struts I tried some stuff but seems not working .. can any Struts Guru point out wat are the basic req. to develope the web application using Struts .. How the directory arraged. and what all will be the req. please let me know .. regards

RE: Struts1.1 Oracle 9iAS

2003-11-05 Thread Tim Clotworthy
To: Struts Users Mailing List Subject: RE: Struts1.1 Oracle 9iAS -Original Message- From: Tim Clotworthy [mailto:[EMAIL PROTECTED] I am saddled with having to re-implement a struts-based architecture designed to run on a Tomcat web container, to an Oracle 9iAS Release2

  1   2   3   4   >