Re: [OS-webwork] Passing model from one action to another

2003-11-27 Thread John Patterson
Also, make sure the ChainingInterceptor is before the ModelDrivenInterceptor in the interceptor stack of the second action (if it is model driven). - Original Message - From: Jason Carreira [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 7:05 PM Subject: RE:

AW: [OS-webwork] Passing model from one action to another

2003-11-27 Thread Patrick Holzmann
hi all, sorry - it seems as if i was just doing something wrong. i tried to use a different SearchModel instance (property called differently) ... stupid me! thanks anyway - now everything works fine! -Ursprüngliche Nachricht- Von: John Patterson [mailto:[EMAIL PROTECTED] Gesendet:

[OS-webwork] upload

2003-11-27 Thread David Nielsen
Hi I have made this upload action (directly copied from cookbook): MultiPartRequestWrapper multiWrapper = (MultiPartRequestWrapper) ServletActionContext.getRequest(); Enumeration e = multiWrapper.getFileNames(); while (e.hasMoreElements()) { // get the value of this input tag inputValue

Re: [OS-webwork] upload

2003-11-27 Thread Hani Suleiman
The file size in webwork.properties is in bytes, so according to your settings, anything over 81kb will not work. David Nielsen said: Hi I have made this upload action (directly copied from cookbook): MultiPartRequestWrapper multiWrapper = (MultiPartRequestWrapper)

[OS-webwork] NullPointerException at SessionMap.

2003-11-27 Thread Sergiy Barlabanov
Title: NullPointerException at SessionMap. Hi, We are trying to integrate WebWork 2 into our web application. Incoming HTTP request are served by another framework (AbaXX). The integration occurs in a JSP through webwork:include tag. And there we get the following exception: [Do Nov 27

[OS-webwork] webwork2 xwork.xml

2003-11-27 Thread David Nielsen
i have configured webwork2 with this xwork.xml: ?xml version=1.0 encoding=UTF-8? xwork package name=default result-types result-type class=com.opensymphony.webwork.dispatcher.ServletDispatcherResult name=dispatcher/

[OS-webwork] RE: [picocontainer-dev] Pico-WW2/XWork integration generates NPE

2003-11-27 Thread Vincent Tence
Forwarding this to the OS WebWork list. Note: I use Pico integration kit rather than the integration described on OS Wiki at http://wiki.opensymphony.com/space/PicoContainer+Integration - Vincent -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Vincent

RE: [OS-webwork] NullPointerException at SessionMap.

2003-11-27 Thread Wayland Chan
I'm new but going to take a stab regardless because this problem was already discussed earlier this week. You need to have an Action class invoked in order to have all those classes initialized. What could it be? Is it because of the fact, that initial request processing does not go

[OS-webwork] RE: [picocontainer-dev] Pico-WW2/XWork integration generates NPE

2003-11-27 Thread Vincent Tence
(I'm using Pico 1.0-SNAPSHOT, Pico extras 1.0-alpha-1-SNAPSHOT, WebWork 2.0-beta2 and XWork 1.0-beta2) I modified PicoActionInvocation to validate my assumptions and did: public class PicoActionInvocation extends DefaultActionInvocation implements KeyConstants { snip/ /** * Copied and

[OS-webwork] Fwd: [Springframework-user] wiring beans created outside a BeanFactory

2003-11-27 Thread Matthew E . Porter
Should make the Spring wiring easier! Ross, didn't you put a comment in the code saying that you were looking for methods such as these? Cheers, matthew Begin forwarded message: From: jürgen höller [werk3AT] [EMAIL PROTECTED]> Date: November 27, 2003 12:04:14 PM CST To: [EMAIL PROTECTED]> Cc:

RE: [OS-webwork] same action several times

2003-11-27 Thread Jason Carreira
How does it not work for the integer field? Is it a primitive int type? If so you can set the value to zero... For a success you could do a redirect to the same Action, which would do another request for the same Action and lose the first requests parameters. Jason -Original Message-