Request in a SessionBean

[nobr]Hello all !!!

I am developing an application with File Upload, using the Java Creator ONE based in servelet.com. In the example below, the archive is moved successfully, but I would like to have the name of the archive in a SessionBean for use in another page.

Somebody has an idea of as can make this?

They follow the codes:

Anexar.jsp

<?xml version="1.0" encoding="UTF-8"?>

<jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page">

<jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>

<f:view><![CDATA[

><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

]]><html

lang="pt-BR" xml:lang="pt-BR">

<head>

<meta content="no-cache" http-equiv="Cache-Control"/>

<meta content="no-cache" http-equiv="Pragma"/>

<title>ANEXAR</title>

<link href="resources/stylesheet.css" rel="stylesheet" type="text/css"/>

</head>

<body style="-rave-layout: grid">

<f:verbatim>

<form action="./pagina2" enctype="multipart/form-data" method="post">

Documento 1 <input name="file1" type="file"/>


<input type="submit"/>

</form>

</f:verbatim>

<h:form binding="#{Anexar.form1}" id="form1"/>

</body>

</html>

</f:view>

</jsp:root>

pagina2.Java

import java.io.*;

import java.util.*;

import javax.servlet.*;

import javax.servlet.http.*;

import com.oreilly.servlet.*;

public class pagina2 extends HttpServlet {

public void doPost(HttpServletRequest req, HttpServletResponse res)

throws ServletException, IOException {

res.setContentType("text/html");

PrintWriter out = res.getWriter();

out.println("<HTML>");

out.println("<HEAD><TITLE>UploadFile</TITLE></HEAD>");

out.println("<BODY>");

out.println("<H1>UploadFile</H1>");

// Parameters can now be read the same way for both

// application/x-www-form-urlencoded and multipart/form-data requests!

out.println("<H3>Request Parameters:</H3><PRE>");

Enumeration enum = req.getParameterNames();

while (enum.hasMoreElements()) {

String name = (String) enum.nextElement();

String values[] = req.getParameterValues(name);

if (values != null) {

for (int i = 0; i < values.length; i++) {

out.println(name + " (" + i + "): " + values);

}

}

}

out.println("</PRE>");

// Files can be read if the request class is MultipartWrapper

// Init params to MultipartWrapper control the upload handling

if (req instanceof MultipartWrapper) {

try {

// Cast the request to a MultipartWrapper

MultipartWrapper multi = (MultipartWrapper) req;

// Show which files we received

Enumeration files = multi.getFileNames();

while (files.hasMoreElements()) {

String name = (String)files.nextElement();

String filename = multi.getFilesystemName(name);

String type = multi.getContentType(name);

File f = multi.getFile(name);

out.println("name: " + name);

out.println("filename: " + filename);

out.println("type: " + type);

if (f != null) {

out.println(" | length: " + f.length()+"\r");

out.println("File Uploaded Successfully");

}

out.println();

}

}

catch (Exception e) {

out.println("Could not upload file/files");

out.print(e.getMessage());

//out.println("<PRE>");

e.printStackTrace(out);

//out.println("</PRE>");

}

}

out.println("</BODY></HTML>");

}

}

web.xml

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">

<!--

Copyright 2002, 2003 Sun Microsystems, Inc. All Rights Reserved.

-->

<web-app>

<context-param>

<param-name>javax.faces.STATE_SAVING_METHOD</param-name>

<param-value>server</param-value>

</context-param>

<context-param>

<param-name>javax.faces.CONFIG_FILES</param-name>

<param-value>/WEB-INF/navigation.xml,/WEB-INF/managed-beans.xml</param -value>

</context-param>

<context-param>

<param-name>com.sun.faces.validateXml</param-name>

<param-value>true</param-value>

</context-param>

<context-param>

<param-name>com.sun.faces.verifyObjects</param-name>

<param-value>true</param-value>

</context-param>

<filter>

<filter-name>multipartFilter</filter-name>

<filter-class>com.oreilly.servlet.MultipartFilter</filter-class>

<init-param>

<param-name>uploadDir</param-name>

<param-value>/tmp</param-value>

</init-param>

</filter>

<filter-mapping>

<filter-name>multipartFilter</filter-name>

<url-pattern>/*</url-pattern>

</filter-mapping>

<!-- Faces Servlet -->

<servlet>

<servlet-name>Faces Servlet</servlet-name>

<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>

<load-on-startup> 1 </load-on-startup>

</servlet>

<servlet>

<servlet-name>uploadFile</servlet-name>

<servlet-class>pagina2</servlet-class>

</servlet>

<!-- Error Handler Servlet -->

<servlet>

<servlet-name>ExceptionHandlerServlet</servlet-name>

<servlet-class>com.sun.errorhandler.ExceptionHandler</servlet-class> ;

<init-param>

<param-name>errorHost</param-name>

<param-value>localhost</param-value>

</init-param>

<init-param>

<param-name>errorPort</param-name>

<param-value>4444</param-value>

</init-param>

</servlet>

<!-- Faces Servlet Mapping -->

<servlet-mapping>

<servlet-name>Faces Servlet</servlet-name>

<url-pattern>/faces/*</url-pattern>

<!-- <url-pattern>*.faces</url-pattern> -->

</servlet-mapping>

<servlet-mapping>

<servlet-name>uploadFile</servlet-name>

<url-pattern>/pagina2</url-pattern>

</servlet-mapping>

<!-- Error Handler Servlet Mapping -->

<servlet-mapping>

<servlet-name>ExceptionHandlerServlet</servlet-name>

<url-pattern>/error/ExceptionHandler</url-pattern>

</servlet-mapping>

<!-- Welcome File List -->

<welcome-file-list>

<welcome-file>faces/Anexar.jsp</welcome-file>

</welcome-file-list>

<!-- Catch ServletException -->

<error-page>

<exception-type>javax.servlet.ServletException</exception-type>

<location>/error/ExceptionHandler</location>

</error-page>

<!-- Catch IOException -->

<error-page>

<exception-type>java.io.IOException</exception-type>

<location>/error/ExceptionHandler</location>

</error-page>

<!-- Catch FacesException -->

<error-page>

<exception-type>javax.faces.FacesException</exception-type>

<location>/error/ExceptionHandler</location>

</error-page>

<resource-ref>

<description>Rave generated DataSource Reference</description>

<res-ref-name>jdbc/Intranet</res-ref-name>

<res-type>javax.sql.DataSource</res-type>

<res-auth>Container</res-auth>

</resource-ref>

</web-app>

Regards

Alexandre Araujo[/nobr]

[8719 byte] By [alguemsa] at [2007-11-26 6:30:22]
# 1
Hi,See the below threads might helps http://swforum.sun.com/jive/thread.jspa?forumID=123&threadID=47982 http://swforum.sun.com/jive/thread.jspa?threadID=64621&tstart=0MJ
ManjunathJayaram at 2007-7-6 14:27:11 > top of Java-index,Development Tools,Java Tools...