Re: FAQ: How can I create a wizard workflow?

2004-03-11 Thread Srikanth Shenoy
Dean,

It is /mywizard1.do for the first page, /wizard2.do for the second page
and so on

  Srikanth Shenoy
  Author
  Struts Survival Guide: Basics to Best Practices
 
  J2EE Project Survival Guide
 


"Dean A. Hoover" <[EMAIL PROTECTED]> wrote in message
news:<[EMAIL PROTECTED]>...
> In other words:
> 
> 
> 
> anyone know?
> 
> Dean A. Hoover wrote:
> 
> > In http://jakarta.apache.org/struts/faqs/newbie.html#wizard
> > the example references several jsp files. For example, 
> > mywizard1.jsp. My question is, in the form in that jsp, what is the 
> > action?
> >
> > Dean Hoover
> >
> >
> > 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >


Re: FAQ: How can I create a wizard workflow?

2004-03-11 Thread Dean A. Hoover
In other words:



anyone know?

Dean A. Hoover wrote:

In http://jakarta.apache.org/struts/faqs/newbie.html#wizard
the example references several jsp files. For example,
mywizard1.jsp. My question is, in the form in that jsp,
what is the action?
Dean Hoover

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


FAQ: How can I create a wizard workflow?

2004-03-11 Thread Dean A. Hoover
In http://jakarta.apache.org/struts/faqs/newbie.html#wizard
the example references several jsp files. For example,
mywizard1.jsp. My question is, in the form in that jsp,
what is the action?
Dean Hoover

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: FAQ (Passing Variables Between Actions); But, Stuck and Need Help

2003-11-07 Thread Adam Hardy
On 11/06/2003 09:02 PM Caroline Jen wrote:
I think I am going for the first method that you
suggested - create a user bean and store it in a 
session object at login.  My concern is that I use
container managed authentication at login.  After the
container does its job, is there any way other than
using an Action that delegates the business tier to
search the database and obtain the value of
field_of_specialization?  If an action has to be
involved at this point to form a session object, does
it suffer the the disadvantage of being overwritten if
the user has more than one browser window opened?
If you include a method call in all your actions to check whether the 
user is logged in, and then whether the session bean exists already, you 
can determine whether to create the bean or not each time. This won't be 
affected by the number of browser windows open, since you will only 
create the user bean once.

at the problem -  I provide a buttion in editor's
page, which is a JSP tile:


View Articles


If the button is clicked, I attempt to use an Action
(via the path /editor/Category) to search the database
for the field_of_specialization.  However, I got this
message in the browser:
[ServletException in:/article/content/menu.jsp] Cannot
retrieve mapping for action /do/editor/Category'
and in my struts-config.xml


type="org.apache.artimus.article.EditorViewAction">

name="success"
path="/menu/Find"/>

Sorry but I can't see why that problem should occur from the info you 
give. Maybe if you start a new thread with a relevant subject title for 
this then somebody may be able to help. If you could specify exactly 
when or which page causes the error, it might help too.

Adam

--
struts 1.1 + tomcat 5.0.12 + java 1.4.2
Linux 2.4.20 RH9
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: FAQ (Passing Variables Between Actions); But, Stuck and Need Help

2003-11-06 Thread Caroline Jen
Thank you for the very useful and constructive
feedbacks.

I think I am going for the first method that you
suggested - create a user bean and store it in a 
session object at login.  My concern is that I use
container managed authentication at login.  After the
container does its job, is there any way other than
using an Action that delegates the business tier to
search the database and obtain the value of
field_of_specialization?  If an action has to be
involved at this point to form a session object, does
it suffer the the disadvantage of being overwritten if
the user has more than one browser window opened?

In regard to the two-action approach that you
discussed toward the end of your message, I
encountered some problems.  If you would take a look
at the problem -  I provide a buttion in editor's
page, which is a JSP tile:



View Articles



If the button is clicked, I attempt to use an Action
(via the path /editor/Category) to search the database
for the field_of_specialization.  However, I got this
message in the browser:

[ServletException in:/article/content/menu.jsp] Cannot
retrieve mapping for action /do/editor/Category'

and in my struts-config.xml




 
-Caroline
--- Adam Hardy <[EMAIL PROTECTED]>
wrote:
> On 11/06/2003 08:26 AM Caroline Jen wrote:
> > Passing variables from one action to another is a
> > frequently asked question.  The answer is to use
> > either hidden fields or a session object.  
> > 
> [snip...]
> > Now, the application has another user case - 
> editors.
> >  An editor only retrieve and view all articles in
> > his/her own field of specialization.  I
> arbitrarily
> > set "dispatch" as "field_of_specialization" and
> use
> > the hidden field technique:
> > 
> >  > value="field_of_Specialization"/>
> > 
> > Nonetheless, the way to get the "value" the
> editor's
> > field of specialization is from the database. 
> Because
> > editors are registered members of the web site,
> the
> > application should be able to look for his/her
> profile
> > and obtain his/her field of specialization in the
> > database once an editor successfully logs into the
> web
> > site.  Therefore, it takes an "action" (Action
> TWO)
> > that tells the business tier to find the
> "keyValue" in
> > the database.  And should I put the "keyValue" in
> a
> > session object.  
> 
> One method that I use is to create a user bean and
> store that in the 
> session at login. This bean could include your
> editor's field of 
> specialization, so that you don't need an extra
> action.
> 
> Secondly, you could drop the Action One by
> incorporating the field of 
> specialization as a part of one SQL statement, so
> that you never 
> actually extract the field of specialization from
> the DB. I.e. something 
> like this:
> 
> SELECT article_title, article_text FROM app_user,
> article
> WHERE app_user.user_name = ?
> AND app_user.field_of_specialization =
> article.field_of_specialization
> 
> Alternatively if you still want to do 2 actions, I
> have seen people 
> handle it in various ways: (1) get the
> action-forward in your action and 
> modify the path to add a query_string with your
> keyValue on it (2) put 
> the keyValue in a cookie (3) as you said, put it in
> the session. 2 & 3 
> have the disadvantage that they could be overwritten
> if the user has 
> more than one browser window open.
> 
> HTH
> Adam
> 
> -- 
> struts 1.1 + tomcat 5.0.12 + java 1.4.2
> Linux 2.4.20 RH9
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 



__
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: FAQ (Passing Variables Between Actions); But, Stuck and Need Help

2003-11-06 Thread Adam Hardy
On 11/06/2003 08:26 AM Caroline Jen wrote:
Passing variables from one action to another is a
frequently asked question.  The answer is to use
either hidden fields or a session object.  

[snip...]
Now, the application has another user case -  editors.
 An editor only retrieve and view all articles in
his/her own field of specialization.  I arbitrarily
set "dispatch" as "field_of_specialization" and use
the hidden field technique:

Nonetheless, the way to get the "value" the editor's
field of specialization is from the database.  Because
editors are registered members of the web site, the
application should be able to look for his/her profile
and obtain his/her field of specialization in the
database once an editor successfully logs into the web
site.  Therefore, it takes an "action" (Action TWO)
that tells the business tier to find the "keyValue" in
the database.  And should I put the "keyValue" in a
session object.  
One method that I use is to create a user bean and store that in the 
session at login. This bean could include your editor's field of 
specialization, so that you don't need an extra action.

Secondly, you could drop the Action One by incorporating the field of 
specialization as a part of one SQL statement, so that you never 
actually extract the field of specialization from the DB. I.e. something 
like this:

SELECT article_title, article_text FROM app_user, article
WHERE app_user.user_name = ?
AND app_user.field_of_specialization = article.field_of_specialization
Alternatively if you still want to do 2 actions, I have seen people 
handle it in various ways: (1) get the action-forward in your action and 
modify the path to add a query_string with your keyValue on it (2) put 
the keyValue in a cookie (3) as you said, put it in the session. 2 & 3 
have the disadvantage that they could be overwritten if the user has 
more than one browser window open.

HTH
Adam
--
struts 1.1 + tomcat 5.0.12 + java 1.4.2
Linux 2.4.20 RH9
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


FAQ (Passing Variables Between Actions); But, Stuck and Need Help

2003-11-06 Thread Caroline Jen
Passing variables from one action to another is a
frequently asked question.  The answer is to use
either hidden fields or a session object.  

The story starts with searching the database.  My
application offers options to search the database by
author, title of the article, article ID, or . I
have a drop-down list in my JSP for visitors to make a
selection.  By clicking on one of those options, the
property "dispatch" is set.  And the visitor fills out
the text field to set "keyValue".  With both
"dispatch" and keyValue forwarded to an "action"; say,
Action ONE, the desired articles can be retrieved from
the database.  So far so good.

What I have handled next is the "author's page" of the
web site.  An author can only view his own articles
and perform update, delete, save, ... functions.  I
use the hidden field technique to handle it.  The
property "dispatch" is arbitrarily set as "author"
(needless to say) and keyValue can be obtained by

String username = request.getRemoteUser();

And,




are forwarded to the same action (Action ONE) for
processing.  Again, no problem.

Now, the application has another user case -  editors.
 An editor only retrieve and view all articles in
his/her own field of specialization.  I arbitrarily
set "dispatch" as "field_of_specialization" and use
the hidden field technique:



Nonetheless, the way to get the "value" the editor's
field of specialization is from the database.  Because
editors are registered members of the web site, the
application should be able to look for his/her profile
and obtain his/her field of specialization in the
database once an editor successfully logs into the web
site.  Therefore, it takes an "action" (Action TWO)
that tells the business tier to find the "keyValue" in
the database.  And should I put the "keyValue" in a
session object.  

I have tried to handle this situation again and again
in many different ways.  I am very frustrated and need
help -- how does a user go from by clicking a button
in a JSP to go to Action TWO (get the keyValue) and
then forward this keyValue and 


 
to Action ONE for retrieving the desired articles from
the database?





__
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[OT] [ANNOUNCE] JavaServer Faces FAQ

2003-06-12 Thread Kito D. Mann
I'm pleased to announce a new FAQ about JSF at http://www.jsfcentral.com. 
Currently it focuses on more high-level questions, including some basic 
questions about JSF and Struts, but it's a good compliment to the existing 
Sun FAQ. I'll be adding more content to the FAQ and the site as a whole 
over time, so check back often.

Thanks,

Kito D. Mann
Author, JSF in Action (in progress)


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Dynamic Forms & Indexed properties (was RE: [Struts FAQ] Update #3)

2003-04-02 Thread Wendy Smoak
John wrote:
> Struts FAQ - Update #3
> http://www.scioworks.net/servlets/ShowPage?pid=54&dp=3
> Q3: What are "indexed" struts-html tags and how to use them?

These are great, thanks!  I was just saying yesterday that indexed
properties might solve a problem I have, but looking at the example I'm not
sure if I can use them with a DynaValidatorForm.

In the example, does the programmer have to code the "Person" class with
phoneNo and name properties, or does that happen somehow automatically?

And how does this work:
 public void getPerson(int index) { ... }

Shouldn't that return a Person object, or at the very least an Object,
rather than void?

-- 
Wendy Smoak
Applications Systems Analyst, Sr.
Arizona State University PA Information Resources Management




[Struts FAQ] Update #3

2003-04-01 Thread John Yu
Struts FAQ - Update #3

 http://www.scioworks.net/servlets/ShowPage?pid=54&dp=3

This update covers:

Q1: Is it possible to make the data from the resource bundles accessible as 
JSP page scripting variables?

Q2: What does  do?

Q3: What are "indexed" struts-html tags and how to use them?

Q4: What are "map-backed" form beans and how to use them?

Q5: I have an "index.jsp" in a "module1" module. However, when I access 
this from the browser, Struts doesn't seem to access the module 
struts-config.xml of the "module1". Why?

Q6: How do I make  to check if a bean is null before comparing 
the value?

Q7: The Taglib standard does not allow nesting custom tag inside the 
attribute of another custom tag. How can I achieve something like 
"/>?

Q8: How to apply container-managed security to Struts Actions?

Q9: When I have literal string in scriplet used inside a Struts custom tag, 
e.g. "/>, the scriplet is not 
evaluated properly. Why?

Q10: How do I use a Struts Action as a welcome file specified as 
 in web.xml ?

Q11: Why does my JSP gives me "Illegal target of jump or branch", 
ClassFormatError or VerifyError?

Q12: Can I detect if the user presses STOP on the browser?

Q13: How to dynamically populate values in a form (e.g. options in a select 
box) without submitting or refreshing the entire page?

--
John Yu  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: [Struts FAQ] Update #3

2003-04-01 Thread Andrew Hill
Glad to see your still updating the Q & A. Keep up the good work. :-)


How to dynamically populate values in a form (e.g. options in a select box)
without submitting or refreshing the entire page?

As well as applets (which require the user's browser to have a Java VM or
plugin), a similar effect can be achieved using only javascript and a hidden
IFRAME or FRAME. Theres quite a good article on this technique at
http://developer.apple.com/internet/javascript/iframe.html

btw: I noticed a typo:

 the problem encountered by the container when flushing will be 'swollen' by
the container

I presume that should be 'swallowed by the container'?


-Original Message-
From: Struts Q&A Info [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 2 April 2003 12:19
To: [EMAIL PROTECTED]
Subject: [Struts FAQ] Update #3



Struts FAQ - Update #3

  http://www.scioworks.net/servlets/ShowPage?pid=54&dp=3


This update covers:

Q1: Is it possible to make the data from the resource bundles accessible as
JSP page scripting variables?

Q2: What does  do?

Q3: What are "indexed" struts-html tags and how to use them?

Q4: What are "map-backed" form beans and how to use them?

Q5: I have an "index.jsp" in a "module1" module. However, when I access
this from the browser, Struts doesn't seem to access the module
struts-config.xml of the "module1". Why?

Q6: How do I make  to check if a bean is null before comparing
the value?

Q7: The Taglib standard does not allow nesting custom tag inside the
attribute of another custom tag. How can I achieve something like
"/>?

Q8: How to apply container-managed security to Struts Actions?

Q9: When I have literal string in scriplet used inside a Struts custom tag,
e.g. "/>, the scriplet is not
evaluated properly. Why?

Q10: How do I use a Struts Action as a welcome file specified as
 in web.xml ?

Q11: Why does my JSP gives me "Illegal target of jump or branch",
ClassFormatError or VerifyError?

Q12: Can I detect if the user presses STOP on the browser?

Q13: How to dynamically populate values in a form (e.g. options in a select
box) without submitting or refreshing the entire page?

===
You receive this message because you are subscribed to
Struts FAQ at scioworks.net.
To unsuscribe, please send a request to <[EMAIL PROTECTED]>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Donde esta 'FAQ'?

2002-06-26 Thread James Mitchell

You can find the answer to that on the FAQ.

;)

http://jakarta.apache.org/struts/kickstart.html
http://jakarta.apache.org/struts/newbie.html
http://www.jguru.com/faq/home.jsp?topic=Struts


James Mitchell
Software Engineer\Struts Evangelist
Struts-Atlanta, the "Open Minded Developer Network"
http://struts-atlanta.open-tools.org




> -Original Message-
> From: Bill Milbratz [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, June 26, 2002 7:22 PM
> To: 'Struts Users Mailing List'
> Subject: Donde esta 'FAQ'?
> 
> 
> Today I tried the 'faq' feature on this list and found it empty.
> 
> Does anyone have plans to put one out?  
> 
> thanks,
> 
> bill milbratz
> 
> 
> 
> 
> --
> To unsubscribe, e-mail:   
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: 
> <mailto:[EMAIL PROTECTED]>
> 
> 

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Donde esta 'FAQ'?

2002-06-26 Thread Bill Milbratz

Today I tried the 'faq' feature on this list and found it empty.

Does anyone have plans to put one out?  

thanks,

bill milbratz




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




RE: [FAQ News:Promotion] Half Price

2002-05-06 Thread Sandra Cann

Tony

It would be cool since eFAQ is a Struts based application. Hey, if one or
more people would contribute to maintaining the questions and answers, I
would gladly provide the eFAQ software and set it up.  We can host it
onsite; or it can be hosted somewhere else? Your choice.

Sandra

> -Original Message-
> From: Hardee, Tony [mailto:[EMAIL PROTECTED]]
> Sent: Monday, May 06, 2002 8:32 AM
> To: Struts Users Mailing List
> Subject: FW: [FAQ News:Promotion] Half Price
>
>
> I would like to see eFAQ in action handling Struts.  Wouldn't it
> be nice if
> the people at jcorporate gave back to struts by  hosting and operating an
> eFAQ struts site.
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, May 04, 2002 7:38 PM
> To: [EMAIL PROTECTED]
> Subject: [FAQ News:Promotion] Half Price
>
>
> Message posted by user 'scann' at 2002-05-04 10:12:08
>
> eFAQ, for managing and facilitating a stand alone frequently
> asked questions
> database, will be offered at 50% off regular price for the months
> of May and
> June.  Now only $99 (Object Code) version or $599(Source Code) version.
>
> Contact [EMAIL PROTECTED] to place your order.
>
>
>
> Reply to this message:
> http://www.jcorporate.com:80/eforum/Browse.do?state=promptReply&Me
ssageId=31
80

Browse Thread:
http://www.jcorporate.com:80/eforum/Browse.do?state=browseMessages&ThreadId=
726&GroupId=40

You are receiving this email because you are subscribed to an eForum
discussion group at www.jcorporate.com. If you want to change your
subscription, use this link:
http://www.jcorporate.com:80/eforum/Browse.do?state=promptGroupSubscribe.
You must be logged in (or have a cookie stored from a previous login) to use
this link. You can login here: http://www.jcorporate.com:80/Login.do

--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




FW: [FAQ News:Promotion] Half Price

2002-05-06 Thread Hardee, Tony

I would like to see eFAQ in action handling Struts.  Wouldn't it be nice if
the people at jcorporate gave back to struts by  hosting and operating an
eFAQ struts site.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Saturday, May 04, 2002 7:38 PM
To: [EMAIL PROTECTED]
Subject: [FAQ News:Promotion] Half Price 


Message posted by user 'scann' at 2002-05-04 10:12:08

eFAQ, for managing and facilitating a stand alone frequently asked questions
database, will be offered at 50% off regular price for the months of May and
June.  Now only $99 (Object Code) version or $599(Source Code) version. 

Contact [EMAIL PROTECTED] to place your order.



Reply to this message:
http://www.jcorporate.com:80/eforum/Browse.do?state=promptReply&MessageId=31
80

Browse Thread:
http://www.jcorporate.com:80/eforum/Browse.do?state=browseMessages&ThreadId=
726&GroupId=40

You are receiving this email because you are subscribed to an eForum
discussion group at www.jcorporate.com. If you want to change your
subscription, use this link:
http://www.jcorporate.com:80/eforum/Browse.do?state=promptGroupSubscribe.
You must be logged in (or have a cookie stored from a previous login) to use
this link. You can login here: http://www.jcorporate.com:80/Login.do

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: This list NEEDS a FAQ

2001-10-26 Thread Eric Rizzo

[EMAIL PROTECTED] wrote:

> There already is a FAQ, here:
> 
> http://jakarta.apache.org/struts/userGuide/kickstart.html


jGuru hosts a lot of Java FAQ lists, including one for Struts at 
http://www.jguru.com/faq/Struts  The nice thing is you can suggest new 
questions, answers, and comments to existing FAQs.


 
> I agree with the sentiment behind your suggestion, though. The real problem
> is that many people don't refer to the FAQ, and don't check the mailing list
> archives, before posting their own questions to the list.

[snip]

> Perhaps the best we can do is
> to collectively enforce the "do your own research first" reaction.
> 
> So whenever you read a message that asks a question that is already on the
> FAQ list, don't reply with the answer, but reply with a reference to the FAQ
> which supplies the answer. And if you see a question being asked repeatedly,
> propose it as a candidate for the FAQ.
> 
> If we are consistent in the way we respond to frequently asked questions on
> this list, we should be able to reduce the overall message volume, and
> increase the signal-to-noise ratio. That will benefit us all.


Agreed.  A short answer saying "See the FAQ at this URL: http://.."; not only 
directs people to the answer for a particular question, but also teaches them to 
look there for their next question.  Another thing I've done on the VisualAge 
for Java forums is to post a weekly message about the existence of the FAQ. 
That way someone browsing recent messages is bound to stumble upon the link, and 
anyone nice enough to do a search in the archives for "FAQ" will find it.

Ted Husted manages the jGuru Struts FAQ - would he be willing to post a message 
along these lines to this list every week (I can send the one I use for VAJ if 
you'd like to adapt it).

Eric
-- 
Eric Rizzo, Software Engineer
OpenNetwork Technologies
http://www.opennetwork.com
-
I embrace my personality flaws, for without them
I might have no personality at all.




Re: This list NEEDS a FAQ

2001-10-26 Thread Ted Husted

And if you have any Ant questions (come on, I know you do), Erik can
help you at 

http://www.jguru.com/faq/Ant

;-) 

Erik Hatcher wrote:
> 
> http://www.jguru.com/faq/Struts
> 
> - Original Message -
> From: "Mindaugas Idzelis" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, October 25, 2001 5:32 PM
> Subject: This list NEEDS a FAQ
> 
> > Subscribers,
> >
> > This list NEEDS a FAQ badly. There are many many many questions that are
> > asked repeatedly. It would be nice to refer them to a FAQ. I'd be willing
> to
> > put together a small FAQ. Please send me questions (and answers!! -- if
> you
> > have them) to [EMAIL PROTECTED] Please include FAQ in the subject. Thanks.
> >
> > Mindaugas Idzelis



Re: This list NEEDS a FAQ

2001-10-26 Thread steven . valin

On Fri, 26 October 2001, [EMAIL PROTECTED] wrote:

> I agree with the sentiment behind your suggestion, though. The real problem
> is that many people don't refer to the FAQ, and don't check the mailing list
> archives, before posting their own questions to the list. Unfortunately,
> these are typically the same people who believe that their own time is more
> valuable than that of other people on the list.

I'll second that.  Many many questions have been posted on this list that are clearly 
explained in the documentation.

The documentation isn't perfect, and can be confusing at times, but some due diligence 
should be expected.  Not only is there documentation, but the source code is available 
and it will tell you the truth like no other!

About a month ago I was thrilled to see someone respond to a question with "RTFM"!

--
Steven Valin
[EMAIL PROTECTED]



Re: This list NEEDS a FAQ

2001-10-26 Thread Erik Hatcher

http://www.jguru.com/faq/Struts


- Original Message -
From: "Mindaugas Idzelis" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, October 25, 2001 5:32 PM
Subject: This list NEEDS a FAQ


> Subscribers,
>
> This list NEEDS a FAQ badly. There are many many many questions that are
> asked repeatedly. It would be nice to refer them to a FAQ. I'd be willing
to
> put together a small FAQ. Please send me questions (and answers!! -- if
you
> have them) to [EMAIL PROTECTED] Please include FAQ in the subject. Thanks.
>
> Mindaugas Idzelis
>
>
>




Re: This list NEEDS a FAQ

2001-10-26 Thread John Yu

There's an FAQ on husted.com which contains frequent questions asked on the 
list,

 http://www.husted.com/struts/FAQ/index.htm

Maybe we need an eye-catching link on jakarta's website pointing to the FAQ 
page? What do you think, Ted?


At 05:32 pm 25-10-2001 -0400, you wrote:
>Subscribers,
>
> This list NEEDS a FAQ badly. There are many many many questions 
> that are
>asked repeatedly. It would be nice to refer them to a FAQ. I'd be willing to
>put together a small FAQ. Please send me questions (and answers!! -- if you
>have them) to [EMAIL PROTECTED] Please include FAQ in the subject. Thanks.
>
>Mindaugas Idzelis

-- 
John Yu   Scioworks Technologies
e: [EMAIL PROTECTED] w: +(65) 873 5989
w: http://www.scioworks.com   m: +(65) 9782 9610

Scioworks Camino - "Rapid WebApp Assembly for Struts"




Re: This list NEEDS a FAQ

2001-10-26 Thread martin . cooper

There already is a FAQ, here:

http://jakarta.apache.org/struts/userGuide/kickstart.html

I agree with the sentiment behind your suggestion, though. The real problem
is that many people don't refer to the FAQ, and don't check the mailing list
archives, before posting their own questions to the list. Unfortunately,
these are typically the same people who believe that their own time is more
valuable than that of other people on the list.

I don't know what the best solution is for this problem. Moderating the list
is one option, but with the typical daily volume of this list, I don't see
anyone readily volunteering for that task. ;-) Perhaps the best we can do is
to collectively enforce the "do your own research first" reaction.

So whenever you read a message that asks a question that is already on the
FAQ list, don't reply with the answer, but reply with a reference to the FAQ
which supplies the answer. And if you see a question being asked repeatedly,
propose it as a candidate for the FAQ.

If we are consistent in the way we respond to frequently asked questions on
this list, we should be able to reduce the overall message volume, and
increase the signal-to-noise ratio. That will benefit us all.

--
Martin Cooper


- Original Message -
From: "Mindaugas Idzelis" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, October 25, 2001 2:32 PM
Subject: This list NEEDS a FAQ


> Subscribers,
>
> This list NEEDS a FAQ badly. There are many many many questions that are
> asked repeatedly. It would be nice to refer them to a FAQ. I'd be willing
to
> put together a small FAQ. Please send me questions (and answers!! -- if
you
> have them) to [EMAIL PROTECTED] Please include FAQ in the subject. Thanks.
>
> Mindaugas Idzelis
>
>





This list NEEDS a FAQ

2001-10-25 Thread Mindaugas Idzelis

Subscribers,

This list NEEDS a FAQ badly. There are many many many questions that are
asked repeatedly. It would be nice to refer them to a FAQ. I'd be willing to
put together a small FAQ. Please send me questions (and answers!! -- if you
have them) to [EMAIL PROTECTED] Please include FAQ in the subject. Thanks.

Mindaugas Idzelis





FAQ additions? (was Re: Help: Cannot find bean BEAN in scope null)

2001-08-30 Thread Gary Kephart

Thomas Quas wrote:

> Gary,
>
> it usually happens to me when I close the  too early, meaning
> there are some 's or others floating around after I did
> .

That was it. After that I had another problem, which a co-worker solved. At
any rate, here's two things to put into the FAQ:

Q: I get this message in my log file: "Cannot find bean
org.apache.struts.taglib.html.BEAN in scope null". What's causing it?
A: it usually happens to me when I close the  too early, meaning
there are some 's or others floating around after I did
. (Thomas Quas <[EMAIL PROTECTED]>)

Q: I get this message in my log file: "No getter method for property
myProperty of bean org.apache.struts.taglib.html.BEAN" even though I have a
getter method in my form bean.
A: This is a matter of case-sensitivity. Even though your Java method will be
"public string getMyProperty()", with the "M" capitalized, the first letter of
the property in the JSP will be lower case. Your JSP will have this in it:
""


> Gary Kephart wrote:
> >
> > I get this message in the log file:
> >
> > Cannot find bean org.apache.struts.taglib.html.BEAN in scope null

Gary
--
Gary Kephart   | Basis 100
Software Engineer  | 4 Park Plaza, Suite 800
[EMAIL PROTECTED]  | Irvine, CA 92614
(949) 852-8600x262 | http://www.basis100.com

This communication is intended only for the use of the individual or
entity to whom/which it is addressed, and information contained in this
communication is privileged and confidential.  If the receiver of this
message is not the intended recipient, you are hereby notified that any
dissemination, distribution or copying of this communication is strictly
prohibited.  If you have received this communication in error, please
notify us at the above telephone number (so that we may correct our
internal records) and delete this communication without making a copy of
it.  Thank you.




Re: FAQ?

2001-08-28 Thread Erik Hatcher

http://www.jguru.com/faq/home.jsp?topic=Struts


- Original Message - 
From: "Gary Kephart" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 28, 2001 6:50 PM
Subject: FAQ?


> I've just downloaded, installed and tried to run Struts this week. Of
> course, as a newbie, I hit some snags. Got past most of them, but then
> went looking for a FAQ list for Struts, but to no avail. Is there one?
> If so, where?
> 
> BTW, the problem I'm trying to solve is this message in the log file:
> 
> javax.servlet.jsp.JspException: Cannot find ActionMappings or
> ActionFormBeans collection
> 
> I can't tell if I'm missing a jar file or some xml file needs to be
> modified.
> 
> Thanks,
>   Gary
> --
> Gary Kephart   | Basis 100
> Software Engineer  | 4 Park Plaza, Suite 800
> [EMAIL PROTECTED]  | Irvine, CA 92614
> (949) 852-8600x262 | http://www.basis100.com
> 
> This communication is intended only for the use of the individual or
> entity to whom/which it is addressed, and information contained in this
> communication is privileged and confidential.  If the receiver of this
> message is not the intended recipient, you are hereby notified that any
> dissemination, distribution or copying of this communication is strictly
> 
> prohibited.  If you have received this communication in error, please
> notify us at the above telephone number (so that we may correct our
> internal records) and delete this communication without making a copy of
> 
> it.  Thank you.
> 




Re: FAQ?

2001-08-28 Thread Gary Kephart

Gary Kephart wrote:

> I've just downloaded, installed and tried to run Struts this week. Of
> course, as a newbie, I hit some snags. Got past most of them, but then
> went looking for a FAQ list for Struts, but to no avail. Is there one?
> If so, where?
>
> BTW, the problem I'm trying to solve is this message in the log file:
>
> javax.servlet.jsp.JspException: Cannot find ActionMappings or
> ActionFormBeans collection
>
> I can't tell if I'm missing a jar file or some xml file needs to be
> modified.

Found the answer to my problem in my web.xml file. Used the damned example
file and didn't change the values. Onto the next problem...

But I would still like to know if there's a FAQ around somewhere.

Thanks,
  Gary
--
Gary Kephart   | Basis 100
Software Engineer  | 4 Park Plaza, Suite 800
[EMAIL PROTECTED]  | Irvine, CA 92614
(949) 852-8600x262 | http://www.basis100.com

This communication is intended only for the use of the individual or
entity to whom/which it is addressed, and information contained in this
communication is privileged and confidential.  If the receiver of this
message is not the intended recipient, you are hereby notified that any
dissemination, distribution or copying of this communication is strictly
prohibited.  If you have received this communication in error, please
notify us at the above telephone number (so that we may correct our
internal records) and delete this communication without making a copy of
it.  Thank you.




FAQ?

2001-08-28 Thread Gary Kephart

I've just downloaded, installed and tried to run Struts this week. Of
course, as a newbie, I hit some snags. Got past most of them, but then
went looking for a FAQ list for Struts, but to no avail. Is there one?
If so, where?

BTW, the problem I'm trying to solve is this message in the log file:

javax.servlet.jsp.JspException: Cannot find ActionMappings or
ActionFormBeans collection

I can't tell if I'm missing a jar file or some xml file needs to be
modified.

Thanks,
  Gary
--
Gary Kephart   | Basis 100
Software Engineer  | 4 Park Plaza, Suite 800
[EMAIL PROTECTED]  | Irvine, CA 92614
(949) 852-8600x262 | http://www.basis100.com

This communication is intended only for the use of the individual or
entity to whom/which it is addressed, and information contained in this
communication is privileged and confidential.  If the receiver of this
message is not the intended recipient, you are hereby notified that any
dissemination, distribution or copying of this communication is strictly

prohibited.  If you have received this communication in error, please
notify us at the above telephone number (so that we may correct our
internal records) and delete this communication without making a copy of

it.  Thank you.




jGuru Structs FAQ

2001-07-24 Thread Thomas E. Burns

Howdy,

We are considering starting a FAQ for Struts on jGuru 
(http://www.jguru.com).  I am curious if anyone on this list is interested 
in managing the FAQ.

jGuru is the most visited site for Java developers and we have very popular 
faqs for servlets, jsp and tomcat already:

http://www.jguru.com/faq/home.jsp?topic=JSP
http://www.jguru.com/faq/home.jsp?topic=Servlets
http://www.jguru.com/faq/home.jsp?topic=Tomcat

We have had a few requests for a Struts FAQ and I think it would be a good 
addition to the site.

Being a FAQ manager on jGuru takes about 1-2hrs/week.  We have created a 
simple interface for the manager to monitor new questions and "promote" 
questions that are appropriate for the FAQ.  The answers can come for the 
community or the FAQ manager.  We would $500/month to the faq manager for 
this FAQ.

You can contact me at [EMAIL PROTECTED] if you are interested.

Thanks,

Thomas E. Burns
CEO, jGuru
[EMAIL PROTECTED]
415.664.8974




Jyve FAQ

2001-03-26 Thread Ted Husted

The Jakarta Jyve FAQ is still ailing, but the rights on my own account
are now working, and I can add, modify, and delete entries. I've already
posted the "Quickstart FAQ", and will start adding some more questions
as time allows. Of course, we hope that the Jyve installation will
eventually be repaired so that we can all maintain this "wiki-style" in
the future. 

< http://jakarta.apache.org:8080/jyve-faq/Turbine/screen/DisplayProjects
>

-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 737-3463.
-- http://www.husted.com/about/struts/



Re: faq

2001-02-27 Thread Ted Husted

Unfortunately, there's not an official FAQ for Struts right now.
(Jakarta's Jyve
installation seems to be hopelessly broken.) 

I've started a draft of a "kickstart" FAQ at 

< http://husted.com/about/struts/kickstart.html >

in case that helps. 

-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 737-3463.
-- http://www.husted.com/about/struts/



faq

2001-02-26 Thread JeanX

Hi struts-user,



:=)
Best regards,
JeanX
pacificnet.com(GZ)




Re: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-09 Thread Andrew Semprebon

- Original Message -
From: "Mike Campbell" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, February 09, 2001 2:02 PM
Subject: Re: Ted's FAQ "What Web sites are already Powered by Struts?"


> Not to start any sort of editor Jihad, but emacs does all the above
> mentioned stuff (plus tons more) and it's free.  (Works on NT, too.)
>

I've tried on three different occasions to learn emacs, but it works so
darned different from everything else on MS Windows that it just never
clicked.

I too prefer using a programmers editor more than an IDE. Lately, I've been
using jedit, which is slow, but has better java support than my former
editor and is Open Source. Anyway, I'd be interested in hearing other
people's suggestions as well.




Re: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-09 Thread Mike Campbell

> "DW" == David Winterfeldt <[EMAIL PROTECTED]> writes:

>> + What development tool should I use?

DW> I like UltraEdit if you're on Windows as a editor. It is pretty
DW> light, but it does syntax highlighting for java, jsp, html, perl,
DW> sql, c++, etc. Opens any file (binary, text, unix-dos-windows line
DW> returns and file types) and can open files through FTP. It has a
DW> column mode which makes it nice to comment out a number of rows.
DW> It's only $30 dollars. I used to use Visual Cafe a lot, but it's
DW> nice to be in something that doesn't grind away at the hard drive
DW> and take up so much memory.

Not to start any sort of editor Jihad, but emacs does all the above
mentioned stuff (plus tons more) and it's free.  (Works on NT, too.)




RE: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-08 Thread jbirchfield


I have been hooked on Visual Slickedit since I tried it.  I have been a
long time lemmy/vi fan, and Slickedit is a dream come true for me.  It has
near perfect emulation of vi, and I love the autocomplete/symbol viewer
that comes with it.

James Birchfield

Ironmax
a better way to buy, sell and rent construction equipment
5 Corporate Center
9960 Corporate Campus Drive,
Suite 2000
Louisville, KY 40223


   
   
Dan Cancro 
   
   cc:   
   
 Subject: RE: Ted's FAQ "What Web sites 
are already Powered by Struts?"   
02/08/01   
   
11:30 AM   
   
Please 
   
respond to 
   
struts-user
   
   
   
   
   




I'd like to hear what you have to say about Visual Slick Edit, or any other
tools you use.  I'm collecting this sort of thing.

Dan

-Original Message-
From: Emaho, Ghoot [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 08, 2001 6:05 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Ted's FAQ "What Web sites are already Powered by Struts?"


With regard to the development tool to use, i would suggest making the
distinction between  - 'fullblown IDEs', 'programmer editors', and 'text
editors'.

I noticed on this thread earlier that most people seem to working with
fullblown IDEs which surprised me a little. Personally, I use Visual Slick
Edit, as does my team [16 developers]. I would class this tool as a
'programmers editor' - as distinct from JBuilder/Visual Cafe etc which I
consider fullblown IDE's. There are advantages and disadvantages to each
type of tool, but this is something rarely pointed out to people -
particularly the people asking the question in the first place !

As final choice is always personal, I think it would be helpful to point
out
the specific advantages to working with each type of tool in developing
struts and developing struts based applications - as there is sometimes a
mistaken assumption that the fullblown IDEs are more suitable. This really
depends on what kind of development you are doing - and what kind of
developer you are. [it doesn't depend on rights and wrongs !]

I felt moved to respond to this thread, as choice of development tool can
radically affect an individual's and/or team's performance and efficacy. In
my experience, this is an area somewhat neglected - save for the'HolyWar'
style of exchanges which do not interest me personally.

I would be happy to expand on our development tool of choice and it's
advantages in our context, if there is interest.

Ghoot Emaho

-Original Message-
From: Ted Husted [mailto:[EMAIL PROTECTED]]
Sent: 08 February 2001 12:49
To: Struts List
Subject: Re: Ted's FAQ "What Web sites are already Powered by Struts?"


I believe I've added the Powered by Struts sites submitted to this
thread so far. Thanks so much!

I've also fleshed out more of the "kickstart" FAQ at

< http://husted.com/about/struts/kickstart.html >.

There are still three questions on my list, in case anyone wants to
jump in.

+ What development tool should I use?
+ How do I develop a Struts application?
+ How do I troubleshoot a problem with a Struts application?

I've some notes about these at the bottom of the page, again, in case
anyone wants to jump in ;-).

When this is complete, I'll propose it for the documentation package.

Of course, any comments or suggestions would be welcome!


-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 425-0252; Fax 716 223-2506.
-- http://www.husted.com/about/struts/







Re: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-08 Thread David Winterfeldt

> + What development tool should I use?
I like UltraEdit if you're on Windows as a editor.  It
is pretty light, but it does syntax highlighting for
java, jsp, html, perl, sql, c++, etc.  Opens any file
(binary, text, unix-dos-windows line returns and file
types) and can open files through FTP.  It has a
column mode which makes it nice to comment out a
number of rows.  It's only $30 dollars.  I used to use
Visual Cafe a lot, but it's nice to be in something
that doesn't grind away at the hard drive and take up
so much memory.

David

--- Ted Husted <[EMAIL PROTECTED]> wrote:
> I believe I've added the Powered by Struts sites
> submitted to this
> thread so far. Thanks so much!
> 
> I've also fleshed out more of the "kickstart" FAQ at
> 
> 
> < http://husted.com/about/struts/kickstart.html >. 
> 
> There are still three questions on my list, in case
> anyone wants to
> jump in. 
> 
> + What development tool should I use?
> + How do I develop a Struts application?
> + How do I troubleshoot a problem with a Struts
> application?
> 
> I've some notes about these at the bottom of the
> page, again, in case
> anyone wants to jump in ;-).
> 
> When this is complete, I'll propose it for the
> documentation package. 
> 
> Of course, any comments or suggestions would be
> welcome!
> 
> 
> -- Ted Husted, Husted dot Com, Fairport NY USA.
> -- Custom Software ~ Technical Services.
> -- Tel 716 425-0252; Fax 716 223-2506.
> -- http://www.husted.com/about/struts/
> 


__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/



RE: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-08 Thread Dan Cancro

I'd like to hear what you have to say about Visual Slick Edit, or any other
tools you use.  I'm collecting this sort of thing.

Dan

-Original Message-
From: Emaho, Ghoot [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 08, 2001 6:05 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Ted's FAQ "What Web sites are already Powered by Struts?"


With regard to the development tool to use, i would suggest making the
distinction between  - 'fullblown IDEs', 'programmer editors', and 'text
editors'.

I noticed on this thread earlier that most people seem to working with
fullblown IDEs which surprised me a little. Personally, I use Visual Slick
Edit, as does my team [16 developers]. I would class this tool as a
'programmers editor' - as distinct from JBuilder/Visual Cafe etc which I
consider fullblown IDE's. There are advantages and disadvantages to each
type of tool, but this is something rarely pointed out to people -
particularly the people asking the question in the first place !

As final choice is always personal, I think it would be helpful to point out
the specific advantages to working with each type of tool in developing
struts and developing struts based applications - as there is sometimes a
mistaken assumption that the fullblown IDEs are more suitable. This really
depends on what kind of development you are doing - and what kind of
developer you are. [it doesn't depend on rights and wrongs !]

I felt moved to respond to this thread, as choice of development tool can
radically affect an individual's and/or team's performance and efficacy. In
my experience, this is an area somewhat neglected - save for the'HolyWar'
style of exchanges which do not interest me personally.

I would be happy to expand on our development tool of choice and it's
advantages in our context, if there is interest.

Ghoot Emaho

-Original Message-
From: Ted Husted [mailto:[EMAIL PROTECTED]]
Sent: 08 February 2001 12:49
To: Struts List
Subject: Re: Ted's FAQ "What Web sites are already Powered by Struts?"


I believe I've added the Powered by Struts sites submitted to this
thread so far. Thanks so much!

I've also fleshed out more of the "kickstart" FAQ at 

< http://husted.com/about/struts/kickstart.html >. 

There are still three questions on my list, in case anyone wants to
jump in. 

+ What development tool should I use?
+ How do I develop a Struts application?
+ How do I troubleshoot a problem with a Struts application?

I've some notes about these at the bottom of the page, again, in case
anyone wants to jump in ;-).

When this is complete, I'll propose it for the documentation package. 

Of course, any comments or suggestions would be welcome!


-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 425-0252; Fax 716 223-2506.
-- http://www.husted.com/about/struts/



RE: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-08 Thread Emaho, Ghoot

With regard to the development tool to use, i would suggest making the
distinction between  - 'fullblown IDEs', 'programmer editors', and 'text
editors'.

I noticed on this thread earlier that most people seem to working with
fullblown IDEs which surprised me a little. Personally, I use Visual Slick
Edit, as does my team [16 developers]. I would class this tool as a
'programmers editor' - as distinct from JBuilder/Visual Cafe etc which I
consider fullblown IDE's. There are advantages and disadvantages to each
type of tool, but this is something rarely pointed out to people -
particularly the people asking the question in the first place !

As final choice is always personal, I think it would be helpful to point out
the specific advantages to working with each type of tool in developing
struts and developing struts based applications - as there is sometimes a
mistaken assumption that the fullblown IDEs are more suitable. This really
depends on what kind of development you are doing - and what kind of
developer you are. [it doesn't depend on rights and wrongs !]

I felt moved to respond to this thread, as choice of development tool can
radically affect an individual's and/or team's performance and efficacy. In
my experience, this is an area somewhat neglected - save for the'HolyWar'
style of exchanges which do not interest me personally.

I would be happy to expand on our development tool of choice and it's
advantages in our context, if there is interest.

Ghoot Emaho

-Original Message-
From: Ted Husted [mailto:[EMAIL PROTECTED]]
Sent: 08 February 2001 12:49
To: Struts List
Subject: Re: Ted's FAQ "What Web sites are already Powered by Struts?"


I believe I've added the Powered by Struts sites submitted to this
thread so far. Thanks so much!

I've also fleshed out more of the "kickstart" FAQ at 

< http://husted.com/about/struts/kickstart.html >. 

There are still three questions on my list, in case anyone wants to
jump in. 

+ What development tool should I use?
+ How do I develop a Struts application?
+ How do I troubleshoot a problem with a Struts application?

I've some notes about these at the bottom of the page, again, in case
anyone wants to jump in ;-).

When this is complete, I'll propose it for the documentation package. 

Of course, any comments or suggestions would be welcome!


-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 425-0252; Fax 716 223-2506.
-- http://www.husted.com/about/struts/




Re: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-08 Thread Ted Husted

I believe I've added the Powered by Struts sites submitted to this
thread so far. Thanks so much!

I've also fleshed out more of the "kickstart" FAQ at 

< http://husted.com/about/struts/kickstart.html >. 

There are still three questions on my list, in case anyone wants to
jump in. 

+ What development tool should I use?
+ How do I develop a Struts application?
+ How do I troubleshoot a problem with a Struts application?

I've some notes about these at the bottom of the page, again, in case
anyone wants to jump in ;-).

When this is complete, I'll propose it for the documentation package. 

Of course, any comments or suggestions would be welcome!


-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 425-0252; Fax 716 223-2506.
-- http://www.husted.com/about/struts/





Re: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-08 Thread eirik . lygre

Struts is currently live at http://adminweb.enitel.no and the corresponding demo site http://demo.adminweb.enitel.no.

The iKnowBase product (more information at http://www.iknowbase.com) is also being refactored to use Struts.

Eirik

++
Eirik Lygre
[EMAIL PROTECTED]
e-vita as, Stortorvet 3, Oslo
Mobil: (+47) 905 66476
Fax: (+47) 23 35 70 51







David Winterfeldt <[EMAIL PROTECTED]>
07.02.2001 22:51
Please respond to struts-user

        
        To:        [EMAIL PROTECTED]
        cc:        
        Subject:        Re: Ted's FAQ "What Web sites are already Powered by Struts?"


The registration and logon section of this site use
struts.  It has just recently gone live.

http://www.clickstarttutoring.com

David

--- Dan Connelly <[EMAIL PROTECTED]> wrote:
>   a.. Brewtrade - http://java-genius.com/ 
>   b.. TeaTimeJ -
> http://www.webappcabaret.com/teatimej/ 
> What!  Only two public sites powered by Struts? 
> And, java-genius.com always gives me a DNS error
> anyway.  So there's really only one site in this
> list that I would dare suggest to people who ask me
> about Struts in the real world.
> 
> There must be more public sites than this.   There's
> http://jakarta.apache.org/struts  at least (although
> it doesn't do anything showy).
> 
> Please help me explain to MVC-clueless colleagues
> and bosses why I am spending so much time getting
> into Jakarta Struts (as opposed to the superficially
> similar, released, commercial, freely downloadable
> JSP taglibs, like Allaire's JRun Tag Library or
> WDIG's TeaServlets).     Please post up some
> additions to Ted's list.
> 
> Also, how about adding more "Struts competitors" to
> my list of two?  (And, while you're at it, do the
> competitive analysis.)
> 
> Dan Connelly  (who is not Dan Connolly, W3C)
> 
> 
> 


__
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/




Re: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-07 Thread David Winterfeldt

The registration and logon section of this site use
struts.  It has just recently gone live.

http://www.clickstarttutoring.com

David

--- Dan Connelly <[EMAIL PROTECTED]> wrote:
>   a.. Brewtrade - http://java-genius.com/ 
>   b.. TeaTimeJ -
> http://www.webappcabaret.com/teatimej/ 
> What!  Only two public sites powered by Struts? 
> And, java-genius.com always gives me a DNS error
> anyway.  So there's really only one site in this
> list that I would dare suggest to people who ask me
> about Struts in the real world.
> 
> There must be more public sites than this.   There's
> http://jakarta.apache.org/struts  at least (although
> it doesn't do anything showy).
> 
> Please help me explain to MVC-clueless colleagues
> and bosses why I am spending so much time getting
> into Jakarta Struts (as opposed to the superficially
> similar, released, commercial, freely downloadable
> JSP taglibs, like Allaire's JRun Tag Library or
> WDIG's TeaServlets). Please post up some
> additions to Ted's list.
> 
> Also, how about adding more "Struts competitors" to
> my list of two?  (And, while you're at it, do the
> competitive analysis.)
> 
> Dan Connelly  (who is not Dan Connolly, W3C)
> 
> 
> 


__
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/



Re: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-07 Thread jbirchfield


Yes, we use .ojsp and .sjsp for 'open' and 'secured' portions of the site.
They get mapped to one of two controllers.

James Birchfield

Ironmax
a better way to buy, sell and rent construction equipment
5 Corporate Center
9960 Corporate Campus Drive,
Suite 2000
Louisville, KY 40223


   
   
"Ted Husted"   
   
   
ted.com> cc:   
   
         Subject: Re: Ted's FAQ "What Web sites 
are already Powered by Struts?"   
02/07/01   
   
03:07 PM   
   
Please 
   
respond to 
   
struts-user
   
   
   
   
   




On 2/7/2001 at 2:26 PM [EMAIL PROTECTED] wrote:

>We use struts in portions of the Ironmax website
(http://www.ironmax.com)
>Namely the irst step in the RFQ process, and we use struts in all of
our
>informational products.

Are the links to ".ojsp" files going through the controller (e.g. ".do"
files)?

-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 425-0252; Fax 716 223-2506.
-- http://www.husted.com/about/struts/









Re: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-07 Thread Ted Husted

On 2/7/2001 at 2:26 PM [EMAIL PROTECTED] wrote:

>We use struts in portions of the Ironmax website
(http://www.ironmax.com)
>Namely the irst step in the RFQ process, and we use struts in all of
our
>informational products.

Are the links to ".ojsp" files going through the controller (e.g. ".do"
files)?

-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 425-0252; Fax 716 223-2506.
-- http://www.husted.com/about/struts/





Re: Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-07 Thread jbirchfield


We use struts in portions of the Ironmax website (http://www.ironmax.com)
Namely the irst step in the RFQ process, and we use struts in all of our
informational products.

James Birchfield
Senior Engineer
Ironmax
a better way to buy, sell and rent construction equipment
5 Corporate Center
9960 Corporate Campus Drive,
Suite 2000
Louisville, KY 40223


   
 
"Dan Connelly" 
 

 
lphia.net> cc: 
 
   Subject: Ted's FAQ "What Web sites are 
already Powered by Struts?"   
02/07/01 02:16 
 
PM 
 
Please respond 
 
to struts-user 
 
   
 
   
 




 Brewtrade - http://java-genius.com/
 TeaTimeJ - http://www.webappcabaret.com/teatimej/
What!  Only two public sites powered by Struts?  And, java-genius.com
always gives me a DNS error anyway.  So there's really only one site in
this list that I would dare suggest to people who ask me about Struts in
the real world.

There must be more public sites than this.   There's
http://jakarta.apache.org/struts  at least (although it doesn't do anything
showy).

Please help me explain to MVC-clueless colleagues and bosses why I am
spending so much time getting into Jakarta Struts (as opposed to the
superficially similar, released, commercial, freely downloadable JSP
taglibs, like Allaire's JRun Tag Library or WDIG's TeaServlets). Please
post up some additions to Ted's list.

Also, how about adding more "Struts competitors" to my list of two?  (And,
while you're at it, do the competitive analysis.)

Dan Connelly  (who is not Dan Connolly, W3C)








Ted's FAQ "What Web sites are already Powered by Struts?"

2001-02-07 Thread Dan Connelly




  Brewtrade - http://java-genius.com/ 
  TeaTimeJ - http://www.webappcabaret.com/teatimej/ 
  
What!  Only two public sites powered by Struts?  And, 
java-genius.com always gives me a DNS error anyway.  So there's really only 
one site in this list that I would dare suggest to people who ask me 
about Struts in the real world.
 
There must be more public sites than this.   There's http://jakarta.apache.org/struts  at 
least (although it doesn't do anything showy).
 
Please help me explain to MVC-clueless colleagues and bosses why I am 
spending so much time getting into Jakarta Struts (as opposed to the 
superficially similar, released, commercial, freely downloadable JSP 
taglibs, like Allaire's JRun Tag Library or WDIG's 
TeaServlets). Please post up some additions to 
Ted's list.
 
Also, how about adding more "Struts competitors" to my 
list of two?  (And, while you're at it, do the competitive 
analysis.)
 
Dan Connelly  (who is not Dan Connolly, W3C)
 
 


Re: Struts and XHTML (and FAQ)

2001-02-06 Thread Ted Husted

On 2/6/2001 at 3:49 PM Clarke, Agnes wrote:
>Finally, where is the STRUTS FAQ page?

I've started a draft of a "obligatory kickstart FAQ" at 

< http://www.husted.com/about/struts/kickstart.html >

and am taking notes for something more comprehensive. 

If I ever get enough of it done, we can propose it for the
documentation. 

If anyone wants to pickup on one of the listed questions, don't
hesitate!

Unfortunately, the interactive Jakarta FAQ-o-Matic is still out of
commission. I was able to have them open up a Struts category, but my
account doesn't have sufficient karma to add questions :-(



-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 425-0252; Fax 716 223-2506.
-- http://www.husted.com/about/struts/





Re: FAQ: where on earth does ActionServlet log problems to?

2000-12-08 Thread Laird Nelson

- Original Message -
From: "Craig R. McClanahan" <[EMAIL PROTECTED]>
> Welcome to the wonderful world of Windows.  The problem is that
Windows does not
> update the file size of a directory entry until you close the file --
so you
> will have to shut down Tomcat to see the actual text of the messages.

I should have *known* it was another colossal Gates & Co. f***up.  I
estimate I've spent around 30-40% of my programming career working
around droolingly idiotic disasters perpetrated on the unsuspecting
populace by the morons in Redmond.

Thanks for the info.  ('Course now it's just telling me that
ActionServlet couldn't create a new ActionInstance--no reason given--but
that's something I can probably figure out myself.  I *will* get this
damn thing to say hello, damn it!)

Back to code digging.

Cheers,
Laird

--
W: [EMAIL PROTECTED] / P: [EMAIL PROTECTED]
http://www.amherst.edu/~ljnelson/
Good, cheap, fast: pick two.





FAQ: where on earth does ActionServlet log problems to?

2000-12-08 Thread Laird Nelson

I've got my ActionServlet set up with a debug level of 2 (I left that
parameter as it was set in the examples).  I'm running with Struts 0.5
and Tomcat 3.2.  I've been working for 8 hours straight trying to get a
basic web app using struts to come up and show me a hello world page in
response to a simple, one-parameter form submission.  I'm getting 500
errors, and the servlet.log and tomcat.log are empty.  So is the DOS box
(yes, unfortunately I'm on Window$ 95) that tomcat starts up in.

I'm stumped as to find out more information about my problem.  Oh please
help.  :-)

Humbly awaiting wisdom,
Laird

--
W: [EMAIL PROTECTED] / P: [EMAIL PROTECTED]
http://www.amherst.edu/~ljnelson/
Good, cheap, fast: pick two.





Re: FAQ: where on earth does ActionServlet log problems to?

2000-12-08 Thread Craig R. McClanahan

Laird Nelson wrote:

> I've got my ActionServlet set up with a debug level of 2 (I left that
> parameter as it was set in the examples).  I'm running with Struts 0.5
> and Tomcat 3.2.  I've been working for 8 hours straight trying to get a
> basic web app using struts to come up and show me a hello world page in
> response to a simple, one-parameter form submission.  I'm getting 500
> errors, and the servlet.log and tomcat.log are empty.  So is the DOS box
> (yes, unfortunately I'm on Window$ 95) that tomcat starts up in.
>
> I'm stumped as to find out more information about my problem.  Oh please
> help.  :-)
>

Welcome to the wonderful world of Windows.  The problem is that Windows does not
update the file size of a directory entry until you close the file -- so you
will have to shut down Tomcat to see the actual text of the messages.

>
> Humbly awaiting wisdom,

Linux :-) :-)

>
> Laird
>

Craig