Re: New to Struts, a Question

2009-08-02 Thread Dave Newton

Dennis Atkinson wrote:

I have a follow-up question about this subject (redirecting to an
Action class rather than a jsp file).

When I do the redirect, and the target is an Action class with
validated input fields, when the screen is initially shown, I get
"... field is required" messages on everything.  Apparently the
Action class thinks a user submit was done, and so it runs all its
validations.  This isn't the behavior I would like to see; I tried
removing the "input" result from struts.xml but that just causes a
"No result defined" error.

Does anyone know the trick to this?


If you're redirecting to an action that has validation then you need to 
go specifically to a method that isn't validated, whether by default 
(input, for example, is excluded by default) or by configuration.


Dave

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: New to Struts, a Question

2009-08-02 Thread Dennis Atkinson
I have a follow-up question about this subject (redirecting to an Action class 
rather than a jsp file).

When I do the redirect, and the target is an Action class with validated input 
fields, when the screen is initially shown, I get "... field is required" 
messages on everything.  Apparently the Action class thinks a user submit was 
done, and so it runs all its validations.  This isn't the behavior I would like 
to see; I tried removing the "input" result from struts.xml but that just 
causes a "No result defined" error.

Does anyone know the trick to this?

Thanks,
Dennis






From: Dennis Atkinson 
To: Struts Users Mailing List 
Sent: Thursday, July 30, 2009 1:18:12 PM
Subject: Re: New to Struts, a Question

Thanks to all who helped with this - I understand it better now.

Dennis






From: Martin Gainty 
To: Struts Users Mailing List 
Sent: Thursday, July 30, 2009 8:32:01 AM
Subject: RE: New to Struts, a Question


in your config files look for default result assignment with /userDisplay.jsp
http://struts.apache.org/2.0.14/docs/result-configuration.html

Martin Gainty 
__ 
Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité

Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger 
sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung 
oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem 
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. 
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung 
fuer den Inhalt uebernehmen.
Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
destinataire prévu, nous te demandons avec bonté que pour satisfaire informez 
l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est 
interdite. Ce message sert à l'information seulement et n'aura pas n'importe 
quel effet légalement obligatoire. Étant donné que les email peuvent facilement 
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité 
pour le contenu fourni.




> Date: Wed, 29 Jul 2009 21:14:24 -0400
> Subject: Re: New to Struts, a Question
> From: tomsatt...@gmail.com
> To: user@struts.apache.org
> 
> In my struts.xml file, I have the UserDisplayAction class and a blank (no
> "name=") result for userDisplay.jsp.  Does it pick up from there?
> 
> 
> 
> On Wed, Jul 29, 2009 at 8:40 PM, Dave Newton  wrote:
> 
> > Dennis Atkinson wrote:
> >
> >> Dave,
> >>
> >> OK, I  can make it work.  I just don't understand WHY it works.
> >>
> >> If I change to this: My
> >> Acccount
> >>
> >> I get exactly what I expect; the screen loads with the data filled in
> >> properly.
> >>
> >> But what I don't understand is how Struts knows to load
> >> userDisplay.jsp.  I assume it parses the "userDisplay" out of the url
> >> and appends the ".jsp" to the end, so as long as I have these names
> >> the same (other than the suffix), this will work?
> >>
> >
> > You don't have a user display action configured via XML or annotations?
> >
> >
> > Dave
> >
> > -
> > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> > For additional commands, e-mail: user-h...@struts.apache.org
> >
> >

_
Bing™ brings you maps, menus, and reviews organized in one place. Try it now.
http://www.bing.com/search?q=restaurants&form=MLOGEN&publ=WLHMTAG&crea=TXT_MLOGEN_Local_Local_Restaurants_1x1


  

Re: New to Struts, a Question

2009-07-30 Thread Dennis Atkinson
Thanks to all who helped with this - I understand it better now.

Dennis






From: Martin Gainty 
To: Struts Users Mailing List 
Sent: Thursday, July 30, 2009 8:32:01 AM
Subject: RE: New to Struts, a Question


in your config files look for default result assignment with /userDisplay.jsp
http://struts.apache.org/2.0.14/docs/result-configuration.html

Martin Gainty 
__ 
Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité

Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger 
sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung 
oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem 
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. 
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung 
fuer den Inhalt uebernehmen.
Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
destinataire prévu, nous te demandons avec bonté que pour satisfaire informez 
l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est 
interdite. Ce message sert à l'information seulement et n'aura pas n'importe 
quel effet légalement obligatoire. Étant donné que les email peuvent facilement 
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité 
pour le contenu fourni.




> Date: Wed, 29 Jul 2009 21:14:24 -0400
> Subject: Re: New to Struts, a Question
> From: tomsatt...@gmail.com
> To: user@struts.apache.org
> 
> In my struts.xml file, I have the UserDisplayAction class and a blank (no
> "name=") result for userDisplay.jsp.  Does it pick up from there?
> 
> 
> 
> On Wed, Jul 29, 2009 at 8:40 PM, Dave Newton  wrote:
> 
> > Dennis Atkinson wrote:
> >
> >> Dave,
> >>
> >> OK, I  can make it work.  I just don't understand WHY it works.
> >>
> >> If I change to this: My
> >> Acccount
> >>
> >> I get exactly what I expect; the screen loads with the data filled in
> >> properly.
> >>
> >> But what I don't understand is how Struts knows to load
> >> userDisplay.jsp.  I assume it parses the "userDisplay" out of the url
> >> and appends the ".jsp" to the end, so as long as I have these names
> >> the same (other than the suffix), this will work?
> >>
> >
> > You don't have a user display action configured via XML or annotations?
> >
> >
> > Dave
> >
> > -
> > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> > For additional commands, e-mail: user-h...@struts.apache.org
> >
> >

_
Bing™ brings you maps, menus, and reviews organized in one place. Try it now.
http://www.bing.com/search?q=restaurants&form=MLOGEN&publ=WLHMTAG&crea=TXT_MLOGEN_Local_Local_Restaurants_1x1


  

RE: New to Struts, a Question

2009-07-30 Thread Martin Gainty

in your config files look for default result assignment with /userDisplay.jsp
http://struts.apache.org/2.0.14/docs/result-configuration.html

Martin Gainty 
__ 
Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité
 
Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger 
sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung 
oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem 
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. 
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung 
fuer den Inhalt uebernehmen.
Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
destinataire prévu, nous te demandons avec bonté que pour satisfaire informez 
l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est 
interdite. Ce message sert à l'information seulement et n'aura pas n'importe 
quel effet légalement obligatoire. Étant donné que les email peuvent facilement 
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité 
pour le contenu fourni.




> Date: Wed, 29 Jul 2009 21:14:24 -0400
> Subject: Re: New to Struts, a Question
> From: tomsatt...@gmail.com
> To: user@struts.apache.org
> 
> In my struts.xml file, I have the UserDisplayAction class and a blank (no
> "name=") result for userDisplay.jsp.  Does it pick up from there?
> 
> 
> 
> On Wed, Jul 29, 2009 at 8:40 PM, Dave Newton  wrote:
> 
> > Dennis Atkinson wrote:
> >
> >> Dave,
> >>
> >> OK, I  can make it work.  I just don't understand WHY it works.
> >>
> >> If I change to this: My
> >> Acccount
> >>
> >> I get exactly what I expect; the screen loads with the data filled in
> >> properly.
> >>
> >> But what I don't understand is how Struts knows to load
> >> userDisplay.jsp.  I assume it parses the "userDisplay" out of the url
> >> and appends the ".jsp" to the end, so as long as I have these names
> >> the same (other than the suffix), this will work?
> >>
> >
> > You don't have a user display action configured via XML or annotations?
> >
> >
> > Dave
> >
> > -
> > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> > For additional commands, e-mail: user-h...@struts.apache.org
> >
> >

_
Bing™ brings you maps, menus, and reviews organized in one place. Try it now.
http://www.bing.com/search?q=restaurants&form=MLOGEN&publ=WLHMTAG&crea=TXT_MLOGEN_Local_Local_Restaurants_1x1

Re: New to Struts, a Question

2009-07-30 Thread Paweł Wielgus
Hi Thomas,
yes it is picking it from there.
Empty name is same as name="success".

Best greetings,
Paweł Wielgus.

2009/7/30 Thomas Sattler :
> In my struts.xml file, I have the UserDisplayAction class and a blank (no
> "name=") result for userDisplay.jsp.  Does it pick up from there?
>
>
>
> On Wed, Jul 29, 2009 at 8:40 PM, Dave Newton  wrote:
>
>> Dennis Atkinson wrote:
>>
>>> Dave,
>>>
>>> OK, I  can make it work.  I just don't understand WHY it works.
>>>
>>> If I change to this: My
>>> Acccount
>>>
>>> I get exactly what I expect; the screen loads with the data filled in
>>> properly.
>>>
>>> But what I don't understand is how Struts knows to load
>>> userDisplay.jsp.  I assume it parses the "userDisplay" out of the url
>>> and appends the ".jsp" to the end, so as long as I have these names
>>> the same (other than the suffix), this will work?
>>>
>>
>> You don't have a user display action configured via XML or annotations?
>>
>>
>> Dave
>>
>> -
>> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
>> For additional commands, e-mail: user-h...@struts.apache.org
>>
>>
>

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: New to Struts, a Question

2009-07-29 Thread Thomas Sattler
In my struts.xml file, I have the UserDisplayAction class and a blank (no
"name=") result for userDisplay.jsp.  Does it pick up from there?



On Wed, Jul 29, 2009 at 8:40 PM, Dave Newton  wrote:

> Dennis Atkinson wrote:
>
>> Dave,
>>
>> OK, I  can make it work.  I just don't understand WHY it works.
>>
>> If I change to this: My
>> Acccount
>>
>> I get exactly what I expect; the screen loads with the data filled in
>> properly.
>>
>> But what I don't understand is how Struts knows to load
>> userDisplay.jsp.  I assume it parses the "userDisplay" out of the url
>> and appends the ".jsp" to the end, so as long as I have these names
>> the same (other than the suffix), this will work?
>>
>
> You don't have a user display action configured via XML or annotations?
>
>
> Dave
>
> -
> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> For additional commands, e-mail: user-h...@struts.apache.org
>
>


Re: New to Struts, a Question

2009-07-29 Thread Dave Newton

Dennis Atkinson wrote:

Dave,

OK, I  can make it work.  I just don't understand WHY it works.

If I change to this: My
Acccount

I get exactly what I expect; the screen loads with the data filled in
properly.

But what I don't understand is how Struts knows to load
userDisplay.jsp.  I assume it parses the "userDisplay" out of the url
and appends the ".jsp" to the end, so as long as I have these names
the same (other than the suffix), this will work?


You don't have a user display action configured via XML or annotations?

Dave

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: New to Struts, a Question

2009-07-29 Thread Dennis Atkinson
Dave,

OK, I  can make it work.  I just don't understand WHY it works.

If I change to this:
My Acccount

I get exactly what I expect; the screen loads with the data filled in properly.

But what I don't understand is how Struts knows to load userDisplay.jsp.  I 
assume it parses the "userDisplay" out of the url and appends the ".jsp" to the 
end, so as long as I have these names the same (other than the suffix), this 
will work?

Thanks,
Dennis






From: Dave Newton 
To: Struts Users Mailing List 
Sent: Wednesday, July 29, 2009 5:49:04 PM
Subject: Re: New to Struts, a Question

Dennis Atkinson wrote:
> The menu says:
> My Acccount
> 
> Can I direct this to an action class, rather than to a jsp file?

Action URLs are URLs like any other, including a JSP.

Dave

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org


  

Re: New to Struts, a Question

2009-07-29 Thread Dave Newton

Dennis Atkinson wrote:

The menu says:
My Acccount

Can I direct this to an action class, rather than to a jsp file?


Action URLs are URLs like any other, including a JSP.

Dave

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: New to Struts, a Question

2009-07-29 Thread Dennis Atkinson
Burton,

Thanks very much for the reply.  I have tried this and it works great.  I 
appreciate the assistance.

Is it possible to do the same thing, but on a menu selection?

The menu says:
My Acccount

Can I direct this to an action class, rather than to a jsp file?






From: Burton Rhodes 
To: Struts Users Mailing List 
Sent: Wednesday, July 29, 2009 1:13:37 PM
Subject: Re: New to Struts, a Question

I think you want to investigate an 'actionredirect' on 'success'
instead of just displaying the user jsp file. This will 'handoff'
control to your user action.

On 7/29/09, Dennis Atkinson  wrote:
> Hello everyone.
>
> I am new to Struts2, and I like what I see so far.  I want to use it for all
> my web programming.
>
> I have a question, and I hope I don't sound too foolish for asking it.
>
> I created a login screen, which has two fields, "id" and "password".  I fill
> those fields, press the "Login" button, and it goes to the "LoginAction"
> class, which validates everything, and I return "success".  This invokes
> "userDisplay.jsp" which writes the user's information out to the screen.
>
> When the userDisplay screen appeared, I saw the field descriptions but I
> didn't see any data.  It seems like the getter methods for the fields are
> not being called in the "UserDisplayAction" class.  When I add the getter
> methods to the "LoginAction" class, the data appears.
>
> It seems to me that the "LoginAction" class is still in control.  So in
> theory, if I have an action class that invokes (via a pick list or a series
> of buttons) a way of displaying a dozen different tables by routing to a
> dozen different jsp files, that action class will need getter methods for
> every field in every one of these tables?  Am I reading this right?
>
> I hope one of the experts can clear this up for me.
>
> Thanks in advance,
> Dennis Atkinson
>
>
>

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org


  

Re: New to Struts, a Question

2009-07-29 Thread Burton Rhodes
I think you want to investigate an 'actionredirect' on 'success'
instead of just displaying the user jsp file. This will 'handoff'
control to your user action.

On 7/29/09, Dennis Atkinson  wrote:
> Hello everyone.
>
> I am new to Struts2, and I like what I see so far.  I want to use it for all
> my web programming.
>
> I have a question, and I hope I don't sound too foolish for asking it.
>
> I created a login screen, which has two fields, "id" and "password".  I fill
> those fields, press the "Login" button, and it goes to the "LoginAction"
> class, which validates everything, and I return "success".  This invokes
> "userDisplay.jsp" which writes the user's information out to the screen.
>
> When the userDisplay screen appeared, I saw the field descriptions but I
> didn't see any data.  It seems like the getter methods for the fields are
> not being called in the "UserDisplayAction" class.  When I add the getter
> methods to the "LoginAction" class, the data appears.
>
> It seems to me that the "LoginAction" class is still in control.  So in
> theory, if I have an action class that invokes (via a pick list or a series
> of buttons) a way of displaying a dozen different tables by routing to a
> dozen different jsp files, that action class will need getter methods for
> every field in every one of these tables?  Am I reading this right?
>
> I hope one of the experts can clear this up for me.
>
> Thanks in advance,
> Dennis Atkinson
>
>
>

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



RE: new to Struts

2008-09-13 Thread Martin Gainty

its a MVC framework which contains Dojo Javascript libraries
keep in mind Dojo 0.42 has the ability to accomodate a dojo DataGrid

the simplest example:
in pure JavaScript you can use return JavaScriptObjectNotationResultset to a 
datagrid e.g.
no ftl.. no worries about configuring for struts just call the dojo control 
directly from JS
var itemData = {items: [{name: "Bill", hiredate: new Date("1975-8-1")}, ...]};

var store = new dojo.data.JsonItemStore({ data: itemData});


to accomodate in struts 
you will encounter these configuration considerations
first of all make SURE your modulePaths are set correctly for dojo.js (if you 
don't no .js will be loaded)
enable the gridData widget control to be found in 
WEB-INF/classes/template/simple/head.ftl


if you want to set this up as a referencable control you'll want to look at 
creating a ftl (freemarker template library) for your control e.g.

<[EMAIL PROTECTED] prefix="s" uri="/struts-tags" %>


All People




There are ${peopleCount} people... 


ID
Name

<#list people as person>

${person.id}
${person.name}
${person.lastName}







Edit people
Create a new person




but the s:inputtransferselect is meaningless without accompanying .ftl form 
which is defined in
template\simple\inputtransferselect.ftl *notice the inputtransferselect.js 
inclusion via s.url:*
head -8 inputtransferselect.ftl

<#if !stack.findValue("#inputtransferselect_js_included")?exists><#t/>
">
<#assign temporaryVariable = 
stack.setValue("#inputtransferselect_js_included", "true") /><#t/>
<#t/>




Antonio/Musachy or jeromy can elaborate more descriptively on this topic
Martin 
__ 
Disclaimer and confidentiality note 
Everything in this e-mail and any attachments relates to the official business 
of Sender. This transmission is of a confidential nature and Sender does not 
endorse distribution to any party other than intended recipient. Sender does 
not necessarily endorse content contained within this transmission. 


> Date: Sat, 13 Sep 2008 15:32:04 +0200
> From: [EMAIL PROTECTED]
> To: user@struts.apache.org
> Subject: Re: new to Struts
> 
> 1) I would go for Strut2 right away, Struts1 (aka Struts-classic) is a 
> completely different framework. Struts2 is more modern, more productive 
> and more enjoyable to use. A good starter book to learn Struts2 is 
> "Struts2 In Action" from Manning.
> 
> 2) Netbeans has a WYSIWYG JSP editor isn't it ?  It's all what you need, 
> because Strut2 configuration file is so much simpler and smaller [than 
> the ones for Strut1] that we really don't need a graphical 
> representation anymore. Also I remember seeing that there exists a 
> Netbean pluging specifically for Struts2 development. But you can also 
> comfortably develop Struts2 applications with EclipseWTP.
> 
> 3) Struts2 comes with all what you need for building form for user 
> input, but for data output, like lists and datagrids, it has... nothing. 
> Fortunately you can use almost all components that where crafted for JSP 
> over the years. This include http://code.google.com/p/jmesa/, 
> http://displaytag.sourceforge.net/11/ and 
> http://www.codeproject.com/KB/grid/DBGrid.aspx.  And finally you can 
> crafted your own component by witting a Freemarker template.
> 
> ZC.
> 
> 
> gbattine wrote:
> > Hello guys,
> > I need an information.
> > I'm going to learn struts..
> > I need some info, please help me:
> >
> > 1) what do you hint to me, to start from Struts 1.1 and later move to Struts
> > 2.0, or starting from Struts 2.0?
> > 2) I usually use Netbeans. Is there an editor WYSIWHG for Netbeans, to use
> > Struts?
> > 3) I know ASP.NET technology and I used lot of already developed components,
> > like editable grid, dropdown list and so on...does exists such component for
> > struts?where I can download them?
> >
> > Thanks,
> > Regards
> >   
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

_
Get more out of the Web. Learn 10 hidden secrets of Windows Live.
http://windowslive.com/connect/post/jamiethomson.spaces.live.com-Blog-cns!550F681DAD532637!5295.entry?ocid=TXT_TAGLM_WL_domore_092008

Re: new to Struts

2008-09-13 Thread zart colwin
1) I would go for Strut2 right away, Struts1 (aka Struts-classic) is a 
completely different framework. Struts2 is more modern, more productive 
and more enjoyable to use. A good starter book to learn Struts2 is 
"Struts2 In Action" from Manning.


2) Netbeans has a WYSIWYG JSP editor isn't it ?  It's all what you need, 
because Strut2 configuration file is so much simpler and smaller [than 
the ones for Strut1] that we really don't need a graphical 
representation anymore. Also I remember seeing that there exists a 
Netbean pluging specifically for Struts2 development. But you can also 
comfortably develop Struts2 applications with EclipseWTP.


3) Struts2 comes with all what you need for building form for user 
input, but for data output, like lists and datagrids, it has... nothing. 
Fortunately you can use almost all components that where crafted for JSP 
over the years. This include http://code.google.com/p/jmesa/, 
http://displaytag.sourceforge.net/11/ and 
http://www.codeproject.com/KB/grid/DBGrid.aspx.  And finally you can 
crafted your own component by witting a Freemarker template.


ZC.


gbattine wrote:

Hello guys,
I need an information.
I'm going to learn struts..
I need some info, please help me:

1) what do you hint to me, to start from Struts 1.1 and later move to Struts
2.0, or starting from Struts 2.0?
2) I usually use Netbeans. Is there an editor WYSIWHG for Netbeans, to use
Struts?
3) I know ASP.NET technology and I used lot of already developed components,
like editable grid, dropdown list and so on...does exists such component for
struts?where I can download them?

Thanks,
Regards
  



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



Re: new to Struts

2008-09-09 Thread Edwin Quita
I would suggest you go straight towards Struts 2, it's simpler, you're
shielded from the dirty stuffs involved with the request and response
objects.  It also has spring integration and so make it easier for you
to integrate the model layer for your web app.

On Mon, Sep 8, 2008 at 7:25 AM, gbattine <[EMAIL PROTECTED]> wrote:
>
> Hello guys,
> I need an information.
> I'm going to learn struts..
> I need some info, please help me:
>
> 1) what do you hint to me, to start from Struts 1.1 and later move to Struts
> 2.0, or starting from Struts 2.0?
> 2) I usually use Netbeans. Is there an editor WYSIWHG for Netbeans, to use
> Struts?
> 3) I know ASP.NET technology and I used lot of already developed components,
> like editable grid, dropdown list and so on...does exists such component for
> struts?where I can download them?
>
> Thanks,
> Regards
> --
> View this message in context: 
> http://www.nabble.com/new-to-Struts-tp19370925p19370925.html
> Sent from the Struts - User mailing list archive at Nabble.com.
>
>
> -
> 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]



Re: new to Struts

2008-09-08 Thread Jim Kiley
Start with Struts 2.  It's a great improvement over the old beast.

On Mon, Sep 8, 2008 at 8:25 AM, gbattine <[EMAIL PROTECTED]> wrote:

>
> Hello guys,
> I need an information.
> I'm going to learn struts..
> I need some info, please help me:
>
> 1) what do you hint to me, to start from Struts 1.1 and later move to
> Struts
> 2.0, or starting from Struts 2.0?
> 2) I usually use Netbeans. Is there an editor WYSIWHG for Netbeans, to use
> Struts?
> 3) I know ASP.NET technology and I used lot of already developed
> components,
> like editable grid, dropdown list and so on...does exists such component
> for
> struts?where I can download them?
>
> Thanks,
> Regards
> --
> View this message in context:
> http://www.nabble.com/new-to-Struts-tp19370925p19370925.html
> Sent from the Struts - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
Jim Kiley
Technical Consultant | Summa
[p] 412.258.3346 [m] 412.445.1729
http://www.summa-tech.com


RE: new to Struts

2008-09-08 Thread Deepak Kumar
Hi,

Please check http://www.roseindia.net/struts/struts2

Here you will step by step tutorials on struts 2.

Thanks
Deepak Kumar


-Original Message-
From: gbattine [mailto:[EMAIL PROTECTED]
Sent: Monday, September 08, 2008 5:55 PM
To: user@struts.apache.org
Subject: new to Struts



Hello guys,
I need an information.
I'm going to learn struts..
I need some info, please help me:

1) what do you hint to me, to start from Struts 1.1 and later move to Struts
2.0, or starting from Struts 2.0?
2) I usually use Netbeans. Is there an editor WYSIWHG for Netbeans, to use
Struts?
3) I know ASP.NET technology and I used lot of already developed components,
like editable grid, dropdown list and so on...does exists such component for
struts?where I can download them?

Thanks,
Regards
--
View this message in context:
http://www.nabble.com/new-to-Struts-tp19370925p19370925.html
Sent from the Struts - User mailing list archive at Nabble.com.


-
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]



Re: New to Struts

2008-04-01 Thread pavanbh

Thanks.
I will look at the framework and try some examples.
If any doubt i will ask for help.plz help me

Nils-Helge Garli wrote:
> 
> There is no shortcut to learning a new framework. I suggest buying a
> couple of books and taking your time reading the documentation and
> trying out the examples that are available. Search engines is also a
> good way to find relevant information. Anything you need to get
> started, both for Struts 1 and Struts 2, should be available at
> http://struts.apache.org/
> 
> Nils-H
> 
> On Tue, Apr 1, 2008 at 11:59 AM, pavanbh <[EMAIL PROTECTED]> wrote:
>>
>>  Hi All,
>>
>>  I am new to struts and wana to learn it.Any help or suggestion in this
>>  regard is much appriciated.
>>  please help  me
>>
>>
>>
>>
>>  Thanks,
>>  Pavan
>>
>>
>>
>>  --
>>  View this message in context:
>> http://www.nabble.com/New-to-Struts-tp14313460p16417500.html
>>
>> Sent from the Struts - User mailing list archive at Nabble.com.
>>
>>
>>  -
>>
>>
>> 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]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/New-to-Struts-tp14313460p16442350.html
Sent from the Struts - User mailing list archive at Nabble.com.


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



Re: New to Struts

2008-04-01 Thread aum strut
documentation is the best place to get started...
keep one thing do not read only try them side by side.
below are some of the others link which might help you.

http://www.wantii.com/wordpress/?p=9
http://www.roseindia.com

i hope these are the perfect starter.

-aum

On Tue, Apr 1, 2008 at 4:33 PM, Nils-Helge Garli Hegvik <[EMAIL PROTECTED]>
wrote:

> There is no shortcut to learning a new framework. I suggest buying a
> couple of books and taking your time reading the documentation and
> trying out the examples that are available. Search engines is also a
> good way to find relevant information. Anything you need to get
> started, both for Struts 1 and Struts 2, should be available at
> http://struts.apache.org/
>
> Nils-H
>
> On Tue, Apr 1, 2008 at 11:59 AM, pavanbh <[EMAIL PROTECTED]> wrote:
> >
> >  Hi All,
> >
> >  I am new to struts and wana to learn it.Any help or suggestion in this
> >  regard is much appriciated.
> >  please help  me
> >
> >
> >
> >
> >  Thanks,
> >  Pavan
> >
> >
> >
> >  --
> >  View this message in context:
> http://www.nabble.com/New-to-Struts-tp14313460p16417500.html
> >
> > Sent from the Struts - User mailing list archive at Nabble.com.
> >
> >
> >  -
> >
> >
> > 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]
>
>


Re: New to Struts

2008-04-01 Thread Nils-Helge Garli Hegvik
There is no shortcut to learning a new framework. I suggest buying a
couple of books and taking your time reading the documentation and
trying out the examples that are available. Search engines is also a
good way to find relevant information. Anything you need to get
started, both for Struts 1 and Struts 2, should be available at
http://struts.apache.org/

Nils-H

On Tue, Apr 1, 2008 at 11:59 AM, pavanbh <[EMAIL PROTECTED]> wrote:
>
>  Hi All,
>
>  I am new to struts and wana to learn it.Any help or suggestion in this
>  regard is much appriciated.
>  please help  me
>
>
>
>
>  Thanks,
>  Pavan
>
>
>
>  --
>  View this message in context: 
> http://www.nabble.com/New-to-Struts-tp14313460p16417500.html
>
> Sent from the Struts - User mailing list archive at Nabble.com.
>
>
>  -
>
>
> 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]



Re: New to Struts

2008-04-01 Thread pavanbh

Hi All,

I am new to struts and wana to learn it.Any help or suggestion in this
regard is much appriciated.
please help  me




Thanks,
Pavan



-- 
View this message in context: 
http://www.nabble.com/New-to-Struts-tp14313460p16417500.html
Sent from the Struts - User mailing list archive at Nabble.com.


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



Re: New to Struts

2007-12-18 Thread aum strut
If you have a new query, please always use a new thread. as starting a new
topic in old thread will not help you a lot

On Dec 19, 2007 12:03 AM, Radu Solomon <[EMAIL PROTECTED]> wrote:

> What we did was to run the native2ascii during the build/compilation time
> using ant. Our ant task looks something like this:
>
> 
>  
>  
>  
>   dest="${resourcesDist}" >
>  
> 
>  
>
>
>
>
>
>
> [EMAIL PROTECTED] wrote:
>
> Thanks Radu.
>
> You mean all values of keys need translating using native2ascii. If yes, the
> properties files will not be readable. Can you please clarify that?
>
> Thanks again.
>
> On Dec 18, 2007 1:08 PM, Radu Solomon <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> 
> wrote:
>
>
>
> you need to do a native2ascii on your application resources and then it
> will work. We had same problem with our application.
>
> *Radu Solomon*
>
> /Software Developer/
> N-able Technologies(R)
> 450 March Road, 4th Floor
> Ottawa, Ontario
>
> K2K 3K2
> www.n-able.com  
> [EMAIL PROTECTED]  <[EMAIL PROTECTED]>
> *Tel:* (613) 592-6676 x 301
>
> *Toll Free:* 877-655-4689 x 301
>
> *Fax:* (613) 592-2242
>
>
> [EMAIL PROTECTED] wrote:
>
>
> Hi all,
>
> I have a French bundle with this key/value inside:
> button.close=Fermer la fen�tre
>
> In a JSP,  outputs Fermer
>
>
> la
>
>
> fenêtre. The letter "�" is not rendered properly. I use Eclipse and
>
>
> UTF-8
>  > for properties file encoding.
>
>
> I guess something is wrong with properties file editor setting. What
>
>
> editor
>
>
> should I set for the properties file in eclipse?
>
> Could anyone give a hand?
>
> Thanks.
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


Re: New to Struts

2007-12-18 Thread Radu Solomon
What we did was to run the native2ascii during the build/compilation 
time using ant. Our ant task looks something like this:






dest="${resourcesDist}" >


   






[EMAIL PROTECTED] wrote:

Thanks Radu.

You mean all values of keys need translating using native2ascii. If yes, the
properties files will not be readable. Can you please clarify that?

Thanks again.

On Dec 18, 2007 1:08 PM, Radu Solomon <[EMAIL PROTECTED]> wrote:

  

you need to do a native2ascii on your application resources and then it
will work. We had same problem with our application.

*Radu Solomon*

/Software Developer/
N-able Technologies(R)
450 March Road, 4th Floor
Ottawa, Ontario

K2K 3K2

www.n-able.com 

[EMAIL PROTECTED] 
*Tel:* (613) 592-6676 x 301

*Toll Free:* 877-655-4689 x 301

*Fax:* (613) 592-2242



[EMAIL PROTECTED] wrote:


Hi all,

I have a French bundle with this key/value inside:

button.close=Fermer la fen�tre

In a JSP,  outputs Fermer
  

la


fenêtre. The letter "�" is not rendered properly. I use Eclipse and
  

UTF-8
 > for properties file encoding.


I guess something is wrong with properties file editor setting. What
  

editor


should I set for the properties file in eclipse?

Could anyone give a hand?

Thanks.


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

Re: New to Struts

2007-12-18 Thread [EMAIL PROTECTED]
Thanks Radu.

You mean all values of keys need translating using native2ascii. If yes, the
properties files will not be readable. Can you please clarify that?

Thanks again.

On Dec 18, 2007 1:08 PM, Radu Solomon <[EMAIL PROTECTED]> wrote:

> you need to do a native2ascii on your application resources and then it
> will work. We had same problem with our application.
>
> *Radu Solomon*
>
> /Software Developer/
> N-able Technologies(R)
> 450 March Road, 4th Floor
> Ottawa, Ontario
>
> K2K 3K2
>
> www.n-able.com 
>
> [EMAIL PROTECTED] 
> *Tel:* (613) 592-6676 x 301
>
> *Toll Free:* 877-655-4689 x 301
>
> *Fax:* (613) 592-2242
>
>
>
> [EMAIL PROTECTED] wrote:
> > Hi all,
> >
> > I have a French bundle with this key/value inside:
> >
> > button.close=Fermer la fen�tre
> >
> > In a JSP,  outputs Fermer
> la
> > fenêtre. The letter "�" is not rendered properly. I use Eclipse and
> UTF-8
>  > for properties file encoding.
> >
> > I guess something is wrong with properties file editor setting. What
> editor
> > should I set for the properties file in eclipse?
> >
> > Could anyone give a hand?
> >
> > Thanks.
> >
> >
>


Re: New to Struts

2007-12-18 Thread tom` frost
This should be a new thread perhaps.

But I suspect that latin-1 has been used somewhere in your chain; UTF-8
disagrees with Latin -1 about the special european characters.

On Dec 18, 2007 11:06 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

> Hi all,
>
> I have a French bundle with this key/value inside:
>
> button.close=Fermer la fenêtre
>
> In a JSP,  outputs Fermer la
> fenêtre. The letter "ê" is not rendered properly. I use Eclipse and UTF-8
> for properties file encoding.
>
> I guess something is wrong with properties file editor setting. What
> editor
> should I set for the properties file in eclipse?
>
> Could anyone give a hand?
>
> Thanks.
>


Re: New to Struts

2007-12-18 Thread Radu Solomon
you need to do a native2ascii on your application resources and then it 
will work. We had same problem with our application.


*Radu Solomon*

/Software Developer/
N-able Technologies®
450 March Road, 4th Floor
Ottawa, Ontario

K2K 3K2

www.n-able.com 

[EMAIL PROTECTED] 
*Tel:* (613) 592-6676 x 301

*Toll Free:* 877-655-4689 x 301

*Fax:* (613) 592-2242



[EMAIL PROTECTED] wrote:

Hi all,

I have a French bundle with this key/value inside:

button.close=Fermer la fen�tre

In a JSP,  outputs Fermer la
fenêtre. The letter "�" is not rendered properly. I use Eclipse and UTF-8
for properties file encoding.

I guess something is wrong with properties file editor setting. What editor
should I set for the properties file in eclipse?

Could anyone give a hand?

Thanks.

  


Re: New to Struts

2007-12-18 Thread [EMAIL PROTECTED]
Hi all,

I have a French bundle with this key/value inside:

button.close=Fermer la fenêtre

In a JSP,  outputs Fermer la
fenêtre. The letter "ê" is not rendered properly. I use Eclipse and UTF-8
for properties file encoding.

I guess something is wrong with properties file editor setting. What editor
should I set for the properties file in eclipse?

Could anyone give a hand?

Thanks.


Re: New to Struts

2007-12-18 Thread tom` frost
The Manning book is available in early release form.  It seems very well
explained and good for learning the system, especially for a newbie.  I like
it it.

On Dec 13, 2007 8:18 AM, bhaarat Sharma <[EMAIL PROTECTED]> wrote:

> I am new to struts2 as well and had no prior knowledge of Struts1.
> Although, I think its an advantage if you\'ve worked with servlets and
> MVC structure before you begin.
>
> I am reading Practical struts2 web 2.0 projects book.  I dont have a
> lot of nice things to say about the book but its practically the
> complete struts2 book thats out there.
>
> Book or tutorials are the way to go.  Wont recommend roseIndia
> tutorials as I think they are missing a lot of key points but
> wanTii\'s tutorials look very good.
>
> Thanks Wes!
>
> On 12/13/07, Wes Wannemacher <[EMAIL PROTECTED]> wrote:
> You can also check out my tutorials -
> >
> > http://www.wantii.com/wordpress/?cat=6
> >
> > start from the bottom and work your way up.
> >
> > -Wes
> >
> > On 12/13/07, aum strut <[EMAIL PROTECTED]> wrote:
> > > Hi All,
> > >
> > > I am new to struts and wana to learn it.Please suggest me can i start
> > > directly to learn Struts2 or do i need to have prior knowledge of
> > > Struts1.Any help or suggestion in this regard is much appriciated.
> > >
> > >
> > >
> > >
> > > Thanks,
> > > Aum
> > >
> >
> >
> > --
> > Wesley Wannemacher
> > President, Head Engineer/Consultant
> > WanTii, Inc.
> > http://www.wantii.com
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
> --
> -bhaarat
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: New to Struts

2007-12-17 Thread Ian Roughley

Dave Newton wrote:

--- Ian Roughley <[EMAIL PROTECTED]> wrote:
  

bhaarat Sharma wrote:


I am reading Practical struts2 web 2.0 projects book.  I dont have a
lot of nice things to say 
  

Please contact me off list.  I am interested in why you have this opinion.



Doesn't mean he has *bad* things to say ;)
  
:-)  It's definitely not a reference book, with each and every tag, 
plug-in and attribute, and due to deadlines I missed some content I 
wanted in myself... so I'm just curious as to what he thought was wrong.

d.


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

  


Re: New to Struts

2007-12-17 Thread Dave Newton
--- Ian Roughley <[EMAIL PROTECTED]> wrote:
> bhaarat Sharma wrote:
> > I am reading Practical struts2 web 2.0 projects book.  I dont have a
> > lot of nice things to say 
> Please contact me off list.  I am interested in why you have this opinion.

Doesn't mean he has *bad* things to say ;)

d.


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



Re: New to Struts

2007-12-17 Thread Ian Roughley


bhaarat Sharma wrote:

I am reading Practical struts2 web 2.0 projects book.  I dont have a
lot of nice things to say 

Please contact me off list.  I am interested in why you have this opinion.

about the book but its practically the
complete struts2 book thats out there.

  


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



Re: New to Struts

2007-12-13 Thread aum strut
Hi All,

Thanks to all of you for providing me such a wonderfull guidance.

Thanks,
Umesh

On Dec 13, 2007 8:48 PM, bhaarat Sharma <[EMAIL PROTECTED]> wrote:

> I am new to struts2 as well and had no prior knowledge of Struts1.
> Although, I think its an advantage if you\'ve worked with servlets and
> MVC structure before you begin.
>
> I am reading Practical struts2 web 2.0 projects book.  I dont have a
> lot of nice things to say about the book but its practically the
> complete struts2 book thats out there.
>
> Book or tutorials are the way to go.  Wont recommend roseIndia
> tutorials as I think they are missing a lot of key points but
> wanTii\'s tutorials look very good.
>
> Thanks Wes!
>
> On 12/13/07, Wes Wannemacher <[EMAIL PROTECTED]> wrote:
> You can also check out my tutorials -
> >
> > http://www.wantii.com/wordpress/?cat=6
> >
> > start from the bottom and work your way up.
> >
> > -Wes
> >
> > On 12/13/07, aum strut <[EMAIL PROTECTED]> wrote:
> > > Hi All,
> > >
> > > I am new to struts and wana to learn it.Please suggest me can i start
> > > directly to learn Struts2 or do i need to have prior knowledge of
> > > Struts1.Any help or suggestion in this regard is much appriciated.
> > >
> > >
> > >
> > >
> > > Thanks,
> > > Aum
> > >
> >
> >
> > --
> > Wesley Wannemacher
> > President, Head Engineer/Consultant
> > WanTii, Inc.
> > http://www.wantii.com
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
> --
> -bhaarat
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: New to Struts

2007-12-13 Thread bhaarat Sharma
I am new to struts2 as well and had no prior knowledge of Struts1.
Although, I think its an advantage if you\'ve worked with servlets and
MVC structure before you begin.

I am reading Practical struts2 web 2.0 projects book.  I dont have a
lot of nice things to say about the book but its practically the
complete struts2 book thats out there.

Book or tutorials are the way to go.  Wont recommend roseIndia
tutorials as I think they are missing a lot of key points but
wanTii\'s tutorials look very good.

Thanks Wes!

On 12/13/07, Wes Wannemacher <[EMAIL PROTECTED]> wrote:
You can also check out my tutorials -
>
> http://www.wantii.com/wordpress/?cat=6
>
> start from the bottom and work your way up.
>
> -Wes
>
> On 12/13/07, aum strut <[EMAIL PROTECTED]> wrote:
> > Hi All,
> >
> > I am new to struts and wana to learn it.Please suggest me can i start
> > directly to learn Struts2 or do i need to have prior knowledge of
> > Struts1.Any help or suggestion in this regard is much appriciated.
> >
> >
> >
> >
> > Thanks,
> > Aum
> >
>
>
> --
> Wesley Wannemacher
> President, Head Engineer/Consultant
> WanTii, Inc.
> http://www.wantii.com
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

--
-bhaarat

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



Re: New to Struts

2007-12-13 Thread Wes Wannemacher
You can also check out my tutorials -

http://www.wantii.com/wordpress/?cat=6

start from the bottom and work your way up.

-Wes

On 12/13/07, aum strut <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> I am new to struts and wana to learn it.Please suggest me can i start
> directly to learn Struts2 or do i need to have prior knowledge of
> Struts1.Any help or suggestion in this regard is much appriciated.
>
>
>
>
> Thanks,
> Aum
>


-- 
Wesley Wannemacher
President, Head Engineer/Consultant
WanTii, Inc.
http://www.wantii.com

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



Re: New to Struts

2007-12-13 Thread Alberto A. Flores
I agree that it may better *not* to have Struts 1.x background if 
possible, if you plan on doing Struts 1.x in the future (e.g. put it on 
your Resume), please be aware that it is not the same.


If you have a Struts 1.x background, I strongly recommend the InfoQ 
tutorials (there are videos and a three part migration guide).


If you don't know Struts 1.x, then I'll suggest going to roseindia.


lbastil wrote:

I would say for some reasons it could be even advantage to not know struts1
and directly start with struts2.

A very good resource beside the available tutorials is:
http://www.infoq.com/minibooks/starting-struts2
(or even better, you buy the new book)

Regards,
basti


aum strut wrote:

Hi All,

I am new to struts and wana to learn it.Please suggest me can i start
directly to learn Struts2 or do i need to have prior knowledge of
Struts1.Any help or suggestion in this regard is much appriciated.




Thanks,
Aum






--

Alberto A. Flores
http://www.linkedin.com/in/aflores


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

RE: New to Struts

2007-12-13 Thread Dave Newton
Or look at the Struts 2 documentation wiki, which is generally more accurate
and up-to-date.

http://struts.apache.org/2.x/docs/home.html

There are tutorials there to help you take your first steps, and guides once
you have the basic idea.

There are a few books available (as well as the old  WebWork in Action book);
Ian Roughley has a quick, free intro to S2 in PDF form on the InfoQ site

http://www.infoq.com/minibooks/starting-struts2

No Struts 1 knowledge is necessary for learning Struts 2.

d.

--- Deepak Kumar <[EMAIL PROTECTED]> wrote:

> HI,
> 
> Please check http://www.roseindia.net/stuts and
> http://www.roseindia.net/struts/struts2
> 
> Thanks
> 
> 
> -Original Message-
> From: aum strut [mailto:[EMAIL PROTECTED]
> Sent: Thursday, December 13, 2007 3:53 PM
> To: Struts Users Mailing List
> Subject: New to Struts
> 
> 
> Hi All,
> 
> I am new to struts and wana to learn it.Please suggest me can i start
> directly to learn Struts2 or do i need to have prior knowledge of
> Struts1.Any help or suggestion in this regard is much appriciated.
> 
> 
> 
> 
> Thanks,
> Aum
> 
> 
> -
> 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]



Re: New to Struts

2007-12-13 Thread lbastil

I would say for some reasons it could be even advantage to not know struts1
and directly start with struts2.

A very good resource beside the available tutorials is:
http://www.infoq.com/minibooks/starting-struts2
(or even better, you buy the new book)

Regards,
basti


aum strut wrote:
> 
> Hi All,
> 
> I am new to struts and wana to learn it.Please suggest me can i start
> directly to learn Struts2 or do i need to have prior knowledge of
> Struts1.Any help or suggestion in this regard is much appriciated.
> 
> 
> 
> 
> Thanks,
> Aum
> 
> 

-- 
View this message in context: 
http://www.nabble.com/New-to-Struts-tp14313460p14313630.html
Sent from the Struts - User mailing list archive at Nabble.com.


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



Re: New to Struts

2007-12-13 Thread Antonio Petrelli
2007/12/13, aum strut <[EMAIL PROTECTED]>:
> Hi All,
>
> I am new to struts and wana to learn it.Please suggest me can i start
> directly to learn Struts2 or do i need to have prior knowledge of
> Struts1.Any help or suggestion in this regard is much appriciated.

You don't need to know Struts 1 to learn Struts 2 (in fact, IMHO, this
is a benefit not to know Struts 1 :-) ). You can start here:
http://struts.apache.org/2.x/docs/home.html

Ciao
Antonio

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



RE: New to Struts

2007-12-13 Thread Deepak Kumar
HI,

Please check http://www.roseindia.net/stuts and
http://www.roseindia.net/struts/struts2

Thanks


-Original Message-
From: aum strut [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 13, 2007 3:53 PM
To: Struts Users Mailing List
Subject: New to Struts


Hi All,

I am new to struts and wana to learn it.Please suggest me can i start
directly to learn Struts2 or do i need to have prior knowledge of
Struts1.Any help or suggestion in this regard is much appriciated.




Thanks,
Aum


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



Re: New to Struts

2006-03-30 Thread Ted Husted
On 3/30/06, Naveen Sharma <[EMAIL PROTECTED]> wrote:
> Hi all,
> Can any one help me with Struts as I am new to it and I am supposed to learn
> Struts.
> Thanx in advance
> Navin

The short answer is

* http://struts.apache.org/struts-doc-1.2.9/index.html

For a longer answer, I just updated the FAQ.

* http://struts.apache.org/kickstart.html

Thanks for asking! :)

HTH, Ted.

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



Re: New to Struts

2006-03-29 Thread Hey Nony Moose
Hey Nony Moose wrote:

>you're going to find it very peculiar reading aged public tutorials and
>then looking at the sourceforge website:
>

"sourceforge"?   did i *really* post that to a public list?  yes. 
I'm really shooting myself now.

 Crimson-faced Moose


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



Re: New to Struts

2006-03-29 Thread Hey Nony Moose
Hey Nony Moose wrote:

>(In case you are wondering what the hell is going on in this list, the
>developers of Struts are having an unusually long and seemingly
>irreconcilable difference of opinion (aka: flame war) about the current
>long term development and marketing strategy of "Struts".)
>  
>
I would like to immediately correct myself:

the developers of Struts are having an unusually long and seemingly 
irreconcilable difference of opinion *with some reasonably high profile 
antagonists* (aka: flame war) about the current long term development and 
marketing strategy of "Struts".

ie: the developers are not having an internal flame war.
i though that was worth the noise cost.

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



Re: New to Struts

2006-03-29 Thread Hey Nony Moose
Naveen Sharma wrote:

>Can any one help me with Struts as I am new to it and I am supposed to learn
>Struts.
>
(In case you are wondering what the hell is going on in this list, the
developers of Struts are having an unusually long and seemingly
irreconcilable difference of opinion (aka: flame war) about the current
long term development and marketing strategy of "Struts".)

First you have to understand this:  "Struts" is more the name of a
development group now, no longer a single piece of software: there are 3
pieces of software that are now each vaguely being called "Struts". 
This has only emerged this last year, and the dust is yet to settle. 
Currently some people are having anurisms wrapping their brains around
it, some people are having anurisms trying to alert people to it
happening, some people are having anurisms trying to stop it happening,
and some people are having anurisms listening to the people having
anurisms. 
Here's a note from an earlier mail as to the Struts version situation to
help you make a start, because if you don't understand this early,
you're going to find it very peculiar reading aged public tutorials and
then looking at the sourceforge website:

Hey Nony Moose wrote:

>... edited ... my first impression is that
>there are 3 things called Struts now in existance:
>1/ Struts Classic (*real* Struts), ie: Struts versioned <2
>2/ Struts WebWork ie: Struts versioned >=2
>3/ Struts Shale ie: Struts JSF, any version
>
>my second impression is that each one is substantially if not totally
>different internally, interfacially and implementationally to each
>other, so don't bother swapping once your investment is in one.  you
>pick one and one only to use, they don't work together, they compete for
>application choice.
>
 Moose from beyond the grave


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



RE: New to Struts

2006-03-29 Thread Sahil Gupta
Do read First three lessons on the link
 http://www.learntechnology.net/ 


Regards,

Sahil Gupta

-Original Message-
From: Michael Jouravlev [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 30, 2006 12:12 PM
To: Struts Users Mailing List
Subject: Re: New to Struts

Did you mean WebWork tutorial? ;-)

On 3/29/06, Dion Gillard <[EMAIL PROTECTED]> wrote:
> Sure, pop over to the coffee shop near my office and we can have a 
> chat ;-)
>
> Sohumour asidedid you read the home page? 
> http://struts.apache.org/ Did you do a google on Struts tutorial ?
> http://www.google.com.au/search?q=struts+tutorial&start=0&ie=utf-8&oe=
> utf-8&client=firefox-a&rls=org.mozilla:en-US:official
>
> That'd be a start.
>
> On 3/30/06, Naveen Sharma <[EMAIL PROTECTED]> wrote:
> >
> > Hi all,
> > Can any one help me with Struts as I am new to it and I am supposed 
> > to learn Struts.
> > Thanx in advance
> > Navin

-
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]



Re: New to Struts

2006-03-29 Thread Michael Jouravlev
Did you mean WebWork tutorial? ;-)

On 3/29/06, Dion Gillard <[EMAIL PROTECTED]> wrote:
> Sure, pop over to the coffee shop near my office and we can have a chat ;-)
>
> Sohumour asidedid you read the home page? http://struts.apache.org/
> Did you do a google on Struts tutorial ?
> http://www.google.com.au/search?q=struts+tutorial&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:en-US:official
>
> That'd be a start.
>
> On 3/30/06, Naveen Sharma <[EMAIL PROTECTED]> wrote:
> >
> > Hi all,
> > Can any one help me with Struts as I am new to it and I am supposed to
> > learn
> > Struts.
> > Thanx in advance
> > Navin

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



Re: New to Struts

2006-03-29 Thread Dion Gillard
Sure, pop over to the coffee shop near my office and we can have a chat ;-)

Sohumour asidedid you read the home page? http://struts.apache.org/
Did you do a google on Struts tutorial ?
http://www.google.com.au/search?q=struts+tutorial&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:en-US:official

That'd be a start.

On 3/30/06, Naveen Sharma <[EMAIL PROTECTED]> wrote:
>
> Hi all,
> Can any one help me with Struts as I am new to it and I am supposed to
> learn
> Struts.
> Thanx in advance
> Navin
>
>


--
http://www.multitask.com.au/people/dion/
Chuck Norris sleeps with a night light. Not because Chuck Norris is afraid
of the dark, but because the dark is afraid of Chuck Norris


Re: New to Struts

2005-12-29 Thread Rick R

[EMAIL PROTECTED] wrote:

Hello Struts world !
I am new to Struts and was wondering if there is any good short 
Struts Tutorial which will help me get jump started with Struts  


The stuff I have here http://www.reumann.net/struts/main.do is sort of 
old, but I'm in the process of updating all of it and redesigning the 
whole site. e-mail me off list to "rick at reumann dot net" and I can 
send you the latest zips of the lessons that are more recent (they dont' 
have corresponding lessons yet to go along with them but they basically 
follow what's out on the existing site but are more built with JSP2.0 in 
mind).



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



Re: New to Struts

2005-07-13 Thread Access Denied
An excellent resource for beginners:

http://tinyurl.com/eyxkp

buddy

On 7/13/05, Kumar deepak <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> This is also a good tutorial http://www.roseindia.net/struts/
> 
> Deepak Kumar
> 
> 
> "[Gmail] LunLun" <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> 
> 1) can someone recommend me a good struts book and/or online tutorial to help 
> me get started quickly.
> I found these two books interesting:
> 
> Struts in Action
> http://www.manning.com/books/husted
> (the source code is available here:
> http://www.manning.com/books/husted/source )
> 
> 
> Jakarta Struts for Dummies
> http://www.amazon.com/exec/obidos/tg/detail/-/0764559575/ref=pd_sxp_f/102-8775537-9281749?v=glance&s=books
> 
> 
> Hope it helps,
> LunLun
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>

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



Re: New to Struts

2005-07-13 Thread Kumar deepak
Hello,
 
This is also a good tutorial http://www.roseindia.net/struts/
 
Deepak Kumar


"[Gmail] LunLun" <[EMAIL PROTECTED]> wrote:
Hello,


1) can someone recommend me a good struts book and/or online tutorial to help 
me get started quickly.
I found these two books interesting:

Struts in Action
http://www.manning.com/books/husted
(the source code is available here:
http://www.manning.com/books/husted/source )


Jakarta Struts for Dummies
http://www.amazon.com/exec/obidos/tg/detail/-/0764559575/ref=pd_sxp_f/102-8775537-9281749?v=glance&s=books


Hope it helps,
LunLun
__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Re: New to Struts

2005-07-12 Thread Frank W. Zammetti
O'Reilly's Programming Jakarta Struts:
http://www.amazon.com/exec/obidos/tg/detail/-/0596006519/qid=1121184599/sr=1-1/ref=sr_1_1/103-6137202-1354222?v=glance&s=books

Struts Survival Guide
http://www.amazon.com/exec/obidos/tg/detail/-/0974848808/qid=1121184657/sr=8-1/ref=pd_bbs_ur_1/103-6137202-1354222?v=glance&s=books&n=507846

I recommend both.  The first goes into quite a bit of detail and will
serve as an excellent reference afterwards, the second will probably save
you some time by avoiding some things in the first place.  And it's not a
bad introduction either.

There's plenty of resources on the web for free of course, 10 minutes with
Google will get you all sorts of good hits.

-- 
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com

On Tue, July 12, 2005 12:07 pm, [Gmail] LunLun said:
> Hello,
>
>
> 1) can someone recommend me a good struts book and/or online tutorial
> to help me get started quickly.
> I found these two books interesting:
>
> Struts in Action
> http://www.manning.com/books/husted
> (the source code is available here:
> http://www.manning.com/books/husted/source )
>
>
> Jakarta Struts for Dummies
> 
> http://www.amazon.com/exec/obidos/tg/detail/-/0764559575/ref=pd_sxp_f/102-8775537-9281749?v=glance&s=books
>
>
> Hope it helps,
> LunLun


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



Re: New to Struts

2005-07-12 Thread [Gmail] LunLun
Hello,


1) can someone recommend me a good struts book and/or online tutorial to 
help me get started quickly.
I found these two books interesting:

Struts in Action
http://www.manning.com/books/husted
(the source code is available here:
http://www.manning.com/books/husted/source )


Jakarta Struts for Dummies

http://www.amazon.com/exec/obidos/tg/detail/-/0764559575/ref=pd_sxp_f/102-8775537-9281749?v=glance&s=books


Hope it helps,
LunLun

RE: New to Struts

2005-04-06 Thread Kumar deepak
Please to to http://www.roseindia.net/struts
its nice tutorial

--- Ruben Cepeda <[EMAIL PROTECTED]> wrote:
> Balajj,
> 
> I would go to the struts home page and start looking
> thru the documentation 
> and tutorial.  Here is a link:  
> http://struts.apache.org/userGuide/index.html to the
> user guide it come in 
> handy.
> 
> *
> Ruben Cepeda
> [EMAIL PROTECTED]
> *
> 
> 
> 
> Original Message Follows
> From: "Balaji H. Kasal" <[EMAIL PROTECTED]>
> Reply-To: "Struts Users Mailing List"
> 
> To: user@struts.apache.org
> Subject: New to Struts
> Date: Mon, 4 Apr 2005 17:27:26 +0530 (IST)
> 
> 
> Hi,
> 
> I am quite new to struts. Please guide me which is
> the best place to start. 
> I will prefer to start with Struts example ()src
> code).
> 
> 
> Thanks in advance.
> 
> --Balaji
> 
>
-
> 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]
> 
> 

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



RE: New to Struts

2005-04-05 Thread Ruben Cepeda
Balajj,
I would go to the struts home page and start looking thru the documentation 
and tutorial.  Here is a link:  
http://struts.apache.org/userGuide/index.html to the user guide it come in 
handy.

*
Ruben Cepeda
[EMAIL PROTECTED]
*

Original Message Follows
From: "Balaji H. Kasal" <[EMAIL PROTECTED]>
Reply-To: "Struts Users Mailing List" 
To: user@struts.apache.org
Subject: New to Struts
Date: Mon, 4 Apr 2005 17:27:26 +0530 (IST)
Hi,
I am quite new to struts. Please guide me which is the best place to start. 
I will prefer to start with Struts example ()src code).

Thanks in advance.
--Balaji
-
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]


Re: New to Struts

2005-04-04 Thread Kumar deepak
Hi,

Please visit http://www.roseindia.net/struts/

They provide example with running code.

Many advance topics like Tiles, Struts Validation
Framework, Java Script validations are covered in this
tutorial. 

Introduction to the Apache Struts
This lesson is an introduction to the Struts and its
architecture.
 
Introduction to the Struts Controller
This lesson is an introduction to Controller part of
the Struts Framework.
 
Introduction to the Struts Action Class
This lesson is an introduction to Action Class of the
Struts Framework.
 
Using Struts ActionFrom Class
This shows how to create user interface form using
struts ActionFrom class and jsp page.
 
Using Struts HTML Tags
Section shows you the different types of Struts HTML
Tags available for the development of views in JSP.
 
Introduction to Struts Validator Framework
Struts Framework provides the functionality to
validate the form data. It can be use to validate the
data on the users browser as well as on the server
side. 
 
Client Side Address Validation in Struts
In this lesson we will create JSP page for entering
the address and use the functionality provided by
Validator Framework to validate the user data on the
browser. 
 
Developing Application with Struts Tiles
In this lesson we will create Struts Tiles
Applications. 
 
Using tiles-defs.xml in Tiles Application
In this lesson you will learn how to define and use
the "plugin" definitation in tiles-defs.xml file. 
 

Good Luck
--- Jan-Jaap Endenburg - Vera <[EMAIL PROTECTED]> wrote:
> I have had a lot of help from:
> 
> www.sourcebeat.com: sample chapter of book
> 'Jakarta Struts Live'
> 
> Good luck,
> Jan-Jaap
> 
> Balaji H. Kasal wrote:
> 
> >
> > Hi,
> >
> > I am quite new to struts. Please guide me which is
> the best place to 
> > start. I will prefer to start with Struts example
> ()src code).
> >
> >
> > Thanks in advance.
> >
> > --Balaji
> >
> >
>
-
> > 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]
> 
> 



__ 
Yahoo! Messenger 
Show us what our next emoticon should look like. Join the fun. 
http://www.advision.webevents.yahoo.com/emoticontest

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



Re: New to Struts

2005-04-04 Thread Jan-Jaap Endenburg - Vera
I have had a lot of help from:
   www.sourcebeat.com: sample chapter of book 'Jakarta Struts Live'
Good luck,
Jan-Jaap
Balaji H. Kasal wrote:
Hi,
I am quite new to struts. Please guide me which is the best place to 
start. I will prefer to start with Struts example ()src code).

Thanks in advance.
--Balaji
-
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]


Re: New to Struts & seeking advice

2005-01-05 Thread Derek Broughton
On Tuesday 04 January 2005 12:55, Jim Barrows wrote:
> > From: Mark McWiggins [mailto:[EMAIL PROTECTED]
>
> > *Is AppFuse worth using as a basis for a real app? I tried
> > working through the tutorial and got it going,
> >   but it is based on Hibernate and I was told that
> > Hibernate may not be mature enough for deployment?
>
> I don't know who told you either of those, but both statement are wrong. 
> AppFuse can use Hibernate, iBatis or JDBC.  Says so right on the box. 
> Hibernate is more then mature enough for deploymnet.  Matt Raible uses both
> appfuse and Hibernate for his production projects.

Matt Raible _is_ AppFuse, isn't he?  I started out a week ago with Matt's 
SpringLive tutorial and think I have Hibernate jumping through the hoops now.  
It works great.
>
> > *   Any other tools or techniques that you fervently recommend or
> > recommend avoiding?
>
> Appfuse is nice if you want something that is IDE agnostic. 

Yeah, I plugged it right into JDeveloper.

> Spring is massively cool for wiring everything together.

It is!  It took me quite some time to figure out why I would want to use it, 
because it's so "behind the scenes" you can't see what it's doing.

> Avoid Java on the AS400 in general.

Come on, Jim, you know you really wanted to say  "Avoid the AS400 in 
general." :-)
-- 
derek

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



Re: New to Struts & seeking advice

2005-01-05 Thread bryan
Hibernate is mature because it works, unlike "mature" EJB,

--b


On Tue, 4 Jan 2005 09:55:34 -0700, Jim Barrows <[EMAIL PROTECTED]> wrote:
> 
> 
> > -Original Message-
> > From: Mark McWiggins [mailto:[EMAIL PROTECTED]
> > Sent: Monday, January 03, 2005 6:19 PM
> > To: user@struts.apache.org
> > Subject: New to Struts & seeking advice
> >
> >
> > Hi All,
> >
> > I've developed several web applications over the last 10
> > years, mostly
> > based on Perl CGI. The 2003 project I did
> > made me swear off CGI and look for something that does a
> > better job of
> > maintaining session and data across pages,
> > among other things. Struts seems to fit the bill.
> >
> > But: what's a recommended set of tools to use? I've been
> > working a bit
> > with Netbeans 4.0 on sample applications and
> > it does a fine job building a .WAR file for deployment. But
> > it doesn't
> > seem to have enough smarts to see when something
> > is broken enough that Tomcat (v 5.0.28) chokes on it with an
> > unhelpful
> > error message. Also, I tried installing the Struts Console
> > into this version of Netbeans and got:
> >
> > Warning - could not install some modules:
> >Struts Console - No module providing the capability
> > org.openide.compiler.CompilationEngine could be found.
> >Struts Console - No module providing the capability
> > org.openide.TopManager could be found.
> >Struts Console - The module named org.openide.deprecated was
> > needed and not found.
> >Struts Console - The module named org.openide.compiler
> > was needed
> > and not found.
> >Struts Console - The module named
> > org.openide.execution.deprecated was needed and not found.
> >
> > So:
> >
> > *Is Eclipse or something else clearly better and more
> > Struts-capable?
> 
> I like Eclipse with the MyEclipse plug-ins for struts.  I also use the spring 
> plugin, and I forget which of the hibernate plugins as well.  Commonclipse is 
> one of those plugins in you thinks you'll never use until you install it, 
> hten you wonder why it wasn't made part of Eclipse.
> 
> 
> > *Is AppFuse worth using as a basis for a real app? I tried
> > working through the tutorial and got it going,
> >   but it is based on Hibernate and I was told that
> > Hibernate may
> > not be mature enough for deployment?
> 
> I don't know who told you either of those, but both statement are wrong.  
> AppFuse can use Hibernate, iBatis or JDBC.  Says so right on the box.  
> Hibernate is more then mature enough for deploymnet.  Matt Raible uses both 
> appfuse and Hibernate for his production projects.
> 
> > *   Any other tools or techniques that you fervently recommend or
> > recommend avoiding?
> 
> Appfuse is nice if you want something that is IDE agnostic.  Spring is 
> massively cool for wiring everything together.
> Avoid Websphere on the AS400 (can't tell you about Websphere on any other 
> platform).  Avoid Java on the AS400 in general.
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-- 
http://www.revoltingdigits.com
https://jestate.dev.java.net

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



RE: New to Struts & seeking advice

2005-01-04 Thread Jim Barrows


> -Original Message-
> From: Mark McWiggins [mailto:[EMAIL PROTECTED]
> Sent: Monday, January 03, 2005 6:19 PM
> To: user@struts.apache.org
> Subject: New to Struts & seeking advice
> 
> 
> Hi All,
> 
> I've developed several web applications over the last 10 
> years, mostly 
> based on Perl CGI. The 2003 project I did
> made me swear off CGI and look for something that does a 
> better job of 
> maintaining session and data across pages,
> among other things. Struts seems to fit the bill.
> 
> But: what's a recommended set of tools to use? I've been 
> working a bit 
> with Netbeans 4.0 on sample applications and
> it does a fine job building a .WAR file for deployment. But 
> it doesn't 
> seem to have enough smarts to see when something
> is broken enough that Tomcat (v 5.0.28) chokes on it with an 
> unhelpful 
> error message. Also, I tried installing the Struts Console
> into this version of Netbeans and got:
>  
> Warning - could not install some modules:
>Struts Console - No module providing the capability 
> org.openide.compiler.CompilationEngine could be found.
>Struts Console - No module providing the capability 
> org.openide.TopManager could be found.
>Struts Console - The module named org.openide.deprecated was 
> needed and not found.
>Struts Console - The module named org.openide.compiler 
> was needed 
> and not found.
>Struts Console - The module named 
> org.openide.execution.deprecated was needed and not found.
> 
> So:
> 
> *Is Eclipse or something else clearly better and more 
> Struts-capable?

I like Eclipse with the MyEclipse plug-ins for struts.  I also use the spring 
plugin, and I forget which of the hibernate plugins as well.  Commonclipse is 
one of those plugins in you thinks you'll never use until you install it, hten 
you wonder why it wasn't made part of Eclipse.


> *Is AppFuse worth using as a basis for a real app? I tried 
> working through the tutorial and got it going,
>   but it is based on Hibernate and I was told that 
> Hibernate may 
> not be mature enough for deployment?

I don't know who told you either of those, but both statement are wrong.  
AppFuse can use Hibernate, iBatis or JDBC.  Says so right on the box.  
Hibernate is more then mature enough for deploymnet.  Matt Raible uses both 
appfuse and Hibernate for his production projects.

> *   Any other tools or techniques that you fervently recommend or 
> recommend avoiding?

Appfuse is nice if you want something that is IDE agnostic.  Spring is 
massively cool for wiring everything together.
Avoid Websphere on the AS400 (can't tell you about Websphere on any other 
platform).  Avoid Java on the AS400 in general.


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



RE: new to Struts

2004-10-01 Thread Varley, Roger

> 
> $2,900 or $29.00 ?
> 

try googling for references to I18N.



__
This e-mail and the documents attached are confidential and intended 
solely for the addressee; it may also be privileged. If you receive this 
e-mail in error, please notify the sender immediately and destroy it.
As its integrity cannot be secured on the Internet, the Atos Origin group 
liability cannot be triggered for the message content. Although the 
sender endeavours to maintain a computer virus-free network, the sender 
does not warrant that this transmission is virus-free and will not be 
liable for any damages resulting from any virus transmitted.
__

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



RE: new to Struts

2004-10-01 Thread McCormack, Chris
$2,900 or $29.00 ?

-Original Message-
From: Sandro Duarte [mailto:[EMAIL PROTECTED]
Sent: 01 October 2004 15:33
To: Struts Users Mailing List
Subject: Re: new to Struts


I use MyEclipse, wich costs me $29,00 a year and do the job beautifully

Sandro


On Fri, 1 Oct 2004 15:57:12 +0200, WOLips <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> is Exadel Struts Studio plug-in for Eclipse a good tool?
> 
> do you use another one?
> 
> Exadel Pro costs $400 what is the good free alternative?
> 
> Regards.
> 
> Sako.
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 



-- 
Sandro Duarte
Analista de Sistemas
TRE-RS/SI

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


***
This e-mail and its attachments are confidential
and are intended for the above named recipient
only. If this has come to you in error, please 
notify the sender immediately and delete this 
e-mail from your system.
You must take no action based on this, nor must 
you copy or disclose it or any part of its contents 
to any person or organisation.
Statements and opinions contained in this email may 
not necessarily represent those of Littlewoods.
Please note that e-mail communications may be monitored.
The registered office of Littlewoods Limited and its
subsidiaries is 100 Old Hall Street, Liverpool, L70 1AB.
Registered number of Littlewoods Limited is 262152.



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



Re: new to Struts

2004-10-01 Thread Sandro Duarte
I use MyEclipse, wich costs me $29,00 a year and do the job beautifully

Sandro


On Fri, 1 Oct 2004 15:57:12 +0200, WOLips <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> is Exadel Struts Studio plug-in for Eclipse a good tool?
> 
> do you use another one?
> 
> Exadel Pro costs $400 what is the good free alternative?
> 
> Regards.
> 
> Sako.
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 



-- 
Sandro Duarte
Analista de Sistemas
TRE-RS/SI

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