Re: Struts File Upload Issue

2011-05-26 Thread Paweł Wielgus
Hi,
maybe validation is not permitting action to be called in this situations?

Best gretings,
Paweł Wielgus.


2011/5/26  vijayaraja...@cognizant.com:
 Hi,



 I have a query regarding file upload functionality in Struts. I am
 having a screen from where I can upload multiple files. When files are
 browsed and submit button is clicked, it will first hit a filter,
 validate the user and calls the action method where uploading the files
 to the repository is done. It happens fine normally. But rarely when
 submit is clicked in UI, it goes to the filter, validates the user and
 doesn't call the action method. It fails somewhere between the filter
 and the action class. It doesn't throw any exceptions from the framework
 too.



 First we thought, it happens when big files are uploaded. Then we found
 even for small files, this happens occasionally. Below is the JRE
 details being used.

 Java version = J2RE 1.5.0 IBM J9 2.3 Linux x86-32 j9vmxi3223ifx-20080811
 (JIT enabled)



 I couldn't figure out why this is happening. Any suggestion regarding
 this is most welcome.



 Thanks in advance,

 Vijay S


 This e-mail and any files transmitted with it are for the sole use of the 
 intended recipient(s) and may contain confidential and privileged information.
 If you are not the intended recipient, please contact the sender by reply 
 e-mail and destroy all copies of the original message.
 Any unauthorized review, use, disclosure, dissemination, forwarding, printing 
 or copying of this email or any action taken in reliance on this e-mail is 
 strictly prohibited and may be unlawful.




-- 
Pozdrawiam,
Paweł Wielgus.

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



RE: Struts File Upload Issue

2011-05-26 Thread VijayaRajan.S
Hi Pawel,

Thanks for your concern. I am getting success out of this user validation. And 
if user validation fails, then it should always happen for a particular user. 
But it happens occasionally.

Regards,
Vijay S

-Original Message-
From: Paweł Wielgus [mailto:poulw...@gmail.com] 
Sent: Thursday, May 26, 2011 12:32 PM
To: Struts Users Mailing List
Subject: Re: Struts File Upload Issue

Hi,
maybe validation is not permitting action to be called in this situations?

Best gretings,
Paweł Wielgus.


2011/5/26  vijayaraja...@cognizant.com:
 Hi,



 I have a query regarding file upload functionality in Struts. I am
 having a screen from where I can upload multiple files. When files are
 browsed and submit button is clicked, it will first hit a filter,
 validate the user and calls the action method where uploading the files
 to the repository is done. It happens fine normally. But rarely when
 submit is clicked in UI, it goes to the filter, validates the user and
 doesn't call the action method. It fails somewhere between the filter
 and the action class. It doesn't throw any exceptions from the framework
 too.



 First we thought, it happens when big files are uploaded. Then we found
 even for small files, this happens occasionally. Below is the JRE
 details being used.

 Java version = J2RE 1.5.0 IBM J9 2.3 Linux x86-32 j9vmxi3223ifx-20080811
 (JIT enabled)



 I couldn't figure out why this is happening. Any suggestion regarding
 this is most welcome.



 Thanks in advance,

 Vijay S


 This e-mail and any files transmitted with it are for the sole use of the 
 intended recipient(s) and may contain confidential and privileged information.
 If you are not the intended recipient, please contact the sender by reply 
 e-mail and destroy all copies of the original message.
 Any unauthorized review, use, disclosure, dissemination, forwarding, printing 
 or copying of this email or any action taken in reliance on this e-mail is 
 strictly prohibited and may be unlawful.




-- 
Pozdrawiam,
Paweł Wielgus.

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


This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information.
If you are not the intended recipient, please contact the sender by reply 
e-mail and destroy all copies of the original message.
Any unauthorized review, use, disclosure, dissemination, forwarding, printing 
or copying of this email or any action taken in reliance on this e-mail is 
strictly prohibited and may be unlawful.

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



Re: Struts File Upload Issue

2011-05-26 Thread Aaron Brown
Are you certain the action class is not being called at all? Are you logging
when the action method executes to be sure?

Is your user a Mac user? I have seen occasional problems with Mac files
(especially fonts) having a null data fork that break the upload process.
 On May 26, 2011 1:01 AM, vijayaraja...@cognizant.com wrote:
 Hi,



 I have a query regarding file upload functionality in Struts. I am
 having a screen from where I can upload multiple files. When files are
 browsed and submit button is clicked, it will first hit a filter,
 validate the user and calls the action method where uploading the files
 to the repository is done. It happens fine normally. But rarely when
 submit is clicked in UI, it goes to the filter, validates the user and
 doesn't call the action method. It fails somewhere between the filter
 and the action class. It doesn't throw any exceptions from the framework
 too.



 First we thought, it happens when big files are uploaded. Then we found
 even for small files, this happens occasionally. Below is the JRE
 details being used.

 Java version = J2RE 1.5.0 IBM J9 2.3 Linux x86-32 j9vmxi3223ifx-20080811
 (JIT enabled)



 I couldn't figure out why this is happening. Any suggestion regarding
 this is most welcome.



 Thanks in advance,

 Vijay S


 This e-mail and any files transmitted with it are for the sole use of the
intended recipient(s) and may contain confidential and privileged
information.
 If you are not the intended recipient, please contact the sender by reply
e-mail and destroy all copies of the original message.
 Any unauthorized review, use, disclosure, dissemination, forwarding,
printing or copying of this email or any action taken in reliance on this
e-mail is strictly prohibited and may be unlawful.


Re: Action not working - HTTP 500

2011-05-26 Thread Will Sumekar
I have a service class inside my action class and I override the constructor
of my action class adding an instantiation of the service class. If I remove
the instantiation, the action will be valid and the page will show
correctly. There is no error in eclipse.

*

public StifBinConversionAction() {

super();

// svc = new ProcessStifOliBinConversion();

}
*

How can I instantiate the service object correctly? I do not want to use
dependency injection like in Spring framework, just want to instantiate one
in the action class.

Thanks
Will


On Wed, May 25, 2011 at 4:18 PM, Will Sumekar will19790...@gmail.comwrote:

 Hi
 I have this action:

 action path=*/view.stif.loader.bin.mapping*

 type=*com.st.mas.wmr.action.StifBinConversionAction* parameter=*
 viewLoaderMapping*

 name=*stifConvForm* scope=*request* validate=*false*

 input=*.editConfig*

 forward name=*success* path=*.viewStifLoadBinMapping*/

 /action

 This action used to work, but now it doesn't and I don't know why. I get HTTP
 Status 500 - No action instance for path /view.stif.loader.bin.mapping could
 be created. The Action class is still there, and no change is done to
 struts-config.xml.

 What other reasons could cause HTTP 500?

 I'm using Struts 1 with Tiles.


 Thanks.
 Will




Job postings

2011-05-26 Thread Robert Taylor

Greetings,

I'm a Java team lead for a company in Atlanta Ga.
My team has 2 positions open for senior level Java/Struts developers.
I was wondering if its okay to post on this list regarding these open 
positions.




/robert 



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



RE: Struts File Upload Issue

2011-05-26 Thread VijayaRajan.S
Hi Aaron,

The user is windows user. Also I am sure the filter class is been called
and the validation is successful. I have logs in my form setter methods
and in the very first line of my action method. But it comes nowhere.
Even the logs in Form Setter methods weren't logged.

Regards,
Vijay S

-Original Message-
From: Aaron Brown [mailto:aa...@thebrownproject.com] 
Sent: Thursday, May 26, 2011 3:23 PM
To: Struts Users Mailing List
Subject: Re: Struts File Upload Issue

Are you certain the action class is not being called at all? Are you
logging
when the action method executes to be sure?

Is your user a Mac user? I have seen occasional problems with Mac files
(especially fonts) having a null data fork that break the upload
process.
 On May 26, 2011 1:01 AM, vijayaraja...@cognizant.com wrote:
 Hi,



 I have a query regarding file upload functionality in Struts. I am
 having a screen from where I can upload multiple files. When files are
 browsed and submit button is clicked, it will first hit a filter,
 validate the user and calls the action method where uploading the
files
 to the repository is done. It happens fine normally. But rarely when
 submit is clicked in UI, it goes to the filter, validates the user and
 doesn't call the action method. It fails somewhere between the filter
 and the action class. It doesn't throw any exceptions from the
framework
 too.



 First we thought, it happens when big files are uploaded. Then we
found
 even for small files, this happens occasionally. Below is the JRE
 details being used.

 Java version = J2RE 1.5.0 IBM J9 2.3 Linux x86-32
j9vmxi3223ifx-20080811
 (JIT enabled)



 I couldn't figure out why this is happening. Any suggestion regarding
 this is most welcome.



 Thanks in advance,

 Vijay S


 This e-mail and any files transmitted with it are for the sole use of
the
intended recipient(s) and may contain confidential and privileged
information.
 If you are not the intended recipient, please contact the sender by
reply
e-mail and destroy all copies of the original message.
 Any unauthorized review, use, disclosure, dissemination, forwarding,
printing or copying of this email or any action taken in reliance on
this
e-mail is strictly prohibited and may be unlawful.

This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information.
If you are not the intended recipient, please contact the sender by reply 
e-mail and destroy all copies of the original message.
Any unauthorized review, use, disclosure, dissemination, forwarding, printing 
or copying of this email or any action taken in reliance on this e-mail is 
strictly prohibited and may be unlawful.

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



Re: Job postings

2011-05-26 Thread sharad singh
Hello Robert,

   What i have to do for this .I want to join.

Regards
Sharad

On Thu, May 26, 2011 at 4:50 PM, Robert Taylor rtay...@dtgresults.comwrote:

 Greetings,

 I'm a Java team lead for a company in Atlanta Ga.
 My team has 2 positions open for senior level Java/Struts developers.
 I was wondering if its okay to post on this list regarding these open
 positions.



 /robert

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




-- 
Sharad Singh
9450328117
http://202.141.40.215:8080/brihaspati/servlet/brihaspati


RE: Job postings

2011-05-26 Thread Martin Gainty

does'nt dale live down there?

Martin 
__ 
Vote for me and get a 1000$ Tiffany's store credit...Newt Gingrich




 Date: Thu, 26 May 2011 17:14:48 +0530
 Subject: Re: Job postings
 From: sharad23...@gmail.com
 To: user@struts.apache.org
 
 Hello Robert,
 
What i have to do for this .I want to join.
 
 Regards
 Sharad
 
 On Thu, May 26, 2011 at 4:50 PM, Robert Taylor rtay...@dtgresults.comwrote:
 
  Greetings,
 
  I'm a Java team lead for a company in Atlanta Ga.
  My team has 2 positions open for senior level Java/Struts developers.
  I was wondering if its okay to post on this list regarding these open
  positions.
 
 
 
  /robert
 
  -
  To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
  For additional commands, e-mail: user-h...@struts.apache.org
 
 
 
 
 -- 
 Sharad Singh
 9450328117
 http://202.141.40.215:8080/brihaspati/servlet/brihaspati
  

RE: Struts File Upload Issue

2011-05-26 Thread Martin Gainty

!-- speculation but comment out the validators in *validator*.xml and then --
!-- once the error is reproduced then put in debug statements --
validators
validator name=required 
class=com.opensymphony.xwork2.validator.validators.RequiredFieldValidator/
!-- validator name=requiredstring 
class=com.opensymphony.xwork2.validator.validators.RequiredStringValidator/ 
--
/validators

//if problem detected then log debug code for all methods of 
RequiredFieldValidator

Martin 
__ 
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.




 Subject: RE: Struts File Upload Issue
 Date: Thu, 26 May 2011 13:14:18 +0530
 From: vijayaraja...@cognizant.com
 To: user@struts.apache.org
 
 Hi Pawel,
 
 Thanks for your concern. I am getting success out of this user validation. 
 And if user validation fails, then it should always happen for a particular 
 user. But it happens occasionally.
 
 Regards,
 Vijay S
 
 -Original Message-
 From: Paweł Wielgus [mailto:poulw...@gmail.com] 
 Sent: Thursday, May 26, 2011 12:32 PM
 To: Struts Users Mailing List
 Subject: Re: Struts File Upload Issue
 
 Hi,
 maybe validation is not permitting action to be called in this situations?
 
 Best gretings,
 Paweł Wielgus.
 
 
 2011/5/26  vijayaraja...@cognizant.com:
  Hi,
 
 
 
  I have a query regarding file upload functionality in Struts. I am
  having a screen from where I can upload multiple files. When files are
  browsed and submit button is clicked, it will first hit a filter,
  validate the user and calls the action method where uploading the files
  to the repository is done. It happens fine normally. But rarely when
  submit is clicked in UI, it goes to the filter, validates the user and
  doesn't call the action method. It fails somewhere between the filter
  and the action class. It doesn't throw any exceptions from the framework
  too.
 
 
 
  First we thought, it happens when big files are uploaded. Then we found
  even for small files, this happens occasionally. Below is the JRE
  details being used.
 
  Java version = J2RE 1.5.0 IBM J9 2.3 Linux x86-32 j9vmxi3223ifx-20080811
  (JIT enabled)
 
 
 
  I couldn't figure out why this is happening. Any suggestion regarding
  this is most welcome.
 
 
 
  Thanks in advance,
 
  Vijay S
 
 
  This e-mail and any files transmitted with it are for the sole use of the 
  intended recipient(s) and may contain confidential and privileged 
  information.
  If you are not the intended recipient, please contact the sender by reply 
  e-mail and destroy all copies of the original message.
  Any unauthorized review, use, disclosure, dissemination, forwarding, 
  printing or copying of this email or any action taken in reliance on this 
  e-mail is strictly prohibited and may be unlawful.
 
 
 
 
 -- 
 Pozdrawiam,
 Paweł Wielgus.
 
 -
 To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
 For additional commands, e-mail: user-h...@struts.apache.org
 
 
 This e-mail and any files transmitted with it are for the sole use of the 
 intended recipient(s) and may contain confidential and privileged information.
 If you are not the intended recipient, please contact the sender by reply 
 e-mail and destroy all copies of the original message.
 Any unauthorized review, use, disclosure, dissemination, forwarding, printing 
 or copying of this email or any action taken in reliance on this e-mail is 
 strictly prohibited and may be unlawful.
 
 -
 To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
 For additional commands, e-mail: user-h...@struts.apache.org
 
  

Re: Job postings

2011-05-26 Thread Robert Taylor

Don't think I know Dale.

/robert
- Original Message - 
From: Martin Gainty mgai...@hotmail.com

To: Struts Users Mailing List user@struts.apache.org
Sent: Thursday, May 26, 2011 7:51 AM
Subject: RE: Job postings



does'nt dale live down there?

Martin
__
Vote for me and get a 1000$ Tiffany's store credit...Newt Gingrich





Date: Thu, 26 May 2011 17:14:48 +0530
Subject: Re: Job postings
From: sharad23...@gmail.com
To: user@struts.apache.org

Hello Robert,

   What i have to do for this .I want to join.

Regards
Sharad

On Thu, May 26, 2011 at 4:50 PM, Robert Taylor 
rtay...@dtgresults.comwrote:


 Greetings,

 I'm a Java team lead for a company in Atlanta Ga.
 My team has 2 positions open for senior level Java/Struts developers.
 I was wondering if its okay to post on this list regarding these open
 positions.



 /robert

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




--
Sharad Singh
9450328117
http://202.141.40.215:8080/brihaspati/servlet/brihaspati




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



[OT] Re: Job postings

2011-05-26 Thread Dale Newfield

On 5/26/11 7:51 AM, Martin Gainty wrote:

does'nt dale live down there?


Thanks for thinking of me.  The reason I've been scarce around these 
parts lately is that I finally had to get a real job at the end of 
last year, so I no longer have as much time to respond to questions 
here, and I'm no longer in the market for a job.  I'm now working at 
Turner Entertainment, and we're also looking for senior level folks, but 
we've been having quite a difficult time finding well qualified 
candidates ourselves.  In Atlanta my first suggestion would be to post 
to the Atlanta Java Users' Group job mailing list, but seeing as we're 
still looking I'm not sure how much that advice is worth.


-Dale


On Thu, May 26, 2011 at 4:50 PM, Robert Taylorrtay...@dtgresults.comwrote:


Greetings,

I'm a Java team lead for a company in Atlanta Ga.
My team has 2 positions open for senior level Java/Struts developers.
I was wondering if its okay to post on this list regarding these open
positions.

/robert


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



Re: [OT] Re: Job postings

2011-05-26 Thread frans
I am leading jug in indonesia

Try to make struts2 as default framework, combine s2 spring hibernate

Extend the struts2 plugins and spring datasource to more wider

We are not english speaking country

I am glad can share our program, may be can start do something together


Sent from my BlackBerry®
powered by Sinyal Kuat INDOSAT

-Original Message-
From: Dale Newfield d...@newfield.org
Date: Thu, 26 May 2011 09:06:30 
To: Struts Users Mailing Listuser@struts.apache.org
Reply-To: Struts Users Mailing List user@struts.apache.org
Subject: [OT] Re: Job postings

On 5/26/11 7:51 AM, Martin Gainty wrote:
 does'nt dale live down there?

Thanks for thinking of me.  The reason I've been scarce around these 
parts lately is that I finally had to get a real job at the end of 
last year, so I no longer have as much time to respond to questions 
here, and I'm no longer in the market for a job.  I'm now working at 
Turner Entertainment, and we're also looking for senior level folks, but 
we've been having quite a difficult time finding well qualified 
candidates ourselves.  In Atlanta my first suggestion would be to post 
to the Atlanta Java Users' Group job mailing list, but seeing as we're 
still looking I'm not sure how much that advice is worth.

-Dale

 On Thu, May 26, 2011 at 4:50 PM, Robert Taylorrtay...@dtgresults.comwrote:

 Greetings,

 I'm a Java team lead for a company in Atlanta Ga.
 My team has 2 positions open for senior level Java/Struts developers.
 I was wondering if its okay to post on this list regarding these open
 positions.

 /robert

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



Re: [OT] Re: Job postings

2011-05-26 Thread Robert Taylor

Hi Dale,

We have a posting on the AJUG site.
I've also been to the latest AJUG meetings.
When I was there, 6 companies stood up and declared many openings
for Java developers.

Thanks for the advice.

/robert
- Original Message - 
From: Dale Newfield d...@newfield.org

To: Struts Users Mailing List user@struts.apache.org
Sent: Thursday, May 26, 2011 9:06 AM
Subject: [OT] Re: Job postings



On 5/26/11 7:51 AM, Martin Gainty wrote:

does'nt dale live down there?


Thanks for thinking of me.  The reason I've been scarce around these parts 
lately is that I finally had to get a real job at the end of last year, 
so I no longer have as much time to respond to questions here, and I'm no 
longer in the market for a job.  I'm now working at Turner Entertainment, 
and we're also looking for senior level folks, but we've been having quite 
a difficult time finding well qualified candidates ourselves.  In Atlanta 
my first suggestion would be to post to the Atlanta Java Users' Group job 
mailing list, but seeing as we're still looking I'm not sure how much that 
advice is worth.


-Dale

On Thu, May 26, 2011 at 4:50 PM, Robert 
Taylorrtay...@dtgresults.comwrote:



Greetings,

I'm a Java team lead for a company in Atlanta Ga.
My team has 2 positions open for senior level Java/Struts developers.
I was wondering if its okay to post on this list regarding these open
positions.

/robert


-
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: Action not working - HTTP 500

2011-05-26 Thread Dave Newton
So you're asking us how to instantiate a class of yours correctly? How would
we know?

Dave
 On May 26, 2011 6:10 AM, Will Sumekar will19790...@gmail.com wrote:
 I have a service class inside my action class and I override the
constructor
 of my action class adding an instantiation of the service class. If I
remove
 the instantiation, the action will be valid and the page will show
 correctly. There is no error in eclipse.

 *

 public StifBinConversionAction() {

 super();

 // svc = new ProcessStifOliBinConversion();

 }
 *

 How can I instantiate the service object correctly? I do not want to use
 dependency injection like in Spring framework, just want to instantiate
one
 in the action class.

 Thanks
 Will


 On Wed, May 25, 2011 at 4:18 PM, Will Sumekar will19790...@gmail.com
wrote:

 Hi
 I have this action:

 action path=*/view.stif.loader.bin.mapping*

 type=*com.st.mas.wmr.action.StifBinConversionAction* parameter=*
 viewLoaderMapping*

 name=*stifConvForm* scope=*request* validate=*false*

 input=*.editConfig*

 forward name=*success* path=*.viewStifLoadBinMapping*/

 /action

 This action used to work, but now it doesn't and I don't know why. I get
HTTP
 Status 500 - No action instance for path /view.stif.loader.bin.mapping
could
 be created. The Action class is still there, and no change is done to
 struts-config.xml.

 What other reasons could cause HTTP 500?

 I'm using Struts 1 with Tiles.


 Thanks.
 Will




Re: [OT] Re: Job postings

2011-05-26 Thread Mohamed SIDI
Hello there,

This may be one of the most important opportunity what about one witch is
located in France ? there are some conditions to candidate :)

2011/5/26 Robert Taylor rtay...@dtgresults.com

 Hi Dale,

 We have a posting on the AJUG site.
 I've also been to the latest AJUG meetings.
 When I was there, 6 companies stood up and declared many openings
 for Java developers.

 Thanks for the advice.

 /robert
 - Original Message - From: Dale Newfield d...@newfield.org

 To: Struts Users Mailing List user@struts.apache.org
 Sent: Thursday, May 26, 2011 9:06 AM

 Subject: [OT] Re: Job postings


  On 5/26/11 7:51 AM, Martin Gainty wrote:

 does'nt dale live down there?


 Thanks for thinking of me.  The reason I've been scarce around these parts
 lately is that I finally had to get a real job at the end of last year, so
 I no longer have as much time to respond to questions here, and I'm no
 longer in the market for a job.  I'm now working at Turner Entertainment,
 and we're also looking for senior level folks, but we've been having quite a
 difficult time finding well qualified candidates ourselves.  In Atlanta my
 first suggestion would be to post to the Atlanta Java Users' Group job
 mailing list, but seeing as we're still looking I'm not sure how much that
 advice is worth.

 -Dale

  On Thu, May 26, 2011 at 4:50 PM, Robert Taylorrtay...@dtgresults.com
 wrote:

  Greetings,

 I'm a Java team lead for a company in Atlanta Ga.
 My team has 2 positions open for senior level Java/Struts developers.
 I was wondering if its okay to post on this list regarding these open
 positions.

 /robert


 -
 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




-- 


Cordialement

Mohamed


Re: [OT] Re: Job postings

2011-05-26 Thread sjmedina . rosa
And one who is located in Domincan Republic?

Hehehe




Sent via BlackBerry® device.

-Original Message-
From: Mohamed SIDI mhm.s...@gmail.com
Date: Thu, 26 May 2011 15:41:34 
To: Struts Users Mailing Listuser@struts.apache.org
Reply-To: Struts Users Mailing List user@struts.apache.org
Subject: Re: [OT] Re: Job postings

Hello there,

This may be one of the most important opportunity what about one witch is
located in France ? there are some conditions to candidate :)

2011/5/26 Robert Taylor rtay...@dtgresults.com

 Hi Dale,

 We have a posting on the AJUG site.
 I've also been to the latest AJUG meetings.
 When I was there, 6 companies stood up and declared many openings
 for Java developers.

 Thanks for the advice.

 /robert
 - Original Message - From: Dale Newfield d...@newfield.org

 To: Struts Users Mailing List user@struts.apache.org
 Sent: Thursday, May 26, 2011 9:06 AM

 Subject: [OT] Re: Job postings


  On 5/26/11 7:51 AM, Martin Gainty wrote:

 does'nt dale live down there?


 Thanks for thinking of me.  The reason I've been scarce around these parts
 lately is that I finally had to get a real job at the end of last year, so
 I no longer have as much time to respond to questions here, and I'm no
 longer in the market for a job.  I'm now working at Turner Entertainment,
 and we're also looking for senior level folks, but we've been having quite a
 difficult time finding well qualified candidates ourselves.  In Atlanta my
 first suggestion would be to post to the Atlanta Java Users' Group job
 mailing list, but seeing as we're still looking I'm not sure how much that
 advice is worth.

 -Dale

  On Thu, May 26, 2011 at 4:50 PM, Robert Taylorrtay...@dtgresults.com
 wrote:

  Greetings,

 I'm a Java team lead for a company in Atlanta Ga.
 My team has 2 positions open for senior level Java/Struts developers.
 I was wondering if its okay to post on this list regarding these open
 positions.

 /robert


 -
 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




-- 


Cordialement

Mohamed



Re: [OT] Re: Job postings

2011-05-26 Thread Robert Taylor

Hello,

Currently we are only considering candidates in the Atlanta, GA area.
Telecommuting is an option; however, you will be required to be onsite
at various times.

Thanks,

/robert
- Original Message - 
From: Mohamed SIDI mhm.s...@gmail.com

To: Struts Users Mailing List user@struts.apache.org
Sent: Thursday, May 26, 2011 9:41 AM
Subject: Re: [OT] Re: Job postings



Hello there,

This may be one of the most important opportunity what about one witch is
located in France ? there are some conditions to candidate :)

2011/5/26 Robert Taylor rtay...@dtgresults.com


Hi Dale,

We have a posting on the AJUG site.
I've also been to the latest AJUG meetings.
When I was there, 6 companies stood up and declared many openings
for Java developers.

Thanks for the advice.

/robert
- Original Message - From: Dale Newfield d...@newfield.org

To: Struts Users Mailing List user@struts.apache.org
Sent: Thursday, May 26, 2011 9:06 AM

Subject: [OT] Re: Job postings


 On 5/26/11 7:51 AM, Martin Gainty wrote:



does'nt dale live down there?



Thanks for thinking of me.  The reason I've been scarce around these 
parts
lately is that I finally had to get a real job at the end of last 
year, so

I no longer have as much time to respond to questions here, and I'm no
longer in the market for a job.  I'm now working at Turner 
Entertainment,
and we're also looking for senior level folks, but we've been having 
quite a
difficult time finding well qualified candidates ourselves.  In Atlanta 
my

first suggestion would be to post to the Atlanta Java Users' Group job
mailing list, but seeing as we're still looking I'm not sure how much 
that

advice is worth.

-Dale

 On Thu, May 26, 2011 at 4:50 PM, Robert Taylorrtay...@dtgresults.com

wrote:

 Greetings,


I'm a Java team lead for a company in Atlanta Ga.
My team has 2 positions open for senior level Java/Struts developers.
I was wondering if its okay to post on this list regarding these open
positions.

/robert




-
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





--


Cordialement

Mohamed




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



RE: [OT] Re: Job postings

2011-05-26 Thread Patrick Cosmo
Can interested people please have this conversation with Robert privately,
instead of on the list. I don't need to see all the back and forth on
this.

-Original Message-
From: Robert Taylor [mailto:rtay...@dtgresults.com]
Sent: Thursday, May 26, 2011 10:01 AM
To: Struts Users Mailing List
Subject: Re: [OT] Re: Job postings

Hello,

Currently we are only considering candidates in the Atlanta, GA area.
Telecommuting is an option; however, you will be required to be onsite
at various times.

Thanks,

/robert
- Original Message -
From: Mohamed SIDI mhm.s...@gmail.com
To: Struts Users Mailing List user@struts.apache.org
Sent: Thursday, May 26, 2011 9:41 AM
Subject: Re: [OT] Re: Job postings


 Hello there,

 This may be one of the most important opportunity what about one witch
is
 located in France ? there are some conditions to candidate :)

 2011/5/26 Robert Taylor rtay...@dtgresults.com

 Hi Dale,

 We have a posting on the AJUG site.
 I've also been to the latest AJUG meetings.
 When I was there, 6 companies stood up and declared many openings
 for Java developers.

 Thanks for the advice.

 /robert
 - Original Message - From: Dale Newfield d...@newfield.org

 To: Struts Users Mailing List user@struts.apache.org
 Sent: Thursday, May 26, 2011 9:06 AM

 Subject: [OT] Re: Job postings


  On 5/26/11 7:51 AM, Martin Gainty wrote:

 does'nt dale live down there?


 Thanks for thinking of me.  The reason I've been scarce around these
 parts
 lately is that I finally had to get a real job at the end of last
 year, so
 I no longer have as much time to respond to questions here, and I'm no
 longer in the market for a job.  I'm now working at Turner
 Entertainment,
 and we're also looking for senior level folks, but we've been having
 quite a
 difficult time finding well qualified candidates ourselves.  In
Atlanta
 my
 first suggestion would be to post to the Atlanta Java Users' Group job
 mailing list, but seeing as we're still looking I'm not sure how much
 that
 advice is worth.

 -Dale

  On Thu, May 26, 2011 at 4:50 PM, Robert Taylorrtay...@dtgresults.com
 wrote:

  Greetings,

 I'm a Java team lead for a company in Atlanta Ga.
 My team has 2 positions open for senior level Java/Struts
developers.
 I was wondering if its okay to post on this list regarding these
open
 positions.

 /robert


 -
 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




 --


 Cordialement

 Mohamed



-
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: [OT] Re: Job postings

2011-05-26 Thread Wes Wannemacher
I'm not in the Atlanta, GA area, I am in Ohio, but I am willing to come down
from time to time. I work as an independent contractor, hopefully that isn't
a problem. If you are interested, let me know and I'll send my resume and
rates. I will highlight this offer by mentioning that I am a PMC member of
the Struts team. You can check that here -

http://struts.apache.org/dev/volunteers.html

http://struts.apache.org/dev/volunteers.html-Wes

On Thu, May 26, 2011 at 10:01 AM, Robert Taylor rtay...@dtgresults.comwrote:

 Hello,

 Currently we are only considering candidates in the Atlanta, GA area.
 Telecommuting is an option; however, you will be required to be onsite
 at various times.

 Thanks,

 /robert
 - Original Message - From: Mohamed SIDI mhm.s...@gmail.com

 To: Struts Users Mailing List user@struts.apache.org
 Sent: Thursday, May 26, 2011 9:41 AM

 Subject: Re: [OT] Re: Job postings


  Hello there,

 This may be one of the most important opportunity what about one witch is
 located in France ? there are some conditions to candidate :)

 2011/5/26 Robert Taylor rtay...@dtgresults.com

  Hi Dale,

 We have a posting on the AJUG site.
 I've also been to the latest AJUG meetings.
 When I was there, 6 companies stood up and declared many openings
 for Java developers.

 Thanks for the advice.

 /robert
 - Original Message - From: Dale Newfield d...@newfield.org

 To: Struts Users Mailing List user@struts.apache.org
 Sent: Thursday, May 26, 2011 9:06 AM

 Subject: [OT] Re: Job postings


  On 5/26/11 7:51 AM, Martin Gainty wrote:


  does'nt dale live down there?


 Thanks for thinking of me.  The reason I've been scarce around these
 parts
 lately is that I finally had to get a real job at the end of last
 year, so
 I no longer have as much time to respond to questions here, and I'm no
 longer in the market for a job.  I'm now working at Turner
 Entertainment,
 and we're also looking for senior level folks, but we've been having
 quite a
 difficult time finding well qualified candidates ourselves.  In Atlanta
 my
 first suggestion would be to post to the Atlanta Java Users' Group job
 mailing list, but seeing as we're still looking I'm not sure how much
 that
 advice is worth.

 -Dale

  On Thu, May 26, 2011 at 4:50 PM, Robert Taylorrtay...@dtgresults.com

 wrote:

  Greetings,


 I'm a Java team lead for a company in Atlanta Ga.
 My team has 2 positions open for senior level Java/Struts developers.
 I was wondering if its okay to post on this list regarding these open
 positions.

 /robert


  -
 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




 --


 Cordialement

 Mohamed



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




-- 
Wes Wannemacher

Head Engineer, WanTii, Inc.
Need Training? Struts, Spring, Maven, Tomcat...
Ask me for a quote!


LookUpDispatchAction problem with 'bestätigen' button name

2011-05-26 Thread blackout
Hi, 

We've got a big problem with Struts 1.2 internationalization. 

When we change the Locale to German the Confirm button is called bestätigen. 

The ä character is not getting converted properly by Struts and we get the
error 'HTTP Status 400 - Request[/saveR] does not contain handler
parameter named actionMethod' 

The line in the jsp is : 
input type=submit name=actionMethod value=bestätigen class=button
id=button 

The line in the resources (Unix) :
ApplicationResources_de.properties:button.confirm=bestätigen

We did fix a problem where in the View Source it was converting the ä char
to 2 more special chars like above when it pulled it off Unix. Everything
looks ok now, but behind the scenes Struts is translating the button label
wrong. 

We have tried adding enctype=application/x-www-form-urlencoded on the
html:form that is submitted, but it made no difference. 

Please can you help me if you have come across this problem before. 

Thank you

--
View this message in context: 
http://struts.1045723.n5.nabble.com/LookUpDispatchAction-problem-with-bestatigen-button-name-tp4428718p4428718.html
Sent from the Struts - User mailing list archive at Nabble.com.

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



RE: [OT] Re: Job postings

2011-05-26 Thread Patrick Cosmo
Wes, why do I want to know this? Can't you email Robert directly:
rtay...@dtgresults.com


-Original Message-
From: Wes Wannemacher [mailto:w...@wantii.com]
Sent: Thursday, May 26, 2011 10:09 AM
To: Struts Users Mailing List
Subject: Re: [OT] Re: Job postings

I'm not in the Atlanta, GA area, I am in Ohio, but I am willing to come
down
from time to time. I work as an independent contractor, hopefully that
isn't
a problem. If you are interested, let me know and I'll send my resume and
rates. I will highlight this offer by mentioning that I am a PMC member of
the Struts team. You can check that here -

http://struts.apache.org/dev/volunteers.html

http://struts.apache.org/dev/volunteers.html-Wes

On Thu, May 26, 2011 at 10:01 AM, Robert Taylor
rtay...@dtgresults.comwrote:

 Hello,

 Currently we are only considering candidates in the Atlanta, GA area.
 Telecommuting is an option; however, you will be required to be onsite
 at various times.

 Thanks,

 /robert
 - Original Message - From: Mohamed SIDI mhm.s...@gmail.com

 To: Struts Users Mailing List user@struts.apache.org
 Sent: Thursday, May 26, 2011 9:41 AM

 Subject: Re: [OT] Re: Job postings


  Hello there,

 This may be one of the most important opportunity what about one witch
is
 located in France ? there are some conditions to candidate :)

 2011/5/26 Robert Taylor rtay...@dtgresults.com

  Hi Dale,

 We have a posting on the AJUG site.
 I've also been to the latest AJUG meetings.
 When I was there, 6 companies stood up and declared many openings
 for Java developers.

 Thanks for the advice.

 /robert
 - Original Message - From: Dale Newfield d...@newfield.org

 To: Struts Users Mailing List user@struts.apache.org
 Sent: Thursday, May 26, 2011 9:06 AM

 Subject: [OT] Re: Job postings


  On 5/26/11 7:51 AM, Martin Gainty wrote:


  does'nt dale live down there?


 Thanks for thinking of me.  The reason I've been scarce around these
 parts
 lately is that I finally had to get a real job at the end of last
 year, so
 I no longer have as much time to respond to questions here, and I'm
no
 longer in the market for a job.  I'm now working at Turner
 Entertainment,
 and we're also looking for senior level folks, but we've been having
 quite a
 difficult time finding well qualified candidates ourselves.  In
Atlanta
 my
 first suggestion would be to post to the Atlanta Java Users' Group
job
 mailing list, but seeing as we're still looking I'm not sure how much
 that
 advice is worth.

 -Dale

  On Thu, May 26, 2011 at 4:50 PM, Robert
Taylorrtay...@dtgresults.com

 wrote:

  Greetings,


 I'm a Java team lead for a company in Atlanta Ga.
 My team has 2 positions open for senior level Java/Struts
developers.
 I was wondering if its okay to post on this list regarding these
open
 positions.

 /robert



-
 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




 --


 Cordialement

 Mohamed



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




-- 
Wes Wannemacher

Head Engineer, WanTii, Inc.
Need Training? Struts, Spring, Maven, Tomcat...
Ask me for a quote!

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



Re: [OT] Re: Job postings

2011-05-26 Thread Wes Wannemacher
damnit, sorry, I hit reply, but didn't pay attention to where it was going
:(

Sorry about that.

-Wes

On Thu, May 26, 2011 at 10:10 AM, Patrick Cosmo pco...@incognito.comwrote:

 Wes, why do I want to know this? Can't you email Robert directly:
 rtay...@dtgresults.com


 -Original Message-
 From: Wes Wannemacher [mailto:w...@wantii.com]
 Sent: Thursday, May 26, 2011 10:09 AM
 To: Struts Users Mailing List
 Subject: Re: [OT] Re: Job postings

 I'm not in the Atlanta, GA area, I am in Ohio, but I am willing to come
 down
 from time to time. I work as an independent contractor, hopefully that
 isn't
 a problem. If you are interested, let me know and I'll send my resume and
 rates. I will highlight this offer by mentioning that I am a PMC member of
 the Struts team. You can check that here -

 http://struts.apache.org/dev/volunteers.html

 http://struts.apache.org/dev/volunteers.html-Wes

 On Thu, May 26, 2011 at 10:01 AM, Robert Taylor
 rtay...@dtgresults.comwrote:

  Hello,
 
  Currently we are only considering candidates in the Atlanta, GA area.
  Telecommuting is an option; however, you will be required to be onsite
  at various times.
 
  Thanks,
 
  /robert
  - Original Message - From: Mohamed SIDI mhm.s...@gmail.com
 
  To: Struts Users Mailing List user@struts.apache.org
  Sent: Thursday, May 26, 2011 9:41 AM
 
  Subject: Re: [OT] Re: Job postings
 
 
   Hello there,
 
  This may be one of the most important opportunity what about one witch
 is
  located in France ? there are some conditions to candidate :)
 
  2011/5/26 Robert Taylor rtay...@dtgresults.com
 
   Hi Dale,
 
  We have a posting on the AJUG site.
  I've also been to the latest AJUG meetings.
  When I was there, 6 companies stood up and declared many openings
  for Java developers.
 
  Thanks for the advice.
 
  /robert
  - Original Message - From: Dale Newfield d...@newfield.org
 
  To: Struts Users Mailing List user@struts.apache.org
  Sent: Thursday, May 26, 2011 9:06 AM
 
  Subject: [OT] Re: Job postings
 
 
   On 5/26/11 7:51 AM, Martin Gainty wrote:
 
 
   does'nt dale live down there?
 
 
  Thanks for thinking of me.  The reason I've been scarce around these
  parts
  lately is that I finally had to get a real job at the end of last
  year, so
  I no longer have as much time to respond to questions here, and I'm
 no
  longer in the market for a job.  I'm now working at Turner
  Entertainment,
  and we're also looking for senior level folks, but we've been having
  quite a
  difficult time finding well qualified candidates ourselves.  In
 Atlanta
  my
  first suggestion would be to post to the Atlanta Java Users' Group
 job
  mailing list, but seeing as we're still looking I'm not sure how much
  that
  advice is worth.
 
  -Dale
 
   On Thu, May 26, 2011 at 4:50 PM, Robert
 Taylorrtay...@dtgresults.com
 
  wrote:
 
   Greetings,
 
 
  I'm a Java team lead for a company in Atlanta Ga.
  My team has 2 positions open for senior level Java/Struts
 developers.
  I was wondering if its okay to post on this list regarding these
 open
  positions.
 
  /robert
 
 
 
 -
  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
 
 
 
 
  --
 
 
  Cordialement
 
  Mohamed
 
 
 
  -
  To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
  For additional commands, e-mail: user-h...@struts.apache.org
 
 


 --
 Wes Wannemacher

 Head Engineer, WanTii, Inc.
 Need Training? Struts, Spring, Maven, Tomcat...
 Ask me for a quote!

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




-- 
Wes Wannemacher

Head Engineer, WanTii, Inc.
Need Training? Struts, Spring, Maven, Tomcat...
Ask me for a quote!


Re: [OT] Re: Job postings

2011-05-26 Thread Brian Thompson
LOL ... I had a feeling that was going to happen as soon as I saw Patrick's
request!  It's like an extension of Murphy's Law...

-Brian



On Thu, May 26, 2011 at 9:13 AM, Wes Wannemacher w...@wantii.com wrote:

 damnit, sorry, I hit reply, but didn't pay attention to where it was going
 :(

 Sorry about that.

 -Wes

 On Thu, May 26, 2011 at 10:10 AM, Patrick Cosmo pco...@incognito.com
 wrote:

  Wes, why do I want to know this? Can't you email Robert directly:
  rtay...@dtgresults.com
 
 
  -Original Message-
  From: Wes Wannemacher [mailto:w...@wantii.com]
  Sent: Thursday, May 26, 2011 10:09 AM
  To: Struts Users Mailing List
  Subject: Re: [OT] Re: Job postings
 
  I'm not in the Atlanta, GA area, I am in Ohio, but I am willing to come
  down
  from time to time. I work as an independent contractor, hopefully that
  isn't
  a problem. If you are interested, let me know and I'll send my resume and
  rates. I will highlight this offer by mentioning that I am a PMC member
 of
  the Struts team. You can check that here -
 
  http://struts.apache.org/dev/volunteers.html
 
  http://struts.apache.org/dev/volunteers.html-Wes
 
  On Thu, May 26, 2011 at 10:01 AM, Robert Taylor
  rtay...@dtgresults.comwrote:
 
   Hello,
  
   Currently we are only considering candidates in the Atlanta, GA area.
   Telecommuting is an option; however, you will be required to be onsite
   at various times.
  
   Thanks,
  
   /robert
   - Original Message - From: Mohamed SIDI mhm.s...@gmail.com
  
   To: Struts Users Mailing List user@struts.apache.org
   Sent: Thursday, May 26, 2011 9:41 AM
  
   Subject: Re: [OT] Re: Job postings
  
  
Hello there,
  
   This may be one of the most important opportunity what about one witch
  is
   located in France ? there are some conditions to candidate :)
  
   2011/5/26 Robert Taylor rtay...@dtgresults.com
  
Hi Dale,
  
   We have a posting on the AJUG site.
   I've also been to the latest AJUG meetings.
   When I was there, 6 companies stood up and declared many openings
   for Java developers.
  
   Thanks for the advice.
  
   /robert
   - Original Message - From: Dale Newfield 
 d...@newfield.org
  
   To: Struts Users Mailing List user@struts.apache.org
   Sent: Thursday, May 26, 2011 9:06 AM
  
   Subject: [OT] Re: Job postings
  
  
On 5/26/11 7:51 AM, Martin Gainty wrote:
  
  
does'nt dale live down there?
  
  
   Thanks for thinking of me.  The reason I've been scarce around these
   parts
   lately is that I finally had to get a real job at the end of last
   year, so
   I no longer have as much time to respond to questions here, and I'm
  no
   longer in the market for a job.  I'm now working at Turner
   Entertainment,
   and we're also looking for senior level folks, but we've been having
   quite a
   difficult time finding well qualified candidates ourselves.  In
  Atlanta
   my
   first suggestion would be to post to the Atlanta Java Users' Group
  job
   mailing list, but seeing as we're still looking I'm not sure how
 much
   that
   advice is worth.
  
   -Dale
  
On Thu, May 26, 2011 at 4:50 PM, Robert
  Taylorrtay...@dtgresults.com
  
   wrote:
  
Greetings,
  
  
   I'm a Java team lead for a company in Atlanta Ga.
   My team has 2 positions open for senior level Java/Struts
  developers.
   I was wondering if its okay to post on this list regarding these
  open
   positions.
  
   /robert
  
  
  
  -
   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
  
  
  
  
   --
  
  
   Cordialement
  
   Mohamed
  
  
  
   -
   To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
   For additional commands, e-mail: user-h...@struts.apache.org
  
  
 
 
  --
  Wes Wannemacher
 
  Head Engineer, WanTii, Inc.
  Need Training? Struts, Spring, Maven, Tomcat...
  Ask me for a quote!
 
  -
  To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
  For additional commands, e-mail: user-h...@struts.apache.org
 
 


 --
 Wes Wannemacher

 Head Engineer, WanTii, Inc.
 Need Training? Struts, Spring, Maven, Tomcat...
 Ask me for a quote!



Re: LookUpDispatchAction problem with 'bestätigen' button name

2011-05-26 Thread blackout
SOLVED ALREADY  
added request.setCharacterEncoding(UTF-8); near the top of the security
filter 
http://www.mail-archive.com/struts-user@jakarta.apache.org/msg79130.html 

thanks anyway 

--
View this message in context: 
http://struts.1045723.n5.nabble.com/LookUpDispatchAction-problem-with-bestatigen-button-name-tp4428718p4428785.html
Sent from the Struts - User mailing list archive at Nabble.com.

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



Re: When start tomcat6 always got java.lang.NoClassDefFoundError: com/opensymphony/xwork2/util/finder/ClassFinder$InfoBuildingVisitor Error!

2011-05-26 Thread Chris Pratt
The NoCassFoundError is not the same as the ClassNotFoundException.  It
indicates that a dependency of the listed class couldn't be found, not the
named class.  I would suggest reviewing the dependency requirements and
determining whether you've met them.
  (*Chris*)
On May 26, 2011 4:06 PM, Emi Lu em...@encs.concordia.ca wrote:


RE: When start tomcat6 always got java.lang.NoClassDefFoundError: com/opensymphony/xwork2/util/finder/ClassFinder$InfoBuildingVisitor Error!

2011-05-26 Thread Martin Gainty

copy xwork-core-2.2.1.jar to WEB-INF\lib

Martin 
__ 
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: Thu, 26 May 2011 16:52:29 -0400
From: em...@encs.concordia.ca
To: user@struts.apache.org
Subject: When start tomcat6  always got java.lang.NoClassDefFoundError: 
com/opensymphony/xwork2/util/finder/ClassFinder$InfoBuildingVisitor Error!

Hello,
 
struts2.2.3, when tomcat6 is started, always got:
 
java.lang.NoClassDefFoundError: 
com/opensymphony/xwork2/util/finder/ClassFinder$InfoBuildingVisitor
 
But the class is in the attached jar file.
 
Could someone tell me why I got the exception for all action class please?
 
Thanks alot!
Emi
--
 
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionSupport;
 
public class ActionClass  extends ActionSupport
{
public String execute() throws Exception
{
   HttpServletRequest  req = ServletActionContext.getRequest();
   HttpServletResponse res = ServletActionContext.getResponse();
   return SUCCESS;
}
}
 
==
2011-05-26 16:48:00,539 ERROR finder.ClassFinder.error:38 - Unable to 
read class [ActionClass]
java.lang.NoClassDefFoundError: 
com/opensymphony/xwork2/util/finder/ClassFinder$InfoBuildingVisitor
at 
com.opensymphony.xwork2.util.finder.ClassFinder.readClassDef(ClassFinder.java:780)
at 
com.opensymphony.xwork2.util.finder.ClassFinder.init(ClassFinder.java:165)
at 
org.apache.struts2.convention.PackageBasedActionConfigBuilder.findActions(PackageBasedActionConfigBuilder.java:376)
at 
org.apache.struts2.convention.PackageBasedActionConfigBuilder.buildActionConfigs(PackageBasedActionConfigBuilder.java:334)
at 
org.apache.struts2.convention.ClasspathPackageProvider.loadPackages(ClasspathPackageProvider.java:53)
at 
com.opensymphony.xwork2.config.impl.DefaultConfiguration.reloadContainer(DefaultConfiguration.java:215)
at 
com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:66)
at 
org.apache.struts2.dispatcher.Dispatcher.init_PreloadConfiguration(Dispatcher.java:380)
at org.apache.struts2.dispatcher.Dispatcher.init(Dispatcher.java:424)
at 
org.apache.struts2.dispatcher.FilterDispatcher.init(FilterDispatcher.java:195)
at 
org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:295)
at 
org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:422)
at 
org.apache.catalina.core.ApplicationFilterConfig.init(ApplicationFilterConfig.java:115)
at 
org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:4071)
at 
org.apache.catalina.core.StandardContext.start(StandardContext.java:4725)
at 
org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:799)
at 
org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:779)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:601)
at 
org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:675)
at 
org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:601)
at 
org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:502)
at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1315)
at 
org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:324)
at 
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:142)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1061)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:840)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1053)
at