Re: Tag as an attribute

2003-01-23 Thread Nicolas De Loof
JSP Tags use a XML style syntax, so you can't use a tag as attribute of another tag. Nico. > name="myImage"/>"/> > > I am getting an error. What's the way to achieve this without using a > scriptlet? I have a temporary fix: > > <% String image=(String)pageContext.getAttribute("myImage", > page

RE: Tag as an attribute

2003-01-23 Thread olivier
Suresh, Including a tag inside another tag is not permitted. Its not a Struts problem but an XML parsing limitation. You might want to try either JSTL or Struts-EL. Dunno Struts-EL but JSTL works fine. Your code would become something like : more on JSTL : http://java.sun.com/products/jsp/jstl/

Tag as an attribute

2003-01-23 Thread Suresh Addagalla
Hi, Is the following a valid struts tag? "/> I am getting an error. What's the way to achieve this without using a scriptlet? I have a temporary fix: <% String image=(String)pageContext.getAttribute("myImage", pageContext.APPLICATION_SCOPE) ; %> Thanks, Suresh **Disc

Problem in Action Class

2003-01-23 Thread Uday
Hi, I have one action class which extends org.apache.struts.action.Action. I have one more action class and its ActionForm class. >From the first action class i want to invoke method of second ActionForm class. How do i get the reference of second ActionForm class from the first Action class. Ha

Scaffold documentation

2003-01-23 Thread Ken McCloskey
I've tried searching for Scaffold information on both www.mail-archive.com, jakarta.apache.org and Google/Google Groups. Unfortunately I've not been able to find much. The husted.com links are no longer valid. What is Scaffold and where is the documentation for it? Has it been folded into the S

RE: Need help with html:select and html:options

2003-01-23 Thread Suresh Addagalla
Check if you have month & day properties defined in your form bean. Suresh >-Original Message- >From: Scott Seong [mailto:[EMAIL PROTECTED]] >Sent: Friday, January 24, 2003 11:32 AM >To: Struts Users Mailing List >Subject: Need help with html:select and html:options > > >Hello, > >I'm ha

Need help with html:select and html:options

2003-01-23 Thread Scott Seong
Hello, I'm having trouble with html:select and html:options. Basically, I have three select/options pairs in a JSP page, and the result is complaining about "No getter method available for Property month for bean name under org.apache...". Here is the code sample: <% Vector states = new Vector();

Re: ActionFilter and detecting a forward

2003-01-23 Thread Craig R. McClanahan
On Thu, 23 Jan 2003, Max Cooper wrote: > > Forwards are be subject to filtering, too. That is to say, when you forward, > your request might go through some filters. If you're talking about Servlet filters (i.e. javax.filter.Filter), this is not true in a Servlet 2.3 container. In Servlet 2.4,

Re: ActionFilter and detecting a forward

2003-01-23 Thread Max Cooper
Forwards are be subject to filtering, too. That is to say, when you forward, your request might go through some filters. But I am not sure your filter will be invoked if your "mainMenu" forward has a path that doesn't match the filter's url-pattern. There also seems to be some inconsistency between

Re: ActionFilter and detecting a forward

2003-01-23 Thread V. Cekvenich
http://www.mail-archive.com/struts-user@jakarta.apache.org/msg42455.html See above how to store context and action change of prior action, it might help. .V Raible, Matt wrote: I have an ActionFilter that is applied to all my /do/* requests. I want to populate a list of data, but only when the

ActionFilter and detecting a forward

2003-01-23 Thread Raible, Matt
I have an ActionFilter that is applied to all my /do/* requests. I want to populate a list of data, but only when the user goes to my "mainMenu" forward. What is the best way to detect that they are going here. I tried request.getRequestURL, but that doesn't do me any good, cause sometimes that

RE: Struts officially supported at Ford

2003-01-23 Thread Joe Barefoot
We use Struts for a full-blown "inward-facing" web application, and it works great in all respects. Last time I checked, we had over 700 classes in our web tier alone (Actions, ActionForms, helpers, tags, etc.), and over 600 JSPs. I don't even want to think about what a cluster-f$%k that would

Re: [WORKAROUND] Change webroot with easy struts + tomcat sysdeo

2003-01-23 Thread alexj
Hi Emmanuel, I just one more question about your *fix* for the defaultroot. After I have update the easystruts plug in file and restart eclipse, can I delete the defaultroolt created before I update the config file or may I have to don't care anymore about the defaultroot folder ? Thanks 'Manu.

Multiple struts-config files

2003-01-23 Thread Alvarado, Juan (c)
Folks: I am trying to take advantage of using multiple configuration files and I can't get past this simple step. -- Below is a snippet of web.xml action org.apache.struts.action.ActionServlet config /WEB-INF/struts-config.xml

Re: [OT] web site idea (was Value of Struts)

2003-01-23 Thread V. Cekvenich
-1. My philosophy is under promise over deliver. If you put this on a site, than someone's mileage may vary. Then when you get on a client's site it will be "how come we didn't have xyz here?" .V Robert McIntosh wrote: I read everyone's responses to Gene Campbell's question and I think there

sematic validation

2003-01-23 Thread John . E . Gregg
Hi all. I love the ability of Struts to perform syntactic validation of input data and automatically redisplay the screen + data + error messages. However, I'm reluctant to put semantic validation checks anywhere but the business objects to which they belong. For example, I have a rule that say

Deploy an Struts app

2003-01-23 Thread alexj
Hi, I does anybody know a good plug in to help deployement of Struts app with Eclipse ? I have make an app with easy struts + lomboz but I can't figure how to deploy them on Tomcat without making my own ant script. Thanks <-- Alexandre Jaquet -> -BEGIN GEEK CODE BLOCK- Version: 3.12 GCM

RE: Packaging struts business logic and action classes

2003-01-23 Thread Marco Tedone
DTO are presentation of business objects. Let's say that your client needs to retrieve some data from a Customer's table. The table resides in a relational database. A business object could be a class composed of state and behaviours on your Customer's table. For istance it could provide all the ge

RE: Struts officially supported at Ford

2003-01-23 Thread Greg.Reddin
> Estimate the cost of doing > it yourself and > present the numbers to management. > The problem is "we've already got one, you see..." However, it pretty much sucks compared to Struts and would cost millions of dollars just to get it where Struts is right now -- and we'd never really get i

RE: Exception handling - DispatchAction

2003-01-23 Thread Karr, David
Assuming you're using the "execute" method instead of the "perform" method, you can technically avoid having a try/catch block at all (because "execute" throws "Exception"). You would then define an "exception" element in your struts-config that specifies how to handle exceptions of that type (or

RE: Struts officially supported at Ford

2003-01-23 Thread Greg.Reddin
> Struts is a framework which facilitates > the building of browser-based applications > Oh, I totally agree. The "service" app concept was defined as needing to maintain state for multiple instances of business objects and respond to events, like a customer call in a call center app, working

Exception handling - DispatchAction

2003-01-23 Thread Johan Kumps
Hi all, I have following problem. In my Action class I'm calling a bussiness method that can throws a checked exception. I want to display this exception to the user on a user friendly page without the stacktrace. Because I have many action classes I don't want to code try catch blocks in all the

RE: [OT] Run Java App as a Win Service [FIXED]

2003-01-23 Thread Robert Taylor
I tripped over this post after searching google for a couple hours: http://www.zerosleep.com/work/docs/jbossasservice.jsp It seemed to fix the problem. Too bad its not documented by JNT. robert > -Original Message- > From: Robert Taylor [mailto:[EMAIL PROTECTED]] > Sent: Thursday, Janua

RE: Struts officially supported at Ford

2003-01-23 Thread David Graham
There is a difference between a website and a web app. Struts is designed for web applications not just a collection of scripts known as a site. Of course, Struts is equally well suited for creating a website. The technical people at your company probably want to roll their own but the manage

RE: [OT] Run Java App as a Win Service

2003-01-23 Thread Robert Taylor
Andrew, in your experience with JNT did your applications define a shutdown.method? Was it ever called successfully? I can get JNT to install my app as an NT service, but when I try and start it, it shuts down immediately. It appears that it (Windows) never invokes my application although when I ru

RE: Struts officially supported at Ford

2003-01-23 Thread Karr, David
What the heck does that mean? Struts is a framework which facilitates the building of browser-based applications in a way that enhances their maintainability. It's perfectly applicable, probably more so, for building inward or outward facing "service applications". -Original Message- Fro

RE: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Karr, David
For other's benefit, that only applies for the ActionForm class associated with the Action in the action-mapping. If your "prepare action" is associated with a different form bean, then that won't be what you want. However, you can have your "prepare action" and "process action" action-mappings u

RE: RequiredIf Example Request

2003-01-23 Thread Weber, Jeremy
Yes, but I would think that it would only be run after the first validation (the requiredif) runs. Is that not a correct assumption? Do I need to add anything to the exists validation to make it so? In your example if the requiredif fails, does it still try to run the next validations? Je

RE: Struts officially supported at Ford

2003-01-23 Thread Greg.Reddin
Since we're on the subject What kind of applications are being built using Struts? We're one of those "big" companies where many folks would rather roll our own. One of the defenses is that Struts was designed for "web sites" not "servicing apps". Now I know that statement holds no merit

RE: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Karr, David
No, your ActionForm.reset() method shouldn't be doing anything like this. That method is only intended to "clear" field values in preparation for setting from the browser input form, and should not be connected to any business logic in any way. A "prepare action" and a "process action" are just S

Re: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread David Graham
Struts hands you a form bean in your execute method. You cast that variable to your specific form type and use the setters to move data into it. When you return an ActionForward object out of execute() struts will forward to your input form with your populated bean. You don't have to create t

RE: RequiredIf Example Request

2003-01-23 Thread Greg Murray
I'm not sure "exists" is a standard validation rule. Did you define it yourself? -Original Message- From: Weber, Jeremy [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 2:00 PM To: 'Struts Users Mailing List' Subject: RE: RequiredIf Example Request Thank you , thank you, than

RE: problem with bean:define tag

2003-01-23 Thread Karr, David
That seems like a weird name to use, but it might work. You really should just be executing this in the debugger so you can see exactly what is happening. -Original Message- From: Adel [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 1:05 PM To: [EMAIL PROTECTED] Subject: Re:

Re: [OT]Good News

2003-01-23 Thread Eric Jain
> We have shipped several apps to the USAF & ARMY , > with struts 1.0 beta, 1.0.1, 1.1b1, 1.1b2, 1.1Nov, and soon to > be Struts 1.1. Aha. The rest of the world may still believe they are waiting for the weapon inspectors final report, but we of course know better now... So, when is Struts 1.1 fi

Re: multi row / multi col input forms

2003-01-23 Thread V. Cekvenich
This works fine with either! Ex: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/basicportal/ROOT/portlets/cms/ContentApprovePortlet.jsp Make sure you implement a collection and unit test the formbean outside of Struts before doing any beans, including multi row. .V "Mentoring adds value" Neil

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Joe Barefoot
Yep. Jose Descalzo to my spanish-speaking friends. :) > -Original Message- > From: Durham David Cntr 805CSS/SCBE > [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 23, 2003 10:59 AM > To: Struts Users Mailing List > Subject: RE: [OT] Re: Struts officially supported at Ford > > > Is

RE: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Iain Sanderson
Alberto, Perfect. And thanks, I'll give it a try. I'm sure this is what I needed to do. Iain. Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> cc: Subject:RE: HOWTO pre-populate forms with data, then update ?

RE: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Iain Sanderson
Not at all, 'cos I was thinking of doing it this way, but the other replies show what we should be doing, I think. Thanks anyway. Iain. Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> cc: Subject:RE: HOWTO pr

Re: problem with bean:define tag

2003-01-23 Thread Adel
Hi again, Thanks for your answer David. The beanName I am using is Action.Mapping_KEY: This works fine with 1.1b1 but not with 1.1b3. Adel Note that you will get this message if the count of "name", "value", and "body" is != 1. The message sounds like it's saying you have more than one of them,

Re: Use of multiple struts-config files -- HELP

2003-01-23 Thread Eric Rizzo
Alvarado, Juan (c) wrote: in struts-marketbreaks-config.xml I have the following: contextRelative="true"> And in a JSP I want to do the following: Access Rights When I do this, I get the following error: javax.servlet.ServletException: Cannot create rewrite URL: java.n

RE: [OT]Good News

2003-01-23 Thread Jarnot Voytek Contr AU HQ/SC
I work for myself - so yeah, I got approval from the President of the company... > -Original Message- > From: Durham David Cntr 805CSS/SCBE > [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 23, 2003 2:58 PM > To: Struts Users Mailing List > Subject: RE: [OT]Good News > > > Hmm, did

RE: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Hajratwala, Nayan (N.)
Depends on how hard you're going to flame me =) Actually yes, but I'm guessing from your tone that I'm being a bad boy. --- - Nayan Hajratwala - Chikli Consulting LLC - http://www.chikli.com -Original Message- From: Iain Sanderson [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23,

RE: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Alberto Corona
You can create an instance of the form you need (if is not the one you are already getting in the execute method). Once you have the form, you can then populate it. Then add it to the request using the name you defined for this form within your struts-config file. You'll have something like: -

Re: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Eric Rizzo
Iain Sanderson wrote: David, Thanks for your reply. How do you put the info into the form bean? I use a action called "RegistrationUpdateOpenAction" to get the data from the database and forward to the view jsp (registrationUpdate.jsp), but I don't know how to put that data into the form bea

RE: RequiredIf Example Request

2003-01-23 Thread Weber, Jeremy
Thank you , thank you, thank you! I misspoke when I said checkboxs, its a radio button, like this... Yes No field[0]

RE: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Iain Sanderson
Nayan, Are you accessing the business logic ( or database) in the reset method to determine the initial values? Iain Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> cc: Subject:RE: HOWTO pre-populate forms w

RE: [OT]Good News

2003-01-23 Thread Durham David Cntr 805CSS/SCBE
Hmm, did you get approval from the President? > -Original Message- > From: Jarnot Voytek Contr AU HQ/SC > Sent: Thursday, January 23, 2003 2:48 PM > To: 'Struts Users Mailing List' > Subject: RE: [OT]Good News > > > I introduced Struts to USAF standard systems group (SSG) last > year,

RE: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Hajratwala, Nayan (N.)
I have done this by setting up the initial values in the "reset()" method. Is that not the correct way to do it? If not, how do you switch between "prepare actions" and "process actions"? --- - Nayan Hajratwala - Chikli Consulting LLC - http://www.chikli.com -Original Message- From: K

RE: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Iain Sanderson
Yes, I'm really doing precisely this - but I don't know how to transfer the data from the business logic to the form bean underlying the the page view. My kludge is to get around this deficiency. How is it done? Iain Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To:

RE: [OT] RE: Struts officially supported at Ford-->so what

2003-01-23 Thread Sterin, Ilya
Exactly what I was going to say. Some people responded, but I coudldn't since I wasn't sure if this was meant to be an explanation, or a bunch of word glued together. Certainly not English. -Original Message- From: David Graham To: [EMAIL PROTECTED] Sent: 1/23/03 12:27 PM Subject: [OT]

RE: [OT]Good News

2003-01-23 Thread Jarnot Voytek Contr AU HQ/SC
I introduced Struts to USAF standard systems group (SSG) last year, and am now introducing it at Air University... at least on the systems I've been working on. -- Voytek Jarnot Quidquid latine dictum sit, altum viditur. > -Original Message- > From: James Turner [mailto:[EMAIL PROTECTED]

RE: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Karr, David
In general, Struts applications will use "prepare actions" to prepare the data for a form, and "process actions" to process the submitted data for a form. In your "prepare action" code, you'll interface with your business logic to obtain the required data, then populate fields of a bean, probably

Re: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Iain Sanderson
David, Thanks for your reply. How do you put the info into the form bean? I use a action called "RegistrationUpdateOpenAction" to get the data from the database and forward to the view jsp (registrationUpdate.jsp), but I don't know how to put that data into the form bean for this ( the unde

Re: [OT]Good News

2003-01-23 Thread Robert Leland
James Turner wrote: From: Durham David Cntr 805CSS/SCBE Certain elements with the USAF, mine is the only one I know of :-), are using Struts. I'm not sure if this decision went all the way to President Bush or not. Seems like it would have. Struts in the military, the mind boggles. W

RE: Struts officially supported at Ford

2003-01-23 Thread Sterin, Ilya
No, actually apache and apache tomcat will be deployed as well. That's a part of the whole Linux deployment strategy as well. We are now working on the global load to deploy both. Ilya -Original Message- From: Hajratwala, Nayan (N.) To: 'Struts Users Mailing List' Sent: 1/23/03 12:01 PM

Re: HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread David Graham
Traditionally you do this: 1. GetMyFormAction determines if it's add or edit from a query string attribute. 2. For edit go get the info from db using the record's id you passed in the query string. 3. Put that info into your form bean. 4. Forward to your form The form's input elements will b

RE: RequiredIf Example Request

2003-01-23 Thread Greg Murray
If you're just requesting an example of something, here's what I'm currently using: minlength 9 maxlength 9 field[0] lastName

HOWTO pre-populate forms with data, then update ?

2003-01-23 Thread Iain Sanderson
Newbie question: I've managed to use Struts forms as a means of initial data entry ( registration forms etc) but have got stuck on how to use a form to update data that already exists in a database. For example, a form where a user can update their user details (address, email etc) and then s

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Mike Oliver
Or likely any less...;-) Michael Oliver AppsAsPeers LLC 7391 S. Bullrider Ave. Tucson, AZ 85747 Phone:(520)574-1150 Fax:(520)844-1036 -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 1:07 PM To: 'Struts Users Mailing List' Subject: RE:

RE: Struts officially supported at Ford

2003-01-23 Thread Mike Oliver
And with other Open Source integration/interops like Axis4Struts, Struts4Slide, Turbine4Strutsand my favorite VelocoRaptor and that list goes on, before long you will be able to concentrate on just the problem you are solving and not worry too much about infrastructure. Michael Oliver AppsAsPe

RE: Struts officially supported at Ford

2003-01-23 Thread Hajratwala, Nayan (N.)
Actually, the case is more impressive than you describe. Struts won out over several custom frameworks that currently exist within ford and have quite a bit of political clout behind them. What won out in the end was that there was no good cost-effective support model for the internal framework

RequiredIf Example Request

2003-01-23 Thread Weber, Jeremy
I requested this before and have not recieved a response...:( Any takers out there? Currently I am having a heck of time figuring out how to make this work... I have checked out all the online examples, but I am unclear as to what this stuff means... If you have this in your struts-config.xml

Re: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Robert McIntosh
LMAO!!! Friday has come early... Mark Galbreath wrote: I never studied law. Joe just goes by "Barefoot" on this list. Elsewhere he's known as "Joe Millionaire." Perhaps you've seen him on TV? Before he made his fortune as a Java developer, he cleaned septic tanks for a living. -Original

RE: Struts Job

2003-01-23 Thread jmattucci
im a developer in toronto. Can I contact you max? "Mark Galbreath"

Struts at Lands' End, Inc. (was RE: Struts officially supported at Ford)

2003-01-23 Thread Chappell, Simon P
>-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] >Sent: Thursday, January 23, 2003 1:59 PM >To: Struts Users Mailing List >Cc: Struts Users Mailing List >Subject: RE: Struts officially supported at Ford >I'll bet anything this is not the last time we here of a For

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Mike Oliver
How does that go, "Those without stones...throw what you have". Michael Oliver AppsAsPeers LLC 7391 S. Bullrider Ave. Tucson, AZ 85747 Phone:(520)574-1150 Fax:(520)844-1036 -Original Message- From: Pani, Gourav [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 12:57 PM To: 'St

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Mark Galbreath
I don't do that anymore -Original Message- From: Pani, Gourav [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 2:57 PM To: 'Struts Users Mailing List' Subject: RE: [OT] Re: Struts officially supported at Ford Now is that specific case of death enforced by public stoning?

RE: [OT]Good News

2003-01-23 Thread Durham David Cntr 805CSS/SCBE
Logon and give me 20 words per minute soldier. > -Original Message- > From: James Turner [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 23, 2003 1:55 PM > To: 'Struts Users Mailing List' > Subject: RE: [OT]Good News > > > > From: Durham David Cntr 805CSS/SCBE > > > > > Certain e

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Mark Galbreath
I never studied law. Joe just goes by "Barefoot" on this list. Elsewhere he's known as "Joe Millionaire." Perhaps you've seen him on TV? Before he made his fortune as a Java developer, he cleaned septic tanks for a living. -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTE

Use of multiple struts-config files -- HELP

2003-01-23 Thread Alvarado, Juan (c)
I have the following configuration in my web.xml: action org.apache.struts.action.ActionServlet config /WEB-INF/struts-config.xml config/marketbreaks /WEB-INF/struts-marketbrea

RE: Struts officially supported at Ford

2003-01-23 Thread Kevin . Bedell
I agree here - The typical big company response would've been to build their own custom framework from the ground up. The fact that they chose to start with Struts shows they put a good deal of thought into it and trusted the quality of the work. It's very likely that they had internal projects

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Pani, Gourav
EE!!! Spin again. -Original Message- From: Mike Oliver [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 2:59 PM To: 'Struts Users Mailing List' Subject: RE: [OT] Re: Struts officially supported at Ford Is that a Punjab? Michael Oliver AppsAsPeers LLC 7391 S.

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Mike Oliver
Is that a Punjab? Michael Oliver AppsAsPeers LLC 7391 S. Bullrider Ave. Tucson, AZ 85747 Phone:(520)574-1150 Fax:(520)844-1036 -Original Message- From: James Childers [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 12:54 PM To: Struts Users Mailing List Subject: RE: [OT] Re:

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Bredesen, Chris - NA US HQ Delray
Nope, tiling. > -Original Message- > From: Pani, Gourav [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 23, 2003 2:57 PM > To: 'Struts Users Mailing List' > Subject: RE: [OT] Re: Struts officially supported at Ford > > > Now is that specific case of death enforced by public stoning?

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Pani, Gourav
Now is that specific case of death enforced by public stoning? -Original Message- From: James Childers [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 2:54 PM To: Struts Users Mailing List Subject: RE: [OT] Re: Struts officially supported at Ford Under Sharia law puns that ba

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Chappell, Simon P
Mark seems to operate under different laws of the universe than the rest of us. I suspect that this one wouldn't apply to him either. >-Original Message- >From: James Childers [mailto:[EMAIL PROTECTED]] >Sent: Thursday, January 23, 2003 1:54 PM >To: Struts Users Mailing List >Subject: RE:

RE: [OT]Good News

2003-01-23 Thread James Turner
> From: Durham David Cntr 805CSS/SCBE > > Certain elements with the USAF, mine is the only one I know > of :-), are using Struts. I'm not sure if this decision went > all the way to President Bush or not. Seems like it would have. > Struts in the military, the mind boggles. "This IS your

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread James Childers
Under Sharia law puns that bad are punishable by death. -= J > -Original Message- > From: Mark Galbreath [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 23, 2003 1:51 PM > To: 'Struts Users Mailing List' > Subject: RE: [OT] Re: Struts officially supported at Ford > > > Yes, that's

RE: [OT] Struts Job

2003-01-23 Thread jmattucci
im a developer in toronto. Can I contact you max? "Mark Galbreath"

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Mark Galbreath
Yes, that's his real name. He hunts buffalo with a java-lin, too. -Original Message- From: Durham David Cntr 805CSS/SCBE [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 2:49 PM To: Struts Users Mailing List Subject: RE: [OT] Re: Struts officially supported at Ford It was a

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Chappell, Simon P
On the internet, no one knows if you're a dog. He's a real member of the list and his email says he's called Joe Barefoot. What else is there to know? :-) a list member allegedly called Simon Chappell >-Original Message- >From: Durham David Cntr 805CSS/SCBE [mailto:[EMAIL PROTECTED]] >Se

RE: Struts officially supported at Ford-->so what

2003-01-23 Thread francis A
you are correct just before meeting i have to type and hence typo... From: "James Turner" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Subject: RE: Struts officially supported at Ford-->so what Date: Thu,

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Durham David Cntr 805CSS/SCBE
It was a real question. No offense :) -Dave > -Original Message- > From: Mark Galbreath [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 23, 2003 1:41 PM > To: 'Struts Users Mailing List' > Subject: RE: [OT] Re: Struts officially supported at Ford > > > There are those on the preci

RE: [OT] RE: Struts officially supported at Ford-->so what

2003-01-23 Thread Mark Galbreath
Up the dosage -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 2:28 PM Your message doesn't make any sense. >From: "francis A" <[EMAIL PROTECTED]> >Date: Thu, 23 Jan 2003 14:19:04 -0500 > >ford is not the "big" company which has deplo

RE: [OT]Good News

2003-01-23 Thread Durham David Cntr 805CSS/SCBE
Certain elements with the USAF, mine is the only one I know of :-), are using Struts. I'm not sure if this decision went all the way to President Bush or not. Seems like it would have. -Dave > -Original Message- > From: Mike Oliver [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January

Re: [TILES] Help with trademark symbol

2003-01-23 Thread Paul Linden
Or, as Gourav pointed out, use ™ or ™ instead (http://www.htmlhelp.com/reference/html40/entities/) Paul Linden wrote: The tiles config file is XML, so the parser is trying to reference ™ before it even gets to the web page. Try using ™ instead. Paul Wendy Smoak wrote: I have a tile de

RE: Error Loading Application Resources in Struts 1.1

2003-01-23 Thread James Mitchell
Yes, well that version I did was a 1.1b1 version of the example app.maybe I should verify with the nightlyneed to finish my assigned bug first. -- James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org/ "The man who does not read good books has no advantage over the

RE: [OT]Good News

2003-01-23 Thread Mike Oliver
I can confirm at least one, I just got a gig with a big insurance company based primarily on use of Struts to meet cost and timeline requirements. Michael Oliver AppsAsPeers LLC 7391 S. Bullrider Ave. Tucson, AZ 85747 Phone:(520)574-1150 Fax:(520)844-1036 -Original Message- From: [EMAIL

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Mark Galbreath
There are those on the precipice, and then there are those in the abyss -Original Message- From: Durham David Cntr 805CSS/SCBE [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 1:59 PM To: Struts Users Mailing List Subject: RE: [OT] Re: Struts officially supported at Ford

RE: [OT] Re: Struts officially supported at Ford

2003-01-23 Thread Mark Galbreath
Don't they require drivers, too? -Original Message- From: Durham David Cntr 805CSS/SCBE [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 1:50 PM No, IBM doesn't make cars. They make computers. > -Original Message- > From: Emmanuel Boudrant [mailto:[EMAIL PROTECTED]]

Re: [TILES] Help with trademark symbol

2003-01-23 Thread Paul Linden
The tiles config file is XML, so the parser is trying to reference ™ before it even gets to the web page. Try using ™ instead. Paul Wendy Smoak wrote: I have a tile definition: And on startup, I get Apache Tomcat/4.1.18-LE-jdk14 org.xml.sax.SAXParseException: Reference to und

RE: [TILES] Help with trademark symbol

2003-01-23 Thread Pani, Gourav
have you tried the hash value? -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 2:30 PM To: 'Struts Users Mailing List' Subject: [TILES] Help with trademark symbol I have a tile definition: And on startup, I get Apache Tomc

[OT] RE: Struts officially supported at Ford-->so what

2003-01-23 Thread David Graham
Your message doesn't make any sense. David From: "francis A" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: RE: Struts officially supported at Ford-->so what Date: Thu, 23 Jan 2003 14:19:04 -0500 ford is not the "big" company wh

Re: Problem with unused Formbean-Properties

2003-01-23 Thread Craig R. McClanahan
On Thu, 23 Jan 2003, Andreas Langmann wrote: > Date: Thu, 23 Jan 2003 12:46:33 +0100 > From: Andreas Langmann <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Problem with unused Formbean-Properties > > Hello, > > i have a formBean

RE: Struts officially supported at Ford-->so what

2003-01-23 Thread James Mitchell
You're probably right. -- James "'97 Chevy Blazer and 2003 Dodge" Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org/ "The man who does not read good books has no advantage over the man who cannot read them." - Mark Twain (1835-1910) > -Original Message- >

RE: Struts officially supported at Ford-->so what

2003-01-23 Thread Pani, Gourav
Simon, You need to get the BBC Micro-Powered El Cameno... Sorry, is it Friday yet??? -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 2:31 PM To: Struts Users Mailing List Subject: RE: Struts officially supported at Ford-->so what

[TILES] Help with trademark symbol

2003-01-23 Thread Wendy Smoak
I have a tile definition: And on startup, I get Apache Tomcat/4.1.18-LE-jdk14 org.xml.sax.SAXParseException: Reference to undefined entity "™" Since the 'heading' is inserted into an HTML page, I don't know how else to get the little trademark symbol to appear. Any ideas? Thanks

RE: Struts officially supported at Ford-->so what

2003-01-23 Thread James Turner
> From: francis A [mailto:[EMAIL PROTECTED]] > ford is not the "big" company which has deployed struts.I > have worked in > three project for past 15 months and all are big players in > the industried > today.And all the three company have deployed the app on websphere > z/os(os/390->mainfra

RE: Struts officially supported at Ford-->so what

2003-01-23 Thread Chappell, Simon P
He sure doesn't sound like someone who drives a Ford! Simon "95 Ford Probe GT 24v and happy about it" Chappell >-Original Message- >From: James Mitchell [mailto:[EMAIL PROTECTED]] >Sent: Thursday, January 23, 2003 1:25 PM >To: 'Struts Users Mailing List' >Subject: RE: Struts officially su

RE: Struts officially supported at Ford-->so what

2003-01-23 Thread James Mitchell
Let me guess..you work for GM? -- James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org/ "The man who does not read good books has no advantage over the man who cannot read them." - Mark Twain (1835-1910) > -Original Message- > From: francis A [

  1   2   3   >