Re: Cannot find global ActionForward for name XXXXX

2002-11-24 Thread David M. Karr
> "Yogesh" == Yogesh Kulkarni <[EMAIL PROTECTED]> writes:

Yogesh> Dear James Mitchell
Yogesh>   That is not the case. The same set of class files, xml files work on 
windows NT with tomcat server, but gives that error on AIX platform with tomcat 
server.I checked the struts-config.xml also. I have following entries in 
struts-config.xml. 
Yogesh>   I will be thankful to you if you help me getting rid of this error.

Yogesh>  
Yogesh> 
 
Yogesh>   

Yogesh> 

Yogesh> 

Yogesh> type="com.ideas.bar.OverrideScreen.OverrideAction"
Yogesh>name="OverrideForm"
Yogesh>scope="request"
Yogesh>input="/Override.jsp">
Yogesh>  
Yogesh>  
Yogesh> 
Yogesh> 

Check all of your file names, and all of the references to your file names, and
make sure they are all in the same case.  Windows is generally
case-insensitive, and Unix is case-sensitive.  Java and Tomcat are
case-sensitive in everything they can control, but some things they cannot
control.

-- 
===
David M. Karr  ; Java/J2EE/XML/Unix/C++
[EMAIL PROTECTED]   ; SCJP



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: Tiles and parameters...

2002-11-24 Thread David M. Karr
> "Craig" == Craig Tataryn <[EMAIL PROTECTED]> writes:

Craig> I am using a tiles for a project where I have the following scenario:
Craig> Forecast for Field 1

Craig> The action for forecast.do, simply does some data extraction and then 
returns a
Craig> forward to a tiles def which displays this data.

Craig> Here is what the existing tiles def looks like:

Craig> 
Craig>
Craig>
Craig> 

Craig> However, each of these jsp pages really should be passed the fieldid 
parameter
Craig> that the Forecast action was passed.

Craig> Is there anyway to get my Forecast action to pass this fieldid parameter to 
the
Craig> pages setup in the tiles def it is going to forward to?  Or is there any 
other
Craig> technique you might suggest as a workaround (don't particularly want to 
throw
Craig> things in the session as I want the fieldid to be at the request level so 
users
Craig> can see forecasts for different fields at the same time).

If you really are just doing forwards and includes, and no redirects, your
request parameters should be available to any JSP page that is part of the
request.

-- 
===
David M. Karr  ; Java/J2EE/XML/Unix/C++
[EMAIL PROTECTED]   ; SCJP



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: referencing html / static elements from outside an application

2002-11-24 Thread Rachel
At 18:34 23/11/2002 -0500, you wrote:

I believe you can use



I don't know how it iteracts with tiles, but I believe it works.


ideally I wanted to continue to use the templates - also this method would 
mean putting that tag on every page whereas I would like to be able to 
declare the location of the directory where the static pages are living 
once and then somehow use that in the reference, so if I move that location 
I can then just change the one reference as opposed to search and replacing 
through all my files.

Rachel


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 



URL encoding

2002-11-24 Thread Alex McLintock
I am trying to insert a struts value into a parameter in a URL. However I 
need to URL encode the value because else characters like " " will confuse 
Netscape.
Is there a "proper" way of doing this in Struts?

I am currently doing something like this


<%@ page import="java.net.URLEncoder" %>







But I am not happy about itI want as little java in the jsp template as 
possible.

Alex Mc







Openweb Analysts Ltd, London.
Software For Complex Websites http://www.OWAL.co.uk/
Open Source Software Companies please register here 
http://www.OWAL.co.uk/oss_support/


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 



Re: URL encoding

2002-11-24 Thread kiuma
Your prblem intered me too, especially because java code inside the page 
makes the code and indentation messy:

So I've found this link 
http://www.basebeans.com/standard-examples/import/index.html

There is the solution you are looking for, and other funny tricks.

regards,
kiuma

P.S. : remember to use struts-el !!
I'm using them and I'm Very happy with!


Alex McLintock wrote:

I am trying to insert a struts value into a parameter in a URL. 
However I need to URL encode the value because else characters like " 
" will confuse Netscape.
Is there a "proper" way of doing this in Struts?

I am currently doing something like this


<%@ page import="java.net.URLEncoder" %>







But I am not happy about itI want as little java in the jsp 
template as possible.

Alex Mc







Openweb Analysts Ltd, London.
Software For Complex Websites http://www.OWAL.co.uk/
Open Source Software Companies please register here 
http://www.OWAL.co.uk/oss_support/


--
To unsubscribe, e-mail:   

For additional commands, e-mail: 


.




--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: struts-user Digest 19 Nov 2002 16:44:11 -0000 Issue 2291

2002-11-24 Thread James Turner
On Tuesday, November 19th, [EMAIL PROTECTED] wrote:
> Hi all,
>
> here is a list of struts books available, without being 
> biased, can anyone tell me which books will be worth buying, 
> and why? I'm not  new to struts, although i haven't been using 
> it for a year or so. I need to have a decent book to bring me 
> up to date with the latest struts goodies. Also, preferably
> with some advanced struts stuff.

Just to echo what others have said, you probably need to buy more than
one to get the full picture.  For example, Kevin and I wrote "Struts
Kick Start" to very much be a "get going with Struts fast" type of book.
Toward that end, we explictly don't get into things like replacing the
command processor, since we felt that that kind of "under the hood"
information can distract from learning the tool initially.  So clearly
Ted or Chuck will probably do a better job of explaining the
implementation details.

On the other hand, we try to remain grounded in application development,
so we probably spend more time showing how to use Struts in live example
applications, and how to integrate it into web services and EJB
implementations.

Also, because Struts is changing as we speak, the later a book came out
(assuming relatively equal production times), the more up to date it
might be. (Note that since our book is coming out last, this can rightly
be construed as being handed lemons and making lemondade...) 

In any event, the best solution (as always) is to sit down with a couple
of them in the B&N café and see which one fits your style.  There
probably isn't one "best book" for everyone.

James



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: URL encoding

2002-11-24 Thread David M. Karr
> "Alex" == Alex McLintock <[EMAIL PROTECTED]> writes:

Alex> I am trying to insert a struts value into a parameter in a URL. However I 
need
Alex> to URL encode the value because else characters like " " will confuse 
Netscape.

Alex> Is there a "proper" way of doing this in Struts?

Alex> I am currently doing something like this

Alex> 
Alex> <%@ page import="java.net.URLEncoder" %>
Alex> 

Alex>  

Alex>  
Alex>  

Alex> But I am not happy about itI want as little java in the jsp template as
Alex> possible.

explore the "" tag.  Use the attributes which specify a Map to add
the attributes.  It will URLEncode the entire generated URL.

-- 
===
David M. Karr  ; Java/J2EE/XML/Unix/C++
[EMAIL PROTECTED]   ; SCJP



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




bean:write and MessageResources

2002-11-24 Thread Victor Batista
Hello!
How can I print the value of a property (in one iteration) whose value is a
key to a message stored on the application MessageResources.





Object Xpto has a method getFoo() which returns a String which is a key to
a MessageResources message.
How can I do this?

Thanks in advance,
Victor Batista



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: bean:write and MessageResources

2002-11-24 Thread David M. Karr
> "Victor" == Victor Batista <[EMAIL PROTECTED]> writes:

Victor> Hello!
Victor> How can I print the value of a property (in one iteration) whose value 
is a
Victor> key to a message stored on the application MessageResources.

Victor> 
Victor> 
Victor> 

Victor> Object Xpto has a method getFoo() which returns a String which is a 
key to
Victor> a MessageResources message.
Victor> How can I do this?

Do you want to print the key, or the message stored at the key?  I would think
the latter is more likely.  This is exactly what the "" tag
does.  Use the "name" and "property" attributes.  I got this straight from the
Struts API documentation.

-- 
===
David M. Karr  ; Java/J2EE/XML/Unix/C++
[EMAIL PROTECTED]   ; SCJP



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




delay user input validate....

2002-11-24 Thread Doug Dates
Hi, All:

I have a problem related to user input validation. I searched on the web, it seems 
that I couldn't get a clue. Hopefully, you can help me out.

I have two screens: screen1 and screen2. The two screens are used for new user 
registration.

On screen1, there are three fields: userName, password and confirmPassword. There is 
also a "Continue" button on the screen1.--Validation rule: userName should be 
unique. password and confirmPassword should be same.

On screen2, there are user imformation fields, such as street, city, etc. And there is 
a  "Submit" button.

When user click on "Continue" on the screen1, the screen2 will be displayed, even 
though there are input errors on screen1. The validation of the input on screen1 will 
be delayed until user click "Submit" button on screen2. If one(or all) of the fields 
are invalid (on screen1), the screen1 will be displayed with original input, plus 
relevant error message. If there are also error messages on screen2, their display 
should be delayed until the user fixed the errors on screen1, click "continue" to go 
to screen2(fields on screen2 prepopulated with original input) clicks "Submit", in 
this case, controls back to screen2 with error messgaes and pre-entered data.

The above senario is business required. 

How can I achieve this using struts(1.1.b). I know in struts, we can use actionForm, 
validation, struts-config.xml, and etc. But how should I combine them together to 
acheive the above senario. I really need your help. Thank you in advance for your help.

Sincerely,

Doug




Re: Tiles and parameters...

2002-11-24 Thread Craig Tataryn
Well, I am doing forwards from within my Action class by returning an 
ActionForward object to one of my tiles defs (site.forecast).  So for 
instance, in displayChartSummary.jsp, if I put a 
"request.getParameter("fieldid") an error is raised stating:

/form/displayChartSummary.jsp(16,75) Attribute fieldid has no value'

So it appears that the request parameters do not get passed onto the tiles.  
Which brings me back to my original question, how do I pass the paramters on 
to the tiles, or does anyone have an acceptable work around that does not 
involve the user session.

Thanks,

Craig.

From: [EMAIL PROTECTED] (David M. Karr)
Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: Tiles and parameters...
Date: 24 Nov 2002 00:16:06 -0800


Craig> 
Craig>
Craig>
Craig> 

If you really are just doing forwards and includes, and no redirects, your
request parameters should be available to any JSP page that is part of the
request.

--
===
David M. Karr  ; Java/J2EE/XML/Unix/C++
[EMAIL PROTECTED]   ; SCJP



--
To unsubscribe, e-mail:   

For additional commands, e-mail: 



Craig W. Tataryn
Programmer/Analyst
Compuware

_
STOP MORE SPAM with the new MSN 8 and get 2 months FREE* 
http://join.msn.com/?page=features/junkmail


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 



Re: i18n, resource bundles, ...

2002-11-24 Thread Antoni Reus
Hi, take a look at

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11852


A Divendres 22 Novembre 2002 21:16, Joshua McCulloch va escriure:
> That shouldn't be any different than
> 
>
> I forgot to mention the exception occuring with that
> statement. It looks like the magic happening in the
> java.text.* classes with a {0,number,currency}
> argument requires a java.lang.Number.
>
> org.apache.jasper.JasperException: Cannot format given
> Object as a Number
>   at
> org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:
>248) at
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
>
>
> <...etc...>
>
> root cause
>
> java.lang.IllegalArgumentException: Cannot format
> given Object as a Number
>   at
> java.text.NumberFormat.format(NumberFormat.java:204)
>   at java.text.Format.format(Format.java:116)
>   at
> java.text.MessageFormat.format(MessageFormat.java:737)
>   at
> java.text.MessageFormat.format(MessageFormat.java:486)
>   at java.text.Format.format(Format.java:116)
>
> --- James Mitchell <[EMAIL PROTECTED]> wrote:
> > > it won't compile, its expecting a
> >
> > java.lang.String:
> >
> > try this...
> >
> >   >arg0="<%= new
> > Double("1234.56").toString() %>"/>
> >
> >
> >
> > --
> > James Mitchell
> > Software Engineer/Struts Evangelist
> > http://www.open-tools.org
> >
> > "If you were plowing a field, which would you rather
> > use? Two strong oxen or
> > 1024 chickens?"
> > - Seymour Cray (1925-1996), father of supercomputing
> >
> > > -Original Message-
> > > From: Joshua McCulloch
> >
> > [mailto:[EMAIL PROTECTED]]
> >
> > > Sent: Friday, November 22, 2002 2:43 PM
> > > To: [EMAIL PROTECTED]
> > > Subject: i18n, resource bundles,
> >
> > ...
> >
> > > Can someone please help me understand how to use
> > > arguments for  ?
> > >
> > > I have an ApplicationResource with the following
> > > message:
> > >
> > > submit.price=It costs {0,number,currency}!
> > >
> > > How can I display that from a JSP? The following
> > > doesnt work because arg0 is a String.
> > > 
> > >
> > > I havent used JSP tags much.
> > > http://husted.com/struts/tips/004.html shows the
> > > following syntax:  > > key="ordering.authorized.range.staff" arg0='<%=
> > > config.getStaffAuthAmnt() %>'/>
> > > I tried arg0="<%= new Double("1234.56") %>" and it
> > > wont compile, its expecting a java.lang.String:
>
> C:\tomcat\work\Standalone\localhost\josh\submit_jsp.java:134:
> > > setArg0(java.lang.String) in
> > > org.apache.struts.taglib.bean.MessageTag cannot be
> > > applied to (java.lang.Double)
> > >   _jspx_th_bean_message_11.setArg0( new
> > > Double("1234.56") );
> > >
> > > What am I doing wrong?
> > >
> > > THANKS!
> > > - Josh
>
> __
> Do you Yahoo!?
> Yahoo! Mail Plus – Powerful. Affordable. Sign up now.
> http://mailplus.yahoo.com


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Does html:form tag post to control servlet using encodedURL?

2002-11-24 Thread Chris Ruegger

I'm getting routed to the wrong server when I use html: form
action=/myAction
in a weblogic clustered environment. Does the html:form
tag POST to the Struts servlet using response.encodeURL
as the URL posted to?

How should I code my html:form tags in JSPs in
clustered environment to ensure the user keeps getting
routed to the same server they were intially routed
to in the cluster?

thanks



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




disabling cookies in IE6.0

2002-11-24 Thread Chris Ruegger
I can't find the panel in IE6.0 to disable cookies.
How do I turn of cookies with this version
of the browser? I want to test URL
re-writing.



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




[ANNOUNCE] O'Reilly Struts Book Now Available

2002-11-24 Thread cava1801
I just wanted to let everyone know that my Struts book published by O’Reilly is 
now available and shipping. You can get it from Amazon, Bookpool, etc. 

Again I wanted to say thanks to all of those who reviewed and provided feedback on the 
material. It was a great aide for me to get that sort of instant feedback, both 
positive and negative. As Craig and Ted have said many times, the Struts mailing list 
is very unique and full of really great people. I hope it adds value to the community.

Thanks to all,

Chuck Cavaness
Author - Programming Jakarta Struts
ISBN: 0596003285

Amazon
http://www.amazon.com/exec/obidos/ASIN/0596003285/qid=1038174812/sr=2-1/ref=sr_2_1/104-4064794-3140717

Bookpool
http://www.bookpool.com/.x/6kq93k1kim/sm/0596003285

O’Reilly
http://www.oreilly.com/catalog/jakarta


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: [ANNOUNCE] O'Reilly Struts Book Now Available

2002-11-24 Thread Alex McLintock
At 00:54 25/11/02, [EMAIL PROTECTED] wrote:

I just wanted to let everyone know that my Struts book published by 
O'Reilly is
now available and shipping. You can get it from Amazon, Bookpool, etc.

Chuck Cavaness
Author - Programming Jakarta Struts
ISBN: 0596003285


I have a copy of this and have been reading it for a few days for review on 
http://news.DiverseBooks.com/

So far I am impressed - it looks like a competant piece of work. It doesn't 
explain why Struts makes some things harder than they should be but that is 
hardly Chuck's fault.

If there are any questions about the book which you would like me to answer 
in my review then please give me a shout...

Alex McLintock





Openweb Analysts Ltd, London.
Software For Complex Websites http://www.OWAL.co.uk/
Open Source Software Companies please register here 
http://www.OWAL.co.uk/oss_support/


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 



RE: [ANNOUNCE] O'Reilly Struts Book Now Available

2002-11-24 Thread Jonathan Holloway
Just out of interest Chuck, are the examples that are mentioned in your
book in particular the online banking example and the virtual shopping
example available in any form.  I can't seem to see the examples to
download from the Oreilly website.

Thanks,
Jonathan Holloway.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: 25 November 2002 00:54
To: [EMAIL PROTECTED]
Subject: [ANNOUNCE] O'Reilly Struts Book Now Available

I just wanted to let everyone know that my Struts book published by
O'Reilly is 
now available and shipping. You can get it from Amazon, Bookpool, etc. 

Again I wanted to say thanks to all of those who reviewed and provided
feedback on the material. It was a great aide for me to get that sort of
instant feedback, both positive and negative. As Craig and Ted have said
many times, the Struts mailing list is very unique and full of really
great people. I hope it adds value to the community.

Thanks to all,

Chuck Cavaness
Author - Programming Jakarta Struts
ISBN: 0596003285

Amazon
http://www.amazon.com/exec/obidos/ASIN/0596003285/qid=1038174812/sr=2-1/
ref=sr_2_1/104-4064794-3140717

Bookpool
http://www.bookpool.com/.x/6kq93k1kim/sm/0596003285

O'Reilly
http://www.oreilly.com/catalog/jakarta


--
To unsubscribe, e-mail:

For additional commands, e-mail:




--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: disabling cookies in IE6.0

2002-11-24 Thread James Mitchell
Hi Chris, that's a tough one.

Try my home page:
http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=how+to+disable+cookies+in
+ie6



--
James Mitchell
Software Engineer/Struts Evangelist
http://www.open-tools.org

"If you were plowing a field, which would you rather use? Two strong oxen or
1024 chickens?"
- Seymour Cray (1925-1996), father of supercomputing


> -Original Message-
> From: Chris Ruegger [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, November 24, 2002 7:39 PM
> To: Struts Users Mailing List
> Subject: disabling cookies in IE6.0
>
>
> I can't find the panel in IE6.0 to disable cookies.
> How do I turn of cookies with this version
> of the browser? I want to test URL
> re-writing.
>
>
>
> --
> To unsubscribe, e-mail:   
> For additional commands, e-mail: 
>
>


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Learning Struts

2002-11-24 Thread Eric Tse
Dear all,

I am interested in learning struts framework and tried to search some articles and 
kick-start my journey. However, it seems to me that all of the tutorial gave me much 
information for the MVC architecture which I know already.

Do you have any simple war/jar file for my learning? I read through the 
struts-example.war already. It does not give me guidance to me to learn. Anyone can 
help?

Thanks a lot.

Eric


Re: RE: [ANNOUNCE] O'Reilly Struts Book Now Available

2002-11-24 Thread Chuck Cavaness
Yes they will be. They have asked me to put those together and they are planning to 
make them available for download. The files will probably be up by the end of the week.

Chuck

> 
> From: "Jonathan Holloway" <[EMAIL PROTECTED]>
> Date: 2002/11/24 Sun PM 08:48:53 EST
> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
> Subject: RE: [ANNOUNCE] O'Reilly Struts Book Now Available
> 
> Just out of interest Chuck, are the examples that are mentioned in your
> book in particular the online banking example and the virtual shopping
> example available in any form.  I can't seem to see the examples to
> download from the Oreilly website.
> 
> Thanks,
> Jonathan Holloway.
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
> Sent: 25 November 2002 00:54
> To: [EMAIL PROTECTED]
> Subject: [ANNOUNCE] O'Reilly Struts Book Now Available
> 
> I just wanted to let everyone know that my Struts book published by
> O'Reilly is 
> now available and shipping. You can get it from Amazon, Bookpool, etc. 
> 
> Again I wanted to say thanks to all of those who reviewed and provided
> feedback on the material. It was a great aide for me to get that sort of
> instant feedback, both positive and negative. As Craig and Ted have said
> many times, the Struts mailing list is very unique and full of really
> great people. I hope it adds value to the community.
> 
> Thanks to all,
> 
> Chuck Cavaness
> Author - Programming Jakarta Struts
> ISBN: 0596003285
> 
> Amazon
> http://www.amazon.com/exec/obidos/ASIN/0596003285/qid=1038174812/sr=2-1/
> ref=sr_2_1/104-4064794-3140717
> 
> Bookpool
> http://www.bookpool.com/.x/6kq93k1kim/sm/0596003285
> 
> O'Reilly
> http://www.oreilly.com/catalog/jakarta
> 
> 
> --
> To unsubscribe, e-mail:
> 
> For additional commands, e-mail:
> 
> 
> 
> 
> --
> To unsubscribe, e-mail:   
> For additional commands, e-mail: 
> 
> 


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: Learning Struts

2002-11-24 Thread Vincent Stoessel
You are in the very fortunate position right now. Before this month
there was very little published about struts. Now there are Wiley ,
Manning and Orielly books on the subject. Go to your favorite online
bookseller and type in "jakarta struts" or "java struts" and you will be
rewarded.

Eric Tse wrote:
> Dear all,
> 
> I am interested in learning struts framework and tried to search some articles and 
>kick-start my journey. However, it seems to me that all of the tutorial gave me much 
>information for the MVC architecture which I know already.
> 
> Do you have any simple war/jar file for my learning? I read through the 
>struts-example.war already. It does not give me guidance to me to learn. Anyone can 
>help?
> 
> Thanks a lot.
> 
> Eric





smime.p7s
Description: S/MIME Cryptographic Signature


Re: Learning Struts

2002-11-24 Thread David M. Karr
> "Eric" == Eric Tse <[EMAIL PROTECTED]> writes:

Eric> Dear all,
Eric> I am interested in learning struts framework and tried to search some 
articles and kick-start my journey. However, it seems to me that all of the tutorial 
gave me much information for the MVC architecture which I know already.

Eric> Do you have any simple war/jar file for my learning? I read through the 
struts-example.war already. It does not give me guidance to me to learn. Anyone can 
help?

>From the top-level of the Struts home page, click on "Resources".  This will
provide you with many links to articles and tutorials about Struts.

-- 
===
David M. Karr  ; Java/J2EE/XML/Unix/C++
[EMAIL PROTECTED]   ; SCJP



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: [ANNOUNCE] O'Reilly Struts Book Now Available

2002-11-24 Thread Wendy Smoak
Chuck wrote:
> I just wanted to let everyone know that my Struts book published by
O'Reilly is 
> now available and shipping. You can get it from Amazon, Bookpool, etc. 

Any idea if/when they will put it on Safari (http://safari.oreilly.com)?
Technical books go out of date so fast that I like to make sure it's truly
classic before adding it to the collection. Besides, work pays for the
Safari subscription.  ;)

-- 
Wendy Smoak
Application Systems Analyst, Sr.
ASU IA Information Resources Management 




Re: Learning Struts

2002-11-24 Thread Bala Murali
Hi Eric,

 For very basic step-by-step guide(with complete example) the following is a good 
one.
http://rzserv2.fhnon.de/~lg002556/struts/Doku.html

Warm rgds,
===
Bala Murali
Technical consultant - J2EE
http://indiago.blogspot.com
===

> "Eric" == Eric Tse <[EMAIL PROTECTED]> writes:

Eric> Dear all,
Eric> I am interested in learning struts framework and tried to search some 
articles and kick-start my journey. However, it seems to me that all of the tutorial 
gave me much information for the MVC architecture which I know already.

Eric> Do you have any simple war/jar file for my learning? I read through the 
struts-example.war already. It does not give me guidance to me to learn. Anyone can 
help?

>From the top-level of the Struts home page, click on "Resources".  This will
provide you with many links to articles and tutorials about Struts.

-- 
===
David M. Karr  ; Java/J2EE/XML/Unix/C++
[EMAIL PROTECTED]   ; SCJP


Confidential information may be contained in this e-mail and any files transmitted 
with it ('Message'). If you are not the addressee indicated in this Message (or 
responsible for delivery of this Message to such person), you are hereby notified that 
any dissemination, distribution, printing or copying of this Message or any part 
thereof is strictly prohibited. In such a case, you should delete this Message 
immediately and advise the sender by return e-mail. Opinions, conclusions and other 
information in this Message that do not relate to the official business of Maxis shall 
be understood as neither given nor endorsed by Maxis.


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 


[Struts Tip] #17 - Don't settle for

2002-11-24 Thread Ted Husted
Many Struts applications can get by with a simple



tag at the top of a page. If any error messages are present, it's 
this tag's job to print them all out. To help prettify the output, 
 checks for errors.header and errors.footer messages 
in the application resources. If found, the tag prints these 
before and after the block of messages. A common setup is:

[more ... ]




--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




java.sql.Date again!!

2002-11-24 Thread Slava_L
Well, are there any changes about java.sql.Date-in-Struts problem?
What is the best appropriate way to solve the representation poblem (i.e. when Date 
converts in non-localezed string like -MM-DD)
? 



Re: java.sql.Date again!!

2002-11-24 Thread David Graham
What exactly is this problem?  The JSTL has formatting tags that handle this 
if you can't find a Struts solution.

David






From: "Slava_L" <[EMAIL PROTECTED]>
Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Subject: java.sql.Date again!!
Date: Mon, 25 Nov 2002 13:11:57 +0800

Well, are there any changes about java.sql.Date-in-Struts problem?
What is the best appropriate way to solve the representation poblem (i.e. 
when Date converts in non-localezed string like -MM-DD)
?


_
MSN 8 with e-mail virus protection service: 2 months FREE* 
http://join.msn.com/?page=features/virus


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 



Re: java.sql.Date again!!

2002-11-24 Thread Slava_L
actualy i am lookin' for best way to render input field of java.sql.Date
(not only to read but to write else)
- Original Message -
From: "David Graham" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, November 25, 2002 1:39 PM
Subject: Re: java.sql.Date again!!


> What exactly is this problem?  The JSTL has formatting tags that handle
this
> if you can't find a Struts solution.
>
> David
>
>
>
>
>
>
> >From: "Slava_L" <[EMAIL PROTECTED]>
> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> >To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> >Subject: java.sql.Date again!!
> >Date: Mon, 25 Nov 2002 13:11:57 +0800
> >
> >Well, are there any changes about java.sql.Date-in-Struts problem?
> >What is the best appropriate way to solve the representation poblem (i.e.
> >when Date converts in non-localezed string like -MM-DD)
> >?
>
>
> _
> MSN 8 with e-mail virus protection service: 2 months FREE*
> http://join.msn.com/?page=features/virus
>
>
> --
> To unsubscribe, e-mail:

> For additional commands, e-mail:

>
>


--
To unsubscribe, e-mail:   
For additional commands, e-mail: