Re: Iterate problem

2003-11-16 Thread Mark Lowe
(user); } ... ... HTH Mark On 16 Nov 2003, at 03:47, ZYD wrote: Hi, I hava a userForm that has a ArrayList of User objects, each User object has several properties: fistname, lastname, age. How can I get all User's firstname, lastname, age in an iterate? Than

Re: torque 3.0 vs. torque 3.1

2003-11-16 Thread Mark Lowe
The 3.1 distribution of torque is divided into generator and runtime. Other than that works just like 3.0. On 16 Nov 2003, at 13:41, Caoilte O'Connor wrote: some bugfixes that may or may not affect you. I updated my runtime jar to 3.1 but left the generation of java files (in a separate project)

Re: xdoclet strutsconfigxml thingy

2003-11-12 Thread Mark Lowe
I had to use the destdir attribute On 12 Nov 2003, at 12:23, [EMAIL PROTECTED] wrote: Yes it is quitte easy: In build.xml uri="struts-bean"

Which version of Commons Digester released with Struts 1.1

2003-11-06 Thread Philip Mark Donaghy
I would like to debug a problem that I have with Digester. The error is : java.lang.NoSuchMethodException: No such accessible method: addFormBeanConfig() on object: java.lang.String How can I get the version number of Commons Digester that is distributed with Struts 1.1. Phil = Java Web App

Which version of Commons Digester released with Struts 1.1

2003-11-06 Thread Philip Mark Donaghy
I would like to debug a problem that I have with Digester. The error is : java.lang.NoSuchMethodException: No such accessible method: addFormBeanConfig() on object: java.lang.String How can I get the version number that is distributed with Struts 1.1. Phil = Java Web Application Architect m

Re: Best Practices in Struts for Form objects?

2003-11-06 Thread Philip Mark Donaghy
If all of your Forms have exactly the same properties then use the same form mapping for all your actions. If all of your Forms share some properties then use different forms for each action. Each of these forms would extend a generic form which extends of course ActionForm or ValidatorForm. Phil

RE: html:submit and 2 buttons

2003-11-06 Thread Philip Mark Donaghy
Your action can read the value attribute of your submit tag. This is the label in your case. Use the request.getParameter to find out which button was clicked. Give each of your submit buttons a different NAME. request.getParameter(NAME) will return the label of the submit button clicked or null

Re: OT - what is a blonk

2003-11-06 Thread Mark Lowe
Nottingham Forest beat Luton 2 -1 I assume the rest of your question was an attempt at humor. Cheers Mark On Thursday, November 6, 2003, at 05:03 AM, [EMAIL PROTECTED] wrote: This is off topic but I couldn't wait til casual friday... I have the following problem in my web-app. When I tr

Re: I get a blank page

2003-11-04 Thread Mark Lowe
what do you mean by "execute my (your) submit.jsp" ? I could be wrong, but looks like you're trying to be a bit of a picasso with your property names. On Tuesday, November 4, 2003, at 10:50 AM, sairam manda wrote: Hello Sir, I get blank page when I execute my submit.jsp . I have a simple st

Re: DynaAction form and ArrayList

2003-11-03 Thread Mark Lowe
It works alright but last time i played with these beanutil's toys it was understandably slow. A little less slower is getting the resultsetmetadata and using them as your property names. IMO its better to make some beans and populate them with the result set values, until you've time to put a

Re: DynaAction form and ArrayList

2003-11-03 Thread Mark Lowe
while(rs.next()) { Map teacher = new HashMap(); teacher.put("firstName",rs.getString("firstName")); teacherList.add(teacher); } teacherForm.set("teachers", teacherList); request.setAttribute ("teachers", teacherList.toArray()); Chee

Re: euro date

2003-10-31 Thread Mark Lowe
Just define the form property as a string when you get the date from you model either format it in your referring class, using DateFormat. java.util.Date date = new java.util.Date( dateString ); now you can format and then feed it back to the form. Cheers Mark On Friday, October 31, 2003

Re: Locale - how to set?

2003-10-30 Thread Philip Mark Donaghy
--- Frers Michael <[EMAIL PROTECTED]> wrote: > Hello > > just a simple question > > how can set the actual used local? > > i have two propertie files: > > application.properties > application_de.properties > application_en.properties > > struts takes as default application_de.properties > >

Re: How do I disable struts logging?

2003-10-30 Thread Philip Mark Donaghy
--- Jeremy Nix <[EMAIL PROTECTED]> wrote: > The debug init-param no longer works with v1.1 I'm not sure about that? But... > what other options do > we have on disable the struts internal logging? I found this nice log4j config file xml. I am using log4j version 1.2.8 and it outputs all org.apac

Re: [OT] HTML tag stripper

2003-10-29 Thread Mark Lowe
html parser is what you want.. http://htmlparser.sourceforge.net/ On Wednesday, October 29, 2003, at 10:09 PM, Greg Dunn wrote: Does anyone know of any free Java I can incorporate in my app that will take a String of HTML and strip the tags out? Greg

Re: was Re: Struts and db access: OT: pgSQL

2003-10-29 Thread Mark Lowe
I'm sold.. Thanks Oscar and Vic. I never touch windows anyway because its silly, especially when its anything to do with servers. I had the pleasure to setting up an oracle server once and I wouldn't volunteer a second time (although it ran okay once the fooker was up). Cheer

Re: Struts and db access

2003-10-29 Thread Mark Lowe
I didn't know the postgres was faster than oracle.. I agree that its the canine's genitalia .. But I still thought oracle was the daddy when it came to speed. Is that just read access or everything? On Wednesday, October 29, 2003, at 02:52 PM, Vic Cekvenich wrote: This might confuse you more th

Re: html:hidden +session

2003-10-29 Thread Mark Lowe
If the variable users.userAccount is in an available scope it will be there anyway, without all the messing around. .. session.setAttribute("users",...); .. if you've a getUserAccount() method as a property of user it will work like this. On Wednesday, October 29, 2003, at 02:11 PM, EL AKARI

Re: html:select onchange

2003-10-29 Thread Mark Lowe
In fact ignore my suggestion, I was silly and assumed the userId was taken somewhere else but the form. On Wednesday, October 29, 2003, at 11:33 AM, Mark Lowe wrote: Perhaps you don't need to pass the id in as an argument. I'd just wrap the action in a js function function set

Re: html:select onchange

2003-10-29 Thread Mark Lowe
Perhaps you don't need to pass the id in as an argument. I'd just wrap the action in a js function function setupUserForm() { alert( 'setUpUsersForm.do?action=retrieve&userId= ' ); } onchange="setupUserForm()" .. On Wednesday, October 29, 2003, at 11:12 AM, struts wrote: Problem how can i

Re: Exception handling - please help!

2003-10-29 Thread Mark Lowe
//print expeption to your applicantion log servlet.log("DOOH",e); return (mapping.findForward("failure")); } You'll have success and failure defined as forwards in your struts config, where you'll be able to choose teh jsp's you want to forward to.

Re: Struts cannot support relative uri ?

2003-10-28 Thread Mark Lowe
Try this like George said Cheers Mark On Tuesday, October 28, 2003, at 03:55 PM, javen fang wrote: but if in left.jsp include struts tags, or it mapping from struts action, then relative uri will fail, and "absolute" uri is required: If in this condition, I do like this: th

Re: Index properties (once again)

2003-10-28 Thread Mark Lowe
ther than arrayList should work too. Cheers Mark On Tuesday, October 28, 2003, at 02:31 AM, Rajat Pandit wrote: Hello all, I finally managed to solve the problem, and now that I know it all seems so damn awfully simple!!! , I wish the docs had explained it in a much simpler manner. But I guess it

Re: Downloading a file from a database

2003-10-27 Thread Mark Lowe
O to request an action that does all this then you'll also get bla.action even for the file types that seem to work. Sorry that may not be that helpful, but I'd be interested whether I'm tree-barking or not. it would certainly narrow you problem down. Cheers Mark On Monday,

Re: Deprecation - DataSource

2003-10-27 Thread Mark Lowe
ps Cheers Mark On Monday, October 27, 2003, at 01:47 PM, Mathieu Grimault wrote: First hello everyone !!! This is my first answer and i'm learning struts now... I'm using this method but it's deprecated...Did someone knows the right call ? thx. DataSource d

Re: Index properties (once again)

2003-10-27 Thread Mark Lowe
Forget indexed properties, all that stuff.. Does each state have many bids, modes and/or calls? If you're not clear about this in the first place then you'll be in trouble. Until you stop spamming the list and think about what you're doing then you wont get anywhere. On Monday, October 27, 200

Re: Tags creating Tags

2003-10-26 Thread Mark Mahieu
I said, > Hi Lukas, > > If I understand you correctly ... But I didn't (understand that is). I guess my reading comprehension skills at 6am just aren't up to it ;) So just disregard my last Mark - To

Re: Tags creating Tags

2003-10-26 Thread Mark Mahieu
eturn EVAL_PAGE; } } Hope that helps, Mark Lukas Bradley wrote: Hi all, Maybe I'm just tired, but the answer to this is not to be found. I could me making this harder than it is, or something might be right in front of me, and I don't see it. What I want is a custom tag that creates othe

Re: Multiple parameters

2003-10-26 Thread Mark Lowe
et the values accordingly } .. when your action servlets get kinda long, you start moving this sort of thing out to your model layer. Cheers Mark On Sunday, October 26, 2003, at 03:01 PM, Todor Sergueev Petkov wrote: Are you sure you can use float arrays in an ActionForm. I think ActionForm b

Re: Multiple parameters

2003-10-26 Thread Mark Lowe
ers and you obviously haven't taken the time to read them. the docs are good as well. Cheers Mark On Sunday, October 26, 2003, at 05:04 PM, Rajat Pandit wrote: Sorry mark, that wasn't addressed to you. I was more concenred about the indexed properties, and not about the data type.

Re: Multiple parameters

2003-10-26 Thread Mark Lowe
t's up to you to do conversion from/to Float. Rajat Pandit wrote: Hello mark, This is my situtation This is an extract from my action form private float[] bidAmount; public float[] getBidAmount() { return bidAmount; } public void setBidAmount(float[] bidAmount)

Re: Multiple parameters

2003-10-26 Thread Mark Lowe
Need to know what your validator.xml looks like and form-bean stuff in your struts-config. Just sticking So give more detail have read the documents. Forget about databases for now and just think about getting your form properties into your action. is the form property an indexed property? Ho

Re: going straight to a jsp

2003-10-25 Thread Mark Lowe
r app in an event based way. /save.do, /delete.do rather than the names of the view's file name. Cheers Mark On Saturday, October 25, 2003, at 06:09 PM, Simon Matic Langford wrote: it helps (a little). what i don't want is users bookmarking a jsp, which would then allow them to bre

Re: Can I get an answer?

2003-10-24 Thread Mark Mahieu
David, Just a random thought... does your web.xml contain the Struts servlet-mapping entry? (like this) action *.do Mark David Liles wrote: Ted, I appologize for my several posts... I was trying to meet a code checking deadline feedback: the links are viewed as when viewing

Re: hide section of form

2003-10-24 Thread Mark Lowe
be used to control how the properties are set when submitted. The other more painful road involves dhtml, that I'd be tempted by if I got the hideElements.do action running first. You'll never get the DHTML version working across the board quickly, perhaps worth entertaining such

l8r

2003-10-24 Thread Mark Galbreath
Well, I have to leave the List for awhile - new job managing a team of H-1B developers. Keep it real, guys! I know most will miss me ;-) amf! Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

RE: HAPPY DIWALI! - To Everyone, and we're done now

2003-10-24 Thread Mark Galbreath
Sorry, Ted (and others). All done. Mark -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 3:25 PM To: Struts Users Mailing List Subject: Re: HAPPY DIWALI! - To Everyone, and we're done now First, I would like to wish everyone a Happy D

RE: HAPPY DIWALI!

2003-10-24 Thread Mark Galbreath
That's pathetic. Ever hear of the caste system? Ever read "The Far Pavillions" by M.M. Kaye? Indians have historically been too busy repressing and killing each other to offer refuge to anybody else. Silicon Valley would be nothing without Indians? Oh, puhleeeze..talk about racist bullshit

RE: HAPPY DIWALI!

2003-10-23 Thread Mark Galbreath
Well, this has been great fun, but now that everyone is awake, I have some work to do. Was an invigorating debate! Especially the name-calling. amf - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

RE: HAPPY DIWALI!

2003-10-23 Thread Mark Galbreath
- From: Fırat TİRYAKİ [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 9:58 AM To: Struts Users Mailing List Subject: Re: HAPPY DIWALI! oh! you are so brillant mark, I guess you know what the other day is... ye there you go marky... F. - Original Message - From: "

RE: HAPPY DIWALI!

2003-10-23 Thread Mark Galbreath
+1 -Original Message- From: Ivica Pavic [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 9:52 AM To: Struts Users Mailing List Subject: RE: HAPPY DIWALI! This is the very best email today. -Original Message- From: Jarnot Voytek Contr AU HQ/SC [mailto:[EMAIL PROTECTED]

RE: HAPPY DIWALI!

2003-10-23 Thread Mark Galbreath
OH MY GOD!!! October 24th?! Already??? Earth is going to be hit by a G3 solar blast of an X-class flare! I guess this is what we get for dissing Diwali! Woe is me! http://www.spaceweather.com -Original Message- From: Fırat TİRYAKİ [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23,

RE: HAPPY DIWALI! [Slightly Offtopic]

2003-10-23 Thread Mark Galbreath
Hey Becky, if you do not have anything inflammatory to add, please stay out of the topic. -Original Message- From: Becky L. Norum [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 9:17 AM [blah, blah, blah] Happy Diwali to everyone! Becky

RE: HAPPY DIWALI!

2003-10-23 Thread Mark Galbreath
Predictable response. Whenever you start running out of legitimate ideas, you play the "racism" card. Sorry, not biting...we have a long history of that game in the US already. Try to back up your statements with political and economic FACTS. Arguing from emotion is pointless. -Original Me

RE: DynaValidatorForm ArrayList problem

2003-10-23 Thread Mark Thill
er.reset(mapping, request); } } Any suggestions or thoughts as to why the setter isn't getting called in that "Stock" object that is part of the ArrayList??? Thanks for your help Mark T. -Original Message- From: Barry Volpe [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 2

RE: HAPPY DIWALI!

2003-10-23 Thread Mark Galbreath
: Thursday, October 23, 2003 8:58 AM Mark, I have never been on H1B for your info and don't even want to be. However, if you are interested to work in india, send me your CV. - To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

RE: HAPPY DIWALI!

2003-10-23 Thread Mark Galbreath
that area. That money and investement would do far better going into some area of the economy that can use it more efficiently and provide more jobs for more people rather than a few jobs for overpaid IT guys... -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Thurs

RE: HAPPY DIWALI!

2003-10-23 Thread Mark Galbreath
to do with any ethnic holiday; if you think otherwise, you are probably an H-1B. Mark -Original Message- From: Navjot Singh [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 8:29 AM Business look for skills. If Americans could provide ample, your businessmen WONT search in

RE: HAPPY DIWALI!

2003-10-23 Thread Mark Galbreath
outsourced next. doh! So much my for my attempt at greedy bourgeious capitalism :-( Ill just shutup and get back to work now... -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Thursday, 23 October 2003 20:12 To: Struts Users Mailing List Subject: RE: HAPPY DIWALI

RE: HAPPY DIWALI!

2003-10-23 Thread Mark Galbreath
My point, exactly. Poor, starving Haitians clinging to rafts can be turned back, but anybody from India can get an H1B visa, displacing millions of jobs from indigenous Americans, dragging down market labor rates and causing 7 percent unemployment in our industry. Now we are expected to translate

DynaValidatorForm ArrayList problem

2003-10-22 Thread Mark Thill
his Boolean property is never being called. I've read a bunch of postings about similar problems, but I can't seem to find one with this exact problem. Is this a bug in DynaValidatorForm or am I doing something wrong. Any help would be greatly appreciated!!! Mark T.

RE: accessing static html from struts-config.xml

2003-10-22 Thread Turansky, Mark
, 2003 2:50 PM To: Struts Users Mailing List Subject: RE: accessing static html from struts-config.xml or use http://www.mysite.com"; redirect="true"/> which would do the same thing. -Original Message- From: Turansky, Mark [mailto:[EMAIL PROTECTED] Sent: Wednesday, Oct

RE: accessing static html from struts-config.xml

2003-10-22 Thread Turansky, Mark
uot;home" to store the fully-qualified URL (and retrieve it via forward.getPath()) or you can put that in some other property section or config file. Either way, you can use response.sendRedirect(str) to send the user to any website you wish, including your own home page. I hope this helps. mark

RE: accessing static html from struts-config.xml

2003-10-22 Thread Turansky, Mark
I believe that you are not forced to use a relative URL. You can put "http://www.mysite.com/index.html"; as the Forward path and it should work just fine. If, for whatever reason, the Forward to an absolute URL does not work, you can always use response.redirect(actionForward.getPath()) in yo

RE: HAPPY DIWALI!

2003-10-22 Thread Mark Galbreath
Until now, I didn't believe the hype that too many H1-Bs had been granted -Original Message- From: Prasenjit Narwade [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 9:56 PM To: Struts Users Mailing List Subject: Re: HAPPY DIWALI! Shub Deepawali For those who do not

RE: HAPPY DIWALI!

2003-10-22 Thread Mark Galbreath
Huh? You mean Diwali is just another excuse to drink beer??? Happy Diwali, everyone! yeehaw! -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 8:16 AM Oh bah humbug to you too. Do be assured that I wont be thinking of you while I enjoy a p

HAPPY DIWALI - URGENT!

2003-10-22 Thread Mark Galbreath
Dear Diwali Friend, My letter might come to you as a surprise but I request you go through it patiently and understand why I decided to write without seeking for your formal permission. My name is Prince Zak Tubman; I am a grand son of former President William Tubman (late). I work under the Forme

RE: HAPPY DIWALI!

2003-10-22 Thread Mark Galbreath
bastardized aborigine crock o' shit -Original Message- From: Abhijeet Mahalkar [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 6:50 AM To: Struts Users Mailing List; Abhijeet Mahalkar Subject: HAPPY DIWALI! Aapko Naye Saal me... Chandragupt

Re: DynaForms and java.util.ArrayList"

2003-10-21 Thread Mark Lowe
rEach tags (they work with the html:text or other form bits) I'd like to know.. Cheers Mark On Tuesday, October 21, 2003, at 06:42 PM, Chen, Gin wrote: Remove initial="" Then in your jsp do: -Tim -Original Message- From: Barry Volpe [mailto:[EMAIL PROTECTE

Re: Request PRocessor

2003-10-21 Thread Philip Mark Donaghy
Abhijeet, I have created Request PreProcessors. You create a class that extends RequestProcessor and overrides the method processPreprocess. You do whatever you want in that method (logging, security, and session validation is useful) and it will be executed before every action is executed. It mus

Re: Indexed Properties examples?

2003-10-21 Thread Mark Lowe
If you're using struts 1.1 you can define a form property as an arrayList to do the same thing.. ... ArrayList myList = new ArrayList() theForm.set("myproperty",myList); .. .. Cheers Mark On Tuesday, October 21, 2003, at 12:33 PM, Frederic Dernbach wrote: OK, I faced th

Re: Presentation of the errors in the bottom of a page

2003-10-21 Thread Philip Mark Donaghy
Benoit, It might be interesting for you to put more than one occurence of . One at the top of the page and one at the bottom. The same messages will appear twice and your user is sure to get the point. Phil --- Benoît_Segaert <[EMAIL PROTECTED]> wrote: > I am working on a page with a FORM in th

Re: [ot] Re: question on javascript...

2003-10-20 Thread Mark Lowe
ogies from not reading the question properly in the first place. Cheers Mark On Monday, October 20, 2003, at 03:38 PM, Jacob Wilson wrote: I get that error when I pass the element name only !! function getValue(form, optionName,hiddenValue) { s = form.elements[optionName]; for(i

Re: [ot] Re: question on javascript...

2003-10-20 Thread Mark Lowe
You can specify an index or the name of the element. Likewise with the array of forms in the page.. Some folks prefer using the document.myform.myelement syntax. But you can use the element name also. Cheers Mark On Monday, October 20, 2003, at 03:14 PM, Jeff Kyser wrote: form.elements is

Re: [ot] Re: question on javascript...

2003-10-20 Thread Mark Lowe
Its been a while.. try the index or hardcode the form name like before in case it doesn't like the form object being passed as an argument... function getValue(formName,elementName,value) { s = document.forms[formName].elements[elementName]; .. Cheers Mark On Monday, October 20,

[ot] Re: for the Apple-biters

2003-10-20 Thread Mark Lowe
efully xcode will do the business but its fair to say that project builder and xcode have been developed for cocoa development rather than for webapp development. Cheers Mark On Friday, October 17, 2003, at 05:12 PM, Nguyen, Hien wrote: I'm actually writing my struts application using Eclips

[ot] Re: question on javascript...

2003-10-20 Thread Mark Lowe
d = true; break; } } } onsomeformevent="getValue(this.form,'foo','bar')" Cheers Mark On Monday, October 20, 2003, at 07:55 AM, Jacob Wilson wrote: Thanks Matt... It sure helped... Actually, now, I tried to put it as a comm

Re: RE-POST: Access ActionForm data from JSP page

2003-10-19 Thread Mark Lowe
; ... //in your header or This is a quick means of doing stuff. .. If you've a UserBean or something. UserBean user = new UserBean(); BeanUtils.copyProperties(user,theForm); session.setAttribute("user",user); or Cheers Mark On Sunday, October 19, 2003, at 01:35 PM, Sudip K

RE: for the Apple-biters

2003-10-17 Thread Mark Galbreath
--Original Message----- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 11:57 AM ...just ran across this URL and thought I'd pass it along FWIW: http://developer.apple.com/internet/java/struts.html -

RE: [FRIDAY] Free Dog.....

2003-10-17 Thread Mark Galbreath
oh man! that's cold! ru related to Andrew? -Original Message- From: Chen, Gin [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 11:53 AM How did you get a picture of Mark? -Tim -Original Message- From: Shane Mingins [mailto:[EMAIL PROTECTED] Sent: Thursday, Octob

RE: Need mailing list

2003-10-17 Thread Mark Galbreath
Write your own http://www.mscs.mu.edu/~aricke/Ent2002/Assignment3/listing3-3.html -Original Message- From: Wiebe de Jong [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 11:03 AM Okay, my fault. Let me rephrase the question. Does anybody know of a good mailing list app that

for the Apple-biters

2003-10-17 Thread Mark Galbreath
...just ran across this URL and thought I'd pass it along FWIW: http://developer.apple.com/internet/java/struts.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [FRIDAY] URL O' The Day

2003-10-17 Thread Mark Galbreath
Yep...glad the irony was not wasted! ;-) -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 10:38 AM Nice link ... Sent to us with.. Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) :o) On Friday, October 17, 2003, at 12:58 PM, Mark

Re: [FRIDAY] URL O' The Day

2003-10-17 Thread Mark Lowe
Nice link ... Sent to us with.. Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) :o) On Friday, October 17, 2003, at 12:58 PM, Mark Galbreath wrote: http://www.kmfms.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For

[FRIDAY] URL O' The Day

2003-10-17 Thread Mark Galbreath
http://www.kmfms.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [FRIDAY] Free Dog.....

2003-10-17 Thread Mark Galbreath
+1 -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 7:34 PM Ditch the wife Keep the dog.. -M - Original Message - From: "Shane Mingins" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> > > A mate of mine is looking for a good home for

RE: [FRIDAY] Free Dog.....

2003-10-17 Thread Mark Galbreath
Looks prime to me...can it be shipped live? Mark, member, PETA (People for the Eating of Tasty Animals) -Original Message- From: Shane Mingins [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 7:28 PM To: '[EMAIL PROTECTED]' Subject: [FRIDAY] Free Dog. Hi A ma

Re: Logic Iterate

2003-10-17 Thread Mark Lowe
util.ArrayList list = new java.util.ArrayList(); list.add(mapOne); list.add(mapTwo); request.setAttribute("mylist",list.toArray()); %> or in jstl Cheers Mark On Friday, October 17, 2003, at 11:38 AM, Thakur, Vikram wrote: No, It does not work. It says , Cannot find bean

Re: Calling a javascript function with the tag

2003-10-16 Thread Mark Lowe
If you dont need the link then using html:link would be a waste of time.. so.. ')"> or ')"> or ')"> Cheers Mark On Thursday, October 16, 2003, at 02:57 PM, Frederic Dernbach wrote: How can I call a javascript function with one parameter usin

Re: logs

2003-10-16 Thread Philip Mark Donaghy
When I put a log4j.properties in my TOMCAT4_HOME/shared/classes directory the console went wild. This could help if you are debugging Tomcat and your application. Phil __ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.

RE: logs

2003-10-16 Thread Philip Mark Donaghy
--- "Gilbert, Antoine" <[EMAIL PROTECTED]> wrote: > can i use something like that ? directly ? > > log4j.category.org.apache=DEBUG I got this sample log4j.properties from the log4j short manual. # Set root logger level to DEBUG and its only appender to A1. log4j.rootLogger=DEBUG, A1 # A1 is se

RE: Converting to Struts, where to put Servlet init() code?

2003-10-15 Thread Mark Galbreath
subclass ActionServlet and put your inits there. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2003 7:43 PM To: [EMAIL PROTECTED] Subject: Converting to Struts, where to put Servlet init() code? I'm converting an existing webapp to Struts. I

RE: [Slightly OT] Where/how to start?

2003-10-14 Thread Mark Galbreath
and you may want to subscribe to other lists that are more J2EE-centric, like [EMAIL PROTECTED] Mark -Original Message- From: Nicholson, Robb [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2003 9:53 AM To: 'Struts Users Mailing List' Subject: RE: [Slightly OT] Where/ho

[OT] JavaPro 2003 Readers Choice Awards

2003-10-14 Thread Mark Galbreath
These topics come up often enough that I thought this might help some people and/or spark some discussion: CategoryProduct -- IDE Borland JBuilder Development Suites

RE: DynaActionForms

2003-10-14 Thread Mark Galbreath
Yes. -Original Message- From: Edgar P Dollin [mailto:[EMAIL PROTECTED] Sent: Monday, October 13, 2003 1:35 PM ...I would like to populate the (DynaAction)forms myself. Does anyone have any experience with how this behaves in struts? -

RE: struts double action execution!?

2003-10-13 Thread Mark Galbreath
: struts double action execution!? Yep. That table thing is almost certainly a red herring. -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Monday, 13 October 2003 22:18 To: Struts Users Mailing List Subject: RE: struts double action execution!? I didn't know

RE: struts double action execution!?

2003-10-13 Thread Mark Galbreath
I didn't know had a background attribute. But any HTML attribute value should be ignored by Struts. Even using shouldn't cause a 2x submit. -Original Message- From: Otto, Frank [mailto:[EMAIL PROTECTED] Sent: Monday, October 13, 2003 9:41 AM To: 'Struts Users Mailing List' Subject: AW

RE: OT - book on Java patterns

2003-10-13 Thread Mark Galbreath
k" (Metsker, Addison Wesley 2002) to be the best. Mark -Original Message- From: James Childers [mailto:[EMAIL PROTECTED] Sent: Monday, October 13, 2003 9:20 AM To: Struts Users Mailing List Subject: RE: OT - book on Java patterns The de facto official reference for these patterns is &q

RE: OT - book on Java patterns

2003-10-10 Thread Mark, Scott
I think this is a good J2EE-oriented one; has some very practical examples if you are new to patterns. Core J2EE Patterns: Best Practices and Design Strategies by Deepak Alur (Author), John Crupi (Author), Dan Malks (Author)

RE: How to read contents of MANIFEST.MF

2003-10-10 Thread Mark Galbreath
Where did you get this from? -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 7:50 AM import java.util.jar.Manifest; - To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

RE: How to read contents of MANIFEST.MF

2003-10-10 Thread Mark Galbreath
1. the META-INF directory should be under the webapp root, not a WEB-INF subdirectory; 2. read the file into an action class with java.io.FileReader, set the object in some scope, and display it in a JSP with a . Mark -Original Message- From: Martin Gross [mailto:[EMAIL PROTECTED

RE: ejb's and tomcat

2003-10-10 Thread Mark Galbreath
riday, October 10, 2003 8:19 AM To: 'Struts Users Mailing List' Subject: RE: ejb's and tomcat Well congrats on a) wasting other people's time b) giving bad advice perhaps you should consider fishing elsewhere. -Original Message- From: Mark Galbreath [mailto:[

[OT] JSTL Primer

2003-10-10 Thread Mark Galbreath
http://today.java.net/pub/a/today/2003/10/07/jstl1.html Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[OT] Is Java Overkill?

2003-10-10 Thread Mark Galbreath
http://www.sys-con.com/Java/article.cfm?id=2257 Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: ejb's and tomcat

2003-10-10 Thread Mark Galbreath
I agree they scale well -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 6:56 AM Strangely enough I find most of your posts are decidedly fishy. -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Friday, 10

[FRIDAY] Time to Cleanse the Gene Pool?

2003-10-10 Thread Mark Galbreath
that mailing in the original fine postmarked before the end of the moratorium period was sufficient. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: ejb's and tomcat

2003-10-10 Thread Mark Galbreath
Yeah, but the only reason I posted that msg was for baiting purposes...and apparently I caught a lot of fish... ;-P Mark -Original Message- From: Brian McSweeney [mailto:[EMAIL PROTECTED] Sent: Thursday, October 09, 2003 9:37 AM To: 'Struts Users Mailing List' Subject: RE:

RE: ejb's and tomcat

2003-10-09 Thread Mark Galbreath
support polymorphism nor inheritence). Ask yourself if you would use CORBA in the same situation. Mark -Original Message- From: Navjot Singh [mailto:[EMAIL PROTECTED] Sent: Thursday, October 09, 2003 7:20 AM To: Struts Users Mailing List Subject: RE: ejb's and tomcat then which o

RE: in

2003-10-09 Thread Mark Galbreath
Whatever, O'Rielly-boy. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Thursday, October 09, 2003 7:47 AM To: Struts Users Mailing List Subject: RE: in Struts does not support You mean "JSP does not support" surely? -Original Message-

RE: in

2003-10-09 Thread Mark Galbreath
You will have to use JSP scripting or JSTL - Struts does not support nested tags as attributes. Mark -Original Message- From: Tim Smal [mailto:[EMAIL PROTECTED] Sent: Thursday, October 09, 2003 7:25 AM To: [EMAIL PROTECTED] Subject: in I'd like to use a within my tag. Like

<    1   2   3   4   5   6   7   8   9   10   >