The way we got it to work is by using the tomahawk bridge 091 as explained here: http://palab.blogspot.com/2007/01/tomahawk-bridge-091- released.html along with tomahawk 113 along with myfaces 114 ... And of course followed the instructions presented here to configure the component and the form: http://wiki.apache.org/myfaces/Setup_For_File_Uploads

This was because we use it inside of a portlet... if you aren't doing portlets then you may not require the filter...

Hope this helps!

On May 9, 2007, at 6:35 PM, adrianis wrote:


Hi all,

I'm new trying to use tomahawk, cause I need the inputFileUpload tag.

I have the same problem, UploadedFile is null.

I am using:

1. tomahawk-1.1.5
2. I didn't find the commons-fileupload-1.0.jar, so, I'm using the
commons-fileupload-1.2.jar
3. I'm not using myfaces, here at work we use the Sun JSF 1.1(RI)
4. I'm using the property enctype="multipart/form-data" in the form tag!!

And the same thing, when the page is submitted the setter method for the
UploadedFile object  doesn't
get called.

But I noticed something weird::

when I view the page source, the form stills being:

enctype="application/x-www-form-urlencoded"

I don't know if I'm doing something wrong, and the enctype description says
in the tld:

    Content type used to submit the form to the server.
    If not specified, the default value is
"application/x-www-form-urlencoded"

Thanks,
-- Adrianis


Sam Wang wrote:



Madhav Bhargava-2 wrote:


Hi All,




I have been desperately trying to make <t:inputFileUpload> component
work but I am facing a weird problem.




JSP code:

<t:inputFileUpload id="fileupload" value="#{loginController.upFile}"
accept="image/*" storage="file" maxlength="200000"/>





Managed bean code:

private UploadedFile upFile;

Getter and Setter methods for the same have been created as well.




When the page is submitted then the setter method for upFile does not get called. There are other fields on the form for which the values are
set properly. The only property that always comes "null" is upFile.




Why will the setter method not get called?




Any help!!




Rgds,

Madhav



**************** CAUTION - Disclaimer *****************
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
solely for the use of the addressee(s). If you are not the intended
recipient, please notify the sender by e-mail and delete the original
message. Further, you are not to copy, disclose, or distribute this
e-mail or its contents to any other person and any such actions are
unlawful. This e-mail may contain viruses. Infosys has taken every
reasonable precaution to minimize this risk, but is not liable for any
damage you may sustain as a result of any virus in this e-mail. You
should carry out your own virus checks before opening the e-mail or
attachment. Infosys reserves the right to monitor and review the content of all messages sent to or from this e-mail address. Messages sent to or
from this e-mail address may be stored on the Infosys e-mail system.
***INFOSYS******** End of Disclaimer ********INFOSYS***


remender to add a property in form tag as below:

 enctype="multipart/form-data"


--
View this message in context: http://www.nabble.com/How-do-you-make- %3Ct%3AinputFileUpload%3E-work--tf3032771.html#a10404815
Sent from the MyFaces - Users mailing list archive at Nabble.com.



Reply via email to