Hi there,
How can i upload a file to oracle database using EJB(BMP)
and JSP front-end
-
file uploading using EJB(BMP) (5 messages)
- Posted by: Rahul ..
- Posted on: June 01 2001 20:06 EDT
Threaded Messages (5)
- file uploading using EJB(BMP) by Alex Pisarev on June 02 2001 00:47 EDT
- file uploading using EJB(BMP) by Rahul .. on June 02 2001 06:05 EDT
-
file uploading using EJB(BMP) by K Srinivasa Rao on June 02 2001 07:36 EDT
- file uploading using EJB(BMP) by Rahul .. on June 02 2001 08:22 EDT
- file uploading using EJB(BMP) by K Srinivasa Rao on June 02 2001 08:27 EDT
-
file uploading using EJB(BMP) by K Srinivasa Rao on June 02 2001 07:36 EDT
- file uploading using EJB(BMP) by Rahul .. on June 02 2001 06:05 EDT
-
file uploading using EJB(BMP)[ Go to top ]
- Posted by: Alex Pisarev
- Posted on: June 02 2001 00:47 EDT
- in response to Rahul ..
Multiform processing classes for servlets you could find at http://www.servlets.com. I can't see any need in EJB in current situation.
Alex. -
file uploading using EJB(BMP)[ Go to top ]
- Posted by: Rahul ..
- Posted on: June 02 2001 06:05 EDT
- in response to Alex Pisarev
You are correct!!! If i am using JSP or Servlets I can do it without the help of EJB. The thing is I am also using Swing Client in Addition to JSP client. I don't want write a seperate swing application using RMI to call the upload methid from the server.
-
file uploading using EJB(BMP)[ Go to top ]
- Posted by: K Srinivasa Rao
- Posted on: June 02 2001 07:36 EDT
- in response to Rahul ..
Hi,
I am also looking for the same. Can u tell me where is exactly in the if you find.
Thanks in advance -
file uploading using EJB(BMP)[ Go to top ]
- Posted by: Rahul ..
- Posted on: June 02 2001 08:22 EDT
- in response to K Srinivasa Rao
I have wrote a Servlet for uploading a file! Now I am planning to re-write it to BMP and access it through JSP Client, and Swing Client....I will let you know if it works fine!!!
-
file uploading using EJB(BMP)[ Go to top ]
- Posted by: K Srinivasa Rao
- Posted on: June 02 2001 08:27 EDT
- in response to K Srinivasa Rao
I have a problem in Weblogic 5.1. When i submit the form with multipart/form-data. when i catch the value on JSP it returns null. What could be the reason. Same thing works in Resin 1.2.1
here is my code:
//****html****/
<form name='f1' action='upfile.jsp' method='post' ENCTYPE="multipart/form-data">
<INPUT TYPE="FILE" NAME="file1" value='' >
<input type=submit name=sub value="Submit" >
//*****JSP*****/
<%@ page%>
<%
String s=request.getParameter("file1");
out.println("Value of s is "+s);
%>
Any help on this.
thank you.