Re: frames and struts

2002-09-24 Thread Bryan Hilterbrand
We are using Struts and frames, but it's not the easiest thing to do. The biggest problem we had was trying to get the Struts html:form tags to work -- we finally ditched them and just use HTML form tags. I would send more, but I'm under a deadline today... Bryan - Original Message -

Re: My action is not being called -I just get a blank page!

2002-09-23 Thread Bryan Hilterbrand
... or your collection/array you are using in a logic:iterate is null. Struts 1.02 gets confused and sends back part of the header and nothing else. Bryan - Original Message - From: Eddie Bush [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, September 23,

Re: I try again... My action is not being called -I just get a blank page!

2002-09-23 Thread Bryan Hilterbrand
Are you using Tomcat? Check the Tomcat log -- some exceptions get sent to the Tomcat log instead of the browser or console log window. The path will be something like: C:\tomcat\logs\localhost_log.2002-09-24.txt You will have to scroll to the bottom of the file to see the latest entries.

Re: getting MessageResources within ActionForm.reset()

2002-09-21 Thread Bryan Hilterbrand
Why don't you do your initialization in the action method? Bryan - Original Message - From: Taylor, Jason [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, September 21, 2002 12:06 PM Subject: getting MessageResources within ActionForm.reset() Since the

Re: Logic tag

2002-09-20 Thread Bryan Hilterbrand
Pardon me for jumping into this thread... Once you use bean:define, is it possible to change the value? I wanted to use bean:define like this: bean:define id=resultsEmpty value=true/ logic:iterate id=code name=myForm property=codeList type=Foo bean:define id=resultsEmpty

Re: Logic tag

2002-09-20 Thread Bryan Hilterbrand
Thanks for the answer -- I should have seen that one. Bryan - Original Message - From: Martin Cooper [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Friday, September 20, 2002 4:04 PM Subject: RE: Logic tag You can't redefine a bean of the same name on the

Re: [OT][ALT-TECH] Apple Web Objects

2002-09-11 Thread Bryan Hilterbrand
Next we'll be talking about teletypes and punched paper tape. Ahhh, the good, old days. Bryan P.S. My first computer was an Apple ][+ (you have to use the brackets...), and it saw me through the latter half of high school and college. I bought a daisywheel printer, and my teachers were in awe

Re: [BOOK] Mastering Jakarta Struts review?

2002-09-10 Thread Bryan Hilterbrand
Did you keep a list of errata? It would be helpful to us newbies if the errata list was posted to this mailing list. Bryan P.S. Thanks for the review! - Original Message - From: Galbreath, Mark [EMAIL PROTECTED] To: 'Martin Cooper' [EMAIL PROTECTED] Cc: Struts (E-mail) [EMAIL

Re: [FRIDAY] Out of control ... again [OT] [HELP] [LOTS OF POSTINGS LITTLE HELP]

2002-09-06 Thread Bryan Hilterbrand
There are many potential solutions to this, but one is to figure out what the end result of iterating through your result set is, then create a stored procedure to do the same thing. Bryan - Original Message - From: Michael Lee [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL

Re: html:form inside of frame

2002-09-04 Thread Bryan Hilterbrand
Message- From: Bryan Hilterbrand [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 2:43 PM To: Struts Users Subject: html:form inside of frame I'm using frames for my application, and it gets through the myapp.SearchActions.initSearch() method just fine, but it dies when it hits

Re: A JNI help - System LoadLibrary problem

2002-09-04 Thread Bryan Hilterbrand
Naveen, What kind of an error do you get? I'm not sure what your root problem is from your description. I've used JNI with Java applications (not web- based), and I haven't ever had any problems with loading the DLL again as long as it is shut down correctly. Bryan - Original Message

Re: HTML bean - class and style attrbutes????

2002-09-04 Thread Bryan Hilterbrand
I'm new to Struts, but I think you're right. A lot of the html tags allow class and style attributes, but bean:write certainly doesn't seems to have them. We'll have to use an HTML span tag or something similar... Bryan - Original Message - From: neal [EMAIL PROTECTED] To: Struts

Re: struts provider ?

2002-08-28 Thread Bryan Hilterbrand
Is there a free web provider that would accept my struts web site ? I would settle for a low cost (i.e. $10/month) provider. Bryan -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Newbie logic:iterate question

2002-08-26 Thread Bryan Hilterbrand
I figured out my problem...I had a small logic error elsewhere in my code, so the form was returning a null for the String array. Struts does NOT like null arrays, and it was apparently going into the ozone. It would be nice if Struts detected nulls and threw some sort of an error. Bryan