Re: Servlet Exception occurs in TilesRequestProcessor when using a Multipart form.

2007-02-13 Thread dennis labajo
I'm getting the same error as this guyhas anybody encountered this before and fixed it? Thanks, Dennis. On 1/20/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I have a struts application that is using tiles and weblogic. When I try to use a multipart form I get the Servlet Exception l

RE: intermittent exception in TilesRequestProcessor

2006-12-12 Thread Dave Newton
ould probably put me in my place before I give you any more suspicious advice! Dave > From: Harish Kumar [mailto:[EMAIL PROTECTED] > problem comes with loading the tilesRequestProcessor. It gives > *java.lang.NullPointerException* > at > org.apache.struts.tiles.definition

Re: intermittent exception in TilesRequestProcessor

2006-12-12 Thread Harish Kumar
hi Dave, Thanks again !! i will tell you the problem more breifly, actually the classes are getting loaded with hot deployment, but the problem comes with loading the tilesRequestProcessor. It gives *java.lang.NullPointerException* at

RE: intermittent exception in TilesRequestProcessor

2006-12-12 Thread Dave Newton
tc. Sorry! Dave > -Original Message- > From: Harish Kumar [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 12, 2006 11:05 AM > To: Struts Users Mailing List > Subject: Re: intermittent exception in TilesRequestProcessor > > hi Dave, > thanks for the quick reply

Re: intermittent exception in TilesRequestProcessor

2006-12-12 Thread Harish Kumar
hi Dave, thanks for the quick reply, can you just tell me where can i find the solution for it.Its urgent req for me. thanks, Harish On 12/12/06, Dave Newton <[EMAIL PROTECTED]> wrote: From: Harish Kumar [mailto:[EMAIL PROTECTED] > I'm getting the below exception, but only after hot-deploying

RE: intermittent exception in TilesRequestProcessor

2006-12-12 Thread Dave Newton
From: Harish Kumar [mailto:[EMAIL PROTECTED] > I'm getting the below exception, but only after hot-deploying a class > file -- for example, an ActionForm-derived class. I believe the error > occurs only on pages that use the particular deployed class. I've seen that under other servers including o

intermittent exception in TilesRequestProcessor

2006-12-12 Thread Harish Kumar
Hi, I'm getting the below exception, but only after hot-deploying a class file -- for example, an ActionForm-derived class. I believe the error occurs only on pages that use the particular deployed class. I just added the Tiles plug-in and configured the TilesRequestProcessor. I do have a

Servlet Exception occurs in TilesRequestProcessor when using a Multipart form.

2006-01-20 Thread ntsengas
I have a struts application that is using tiles and weblogic. When I try to use a multipart form I get the Servlet Exception listed below. I think I have traced it down to the UrlController class. The execute method creates a RequestDispatcher and tries to call the include method. The reque

Specified RequestProcessor not compatible with TilesRequestProcessor

2005-09-01 Thread Jane Eisenstein
the struts-config.xml controller tag to: where previously it had been: I get the following errors if the CustomRequestProcessor extends the TilesRequestProcessor and the application is configured to use the Tiles tab library and plug-in: org.apache.struts.tiles.TilesPlugin TilesPlugin : Specified

Re: TilesRequestProcessor

2005-08-02 Thread Laurie Harper
ubject: Re: TilesRequestProcessor [EMAIL PROTECTED] wrote: I think I'm missing the point of the TilesRequestProcessor I have a few simple tiles in a project with to modules (default & crud). Actually the default uses tiles and the other one doesn't. Now, the tiles in the default m

RE: TilesRequestProcessor

2005-08-02 Thread aleiprecht
news [mailto:[EMAIL PROTECTED] On Behalf Of Laurie Harper Sent: Monday, August 01, 2005 7:21 PM To: user@struts.apache.org Subject: Re: TilesRequestProcessor [EMAIL PROTECTED] wrote: > I think I'm missing the point of the TilesRequestProcessor > > I have a few simple tiles i

RE: TilesRequestProcessor

2005-08-02 Thread aleiprecht
I found the answer myself ; Here it is: You do not need to specify in your struts config file(s) that the processorClass will be TilesRequestProcessor. This is automatically done by the plug-in. If a class is specified in the struts configuration file(s), that processorClass will be used

Re: TilesRequestProcessor

2005-08-02 Thread Laurie Harper
[EMAIL PROTECTED] wrote: I think I'm missing the point of the TilesRequestProcessor I have a few simple tiles in a project with to modules (default & crud). Actually the default uses tiles and the other one doesn't. Now, the tiles in the default module seem to work ju

TilesRequestProcessor

2005-08-01 Thread aleiprecht
I think I'm missing the point of the TilesRequestProcessor I have a few simple tiles in a project with to modules (default & crud). Actually the default uses tiles and the other one doesn't. Now, the tiles in the default module seem to work just fine, but a friend told me

RE: TilesRequestProcessor is executed twice

2005-07-27 Thread Ronnie Arosa
pens: trying to forward to mapping forward (In RequestProcessor.java line 1057 - rd.forward(request, response);) This is a snapshot of the two stack traces. The first execution is finishing and trying to forwarding: Thread [http-80-Processor24] (Suspended) TilesRequestProcessor(RequestProce

Re: TilesRequestProcessor is executed twice

2005-07-21 Thread Ed Griebel
wrote: > Hi Wendy, > > I'm not using Filters. > > Ronnie. > > -Mensaje original- > De: Wendy Smoak [mailto:[EMAIL PROTECTED] > Enviado el: miércoles, 20 de julio de 2005 20:02 > Para: Struts Users Mailing List > Asunto: Re: TilesRequestProcessor is

RE: TilesRequestProcessor is executed twice

2005-07-21 Thread Ronnie Arosa
Hi Wendy, I'm not using Filters. Ronnie. -Mensaje original- De: Wendy Smoak [mailto:[EMAIL PROTECTED] Enviado el: miércoles, 20 de julio de 2005 20:02 Para: Struts Users Mailing List Asunto: Re: TilesRequestProcessor is executed twice From: "Ronnie Arosa" <[EMAIL

RE: TilesRequestProcessor is executed twice

2005-07-21 Thread Ronnie Arosa
27;m not using the forward feature. Thx, Ronnie -Mensaje original- De: David G. Friedman [mailto:[EMAIL PROTECTED] Enviado el: miércoles, 20 de julio de 2005 20:09 Para: Struts Users Mailing List Asunto: RE: TilesRequestProcessor is executed twice Ronnie, Here is what I see: you have tw

RE: TilesRequestProcessor is executed twice

2005-07-20 Thread David G. Friedman
Ronnie, Here is what I see: you have two traces that both invoke your Action.execute() with one call (each) from the TilesRequestProcessor. Since your trace doesn't show two calls to the Tiles Request Processor, that suggests your browser is submitting twice. The question is why is it diff

Re: TilesRequestProcessor is executed twice

2005-07-20 Thread Wendy Smoak
From: "Ronnie Arosa" <[EMAIL PROTECTED]> > Well, I'm debugging my source code with Sysdeo's eclipse plugin. > I toggled a breakpoint in one of my action, and founded that it'd > been executed twice. > > Of course results of my actions are obtained twice (i.e. an insert in a > database is done twi

RE: TilesRequestProcessor is executed twice

2005-07-20 Thread Ronnie Arosa
ck traces below this. This is the first execution's stack trace: Thread [http-80-Processor22] (Suspended (breakpoint at line 46 in PartesMedicosAction)) PartesMedicosAction.execute(ActionMapping, ActionForm, HttpServletRequest, HttpServletResponse) line: 46 TilesRequestP

RE: TilesRequestProcessor is executed twice

2005-07-20 Thread David G. Friedman
Mailing List Subject: TilesRequestProcessor is executed twice Hello everybody, I'm working in a struts application with tiles and modules. It’s my first time working with tiles and I felt into a problem: the TilesRequestProcessor is called twice. This happens when I forward my actions to a til

RE: TilesRequestProcessor is executed twice

2005-07-20 Thread Ronnie Arosa
Mailing List CC: Struts Users Mailing List Asunto: Re: TilesRequestProcessor is executed twice I am currently working on my first tiles / struts module program myself. One thing that I had to do was to add the module aware option to the plug-in in struts-config.xml. I have not had a problem

Re: TilesRequestProcessor is executed twice

2005-07-20 Thread BHansard
quot;Struts Users Mailing List" cc Subject TilesRequestProcessor is executed twice Hello everybody, I'm working in a struts application with tiles and modules. It’s my first time working with tiles and I felt into a problem: the TilesRequestProcessor is called twice. This

TilesRequestProcessor is executed twice

2005-07-20 Thread Ronnie Arosa
Hello everybody, I'm working in a struts application with tiles and modules. It’s my first time working with tiles and I felt into a problem: the TilesRequestProcessor is called twice. This happens when I forward my actions to a tile. If the same action is forward to a simple page (i.e. a jsp

BaseRequestProcessor extends TilesRequestProcessor error

2005-06-03 Thread David Whipple
We have a BaseRequestProcessor which extends the TilesRequestProcessor defined in the struts-config file. A co-worker is getting the following error when he tries to use it: [6/3/05 10:14:03:327 EDT] 690b690b WebGroup E SRVE0026E: [Servlet Error]-[action]: java.lang.ClassCastException: org

Problem with extending TilesRequestProcessor

2005-03-18 Thread Schuster Joel M Contr ESC/NDC
from TilesRequestProcessor instead. I get this exception: Java.lang.ClassCastException: org.apache.struts.tiles.TilesUtilImpl at org.apache.struts.tiles.TilesRequestProcessor.initDefinitionsMapping(TilesRe questProcessor.java:86) at org.apache.struts.tiles.TilesRequestProcessor

Re: Specified RequestProcessor not compatible with TilesRequestProcessor

2004-05-03 Thread Marcella Turner
o: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: Re: Specified RequestProcessor not compatible with TilesRequestProcessor Date: Mon, 3 May 2004 15:23:01 -0500 Thanks so much for your prompt reply! I have downloaded the sslext from SourcForge and am wondering if there i

Re: Specified RequestProcessor not compatible with TilesRequestProcessor

2004-05-03 Thread Joe Germuska
Thanks so much for your prompt reply! I have downloaded the sslext from SourcForge and am wondering if there is a user friendly migration document that I can reference which spells out the implementation. Actually, I just recently started using sslext for the first time, and I was kind of surp

Re: Specified RequestProcessor not compatible with TilesRequestProcessor

2004-05-03 Thread Marcella Turner
ailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: Re: Specified RequestProcessor not compatible with TilesRequestProcessor Date: Mon, 3 May 2004 08:37:18 -0500 This is mostly a side-effect of the RequestProcessor being a single clas

Re: Specified RequestProcessor not compatible with TilesRequestProcessor

2004-05-03 Thread Joe Germuska
my first tiled jsp: [4/30/04 16:42:44:725 EDT] 74488c86 WebGroup E SRVE0026E: [Servlet Error]-[action]: javax.servlet.ServletException: TilesPlugin : Specified RequestProcessor not compatible with TilesRequestProcessor at org.apache.struts.tiles.TilesPlugin.initRequestProcessorClass(Tiles

Specified RequestProcessor not compatible with TilesRequestProcessor

2004-05-03 Thread Marcella Turner
Group E SRVE0026E: [Servlet Error]-[action]: javax.servlet.ServletException: TilesPlugin : Specified RequestProcessor not compatible with TilesRequestProcessor at org.apache.struts.tiles.TilesPlugin.initRequestProcessorClass(TilesPlugin.java:358) at org.apache.struts.tiles.TilesPlugin