Re: error : 404: There is no Action mapped for namespace / and action name showlogin.

2009-10-07 Thread RogerV
barkha.jasani wrote: > > Hi Folks, > > I've deployed my application in tomcat but when i hit the url to call my > action,i'm facing this error..here is the detailed log, > > http://pastebin.com/d3e33ffdf > > please have a look at this and kindly do the needful if you know the > solution. >

Re: Servlet filter as front controller

2009-10-07 Thread Arthur Neves
With the filter struts2 can intercept all request. I think it's more difficult to do thinks like, the namespace struct with a servlet,i dont have sure though. On Wed, Oct 7, 2009 at 2:58 PM, Unmesh joshi wrote: > > Hi,Struts2 uses servlet filter > org.apache.struts2.dispatcher.ng.filter.Struts

Re: [Struts 1.3] first time use custom converter not working

2009-10-07 Thread Arthur Neves
HI, You must create your property as a WarrType. Then your converter will be call. On Sat, Oct 3, 2009 at 10:21 PM, Paul Benedict wrote: > Ever solve this? Are you sure you registered your converter properly? > > Paul > > On Wed, Sep 23, 2009 at 3:14 AM, senderj wrote: > > > > I have a clas

Re: S2: multiple file upload

2009-10-07 Thread Tommy Pham
From: "john.c.cartwri...@noaa.gov" To: user@struts.apache.org Sent: Wed, October 7, 2009 10:52:03 AM Subject: S2: multiple file upload Hello All, I'm having trouble getting the FileUpload interceptor (v2.0.14) to work w/ multiple files. My form looks like this:

Servlet filter as front controller

2009-10-07 Thread Unmesh joshi
Hi,Struts2 uses servlet filter org.apache.struts2.dispatcher.ng.filter.StrutsExecuteFilter as front controller, rather than having a servlet act as front controller. Is there any specific advantage of using servlet filter over servlet (as in struts 1.1)? Thanks,Unmesh

S2: multiple file upload

2009-10-07 Thread John . C . Cartwright
Hello All, I'm having trouble getting the FileUpload interceptor (v2.0.14) to work w/ multiple files. My form looks like this: and then my Action contains: File[] shapefile; String[] shapefileContentType; String[] shapefileFileName; w/ corresponding setters: public void setShapefile(File[

Re: TypeConverter needs Spring Bean

2009-10-07 Thread Musachy Barroso
I think that one fell through the cracks. musachy On Wed, Oct 7, 2009 at 10:30 AM, psavage wrote: > > This definitely used to work in previous Struts versions (e.g. 2.0.7, 2.0.9, > and 2.0.14) so I think this is a bug. In fact, this bug had occurred in > previous 2.0.x versions but had been fixe

RE: TypeConverter needs Spring Bean

2009-10-07 Thread psavage
This definitely used to work in previous Struts versions (e.g. 2.0.7, 2.0.9, and 2.0.14) so I think this is a bug. In fact, this bug had occurred in previous 2.0.x versions but had been fixed (see http://jira.opensymphony.com/browse/XW-472). I submitted an XWork bug a couple weeks ago (http://jira

Re: Struts 2.1.8 and Tiles version 2.1

2009-10-07 Thread Lukasz Lenart
2009/10/7 : > Anyone have Struts 2.1.8 and Tiles 2.1.3 working in perfect harmony? You can check that -> https://issues.apache.org/struts/browse/WW-2801 and maybe propose some solution. I'm working with Maven2 archetypes right now, but after I'll take a look. Regards -- Lukasz http://www.lenar

Struts 2.1.8 and Tiles version 2.1

2009-10-07 Thread bob.savard
Hi. I'm wondering why Tiles 2.1.x was not included in Struts 2.1.8. Is there an incompatibility between them or was it an oversight? Any plans to upgrade the Tiles version that comes bundled with Struts2? Anyone have Struts 2.1.8 and Tiles 2.1.3 working in perfect harmony? TIA, -Bob

Re: Struts 2, annotated actions an weblogic

2009-10-07 Thread Musachy Barroso
set the debug level to trace and see what is writes out. Most likely it is not finding your actions/jars. musachy On Wed, Oct 7, 2009 at 2:58 AM, Gregor Marinšek wrote: > Hi there! > > I have an application running on tomcat without any problem. But when i > delploy application to oracle weblogi

Multiple text box to one field

2009-10-07 Thread james billa
Hi, I am using Struts 2.1.6. I have a field called "Past Scores : " in my jsp page. The are 10 text boxes associated with this one field. The user may enter values in 1 or more of these boxes and submit the form. I want to get all these 10 values as one array of values or one single string in my a

Re: Struts2 and TestNG

2009-10-07 Thread Dan R. Olsen III
The convention plugin is in the classpath for the tests. On 10/6/2009 3:57 PM, Musachy Barroso wrote: also, make sure the convention plugin is in the classpath for the tests. musachy On Tue, Oct 6, 2009 at 2:22 PM, Alex Siman wrote: dolsen-2 wrote: Does this method work if I decl

Re: error : 404: There is no Action mapped for namespace / and action name showlogin.

2009-10-07 Thread barkha.jasani
i did this then also getting the same error :( Lukasz Lenart wrote: > > 2009/10/7 barkha.jasani : >> please have a look at this and kindly do the needful if you know the >> solution. > > Add attribute namespace="/" to your action's config > > > Regards > -- > Lukasz > http://www.lenart.org.p

Struts 2, annotated actions an weblogic

2009-10-07 Thread Gregor Marinšek
Hi there! I have an application running on tomcat without any problem. But when i delploy application to oracle weblogic, the server does not recognize the actions. I run config-browser and the actions section is empty. I'm using WL 10.3, java 1.5. Has anyone got the same problem? Thank you

How to integrate a wiki in my struts2 intranet app?

2009-10-07 Thread Cristian Peraferrer
I would like to integrate a wiki into the struts2 app I'm developing. Any idea which Wiki to use and/or how to integrate one? Thanks, Cris -- GPG Key-ID: 0x564903FA - JID: corell...@swissjabber.ch - To unsubscribe, e-mail: user

Re: error : 404: There is no Action mapped for namespace / and action name showlogin.

2009-10-07 Thread Lukasz Lenart
2009/10/7 barkha.jasani : > please have a look at this and kindly do the needful if you know the > solution. Add attribute namespace="/" to your action's config Regards -- Lukasz http://www.lenart.org.pl/ http://dailylog.lenart.org.pl/ --

error : 404: There is no Action mapped for namespace / and action name showlogin.

2009-10-07 Thread barkha.jasani
Hi Folks, I've deployed my application in tomcat but when i hit the url to call my action,i'm facing this error..here is the detailed log, http://pastebin.com/d3e33ffdf please have a look at this and kindly do the needful if you know the solution. Thanks in advance, With Regards, Barkha Jasan

Re: Struts 1 form data change

2009-10-07 Thread Paweł Wielgus
Hi, maybe You can have as many forms on this page as tabs, that would also caused that You will have 3 save buttons. If You are worring abut performance that might be the solution. Also You would not be worrying about which tab was selected, only some kind of javascript that will check that user mo

Re: Error while deploying struts2 Application

2009-10-07 Thread barkha.jasani
yeah i'm doing that all.. thanks again for sparing your invaluable time buddy!!! :-) Lukasz Lenart wrote: > > The config is ok and the class as well, I'm not Eclipse expert bur you > have to check config for building and deploying classes for that > project > > > Regards > -- > Lukasz > htt

Re: Error while deploying struts2 Application

2009-10-07 Thread Lukasz Lenart
The config is ok and the class as well, I'm not Eclipse expert bur you have to check config for building and deploying classes for that project Regards -- Lukasz http://www.lenart.org.pl/ http://dailylog.lenart.org.pl/ - To uns

Re: Error while deploying struts2 Application

2009-10-07 Thread barkha.jasani
here is my struts.xml and action class http://pastebin.com/d27d7619b and yeah your guess is correct,action's class file is not created at destination folder:( Lukasz Lenart wrote: > > 2009/10/7 barkha.jasani : >> dunno y its not getting my struts.xml and because of that my action >> class

Re: Error while deploying struts2 Application

2009-10-07 Thread Lukasz Lenart
2009/10/7 barkha.jasani : > dunno y its not getting my struts.xml and because of that my action class... Exactly, could you show your struts.xml? Caused by: Action class [com.hello.ShowLogin] not found - action - file:/C:/apache-tomcat-5.5.26/webapps/UserLogin/WEB-INF/classes/struts.xml:7:63 Ans

Re: Error while deploying struts2 Application

2009-10-07 Thread barkha.jasani
Hi Lukasz, first of all thanks a lot for replying.. anyways sorry 4 the inconvenience,here is the error log http://pastebin.com/d225c201c dunno y its not getting my struts.xml and because of that my action class... please go through it.. Thanks, Barkha Jasani Lukasz Lenart wrote: > >