Re: how upload files to the server

2003-07-09 Thread Mike Cronin
Go to... http://www.servlets.com/cos/index.html Best Regards, Mike Cronin -Original Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED] On Behalf Of Jagannayakam Sent: Wednesday, July 09, 2003 3:19 AM To: [

Re: how upload files to the server

2003-07-09 Thread Mike Cronin
Yep, go to... http://www.servlets.com/cos/index.html Best Regards, Mike Cronin -Original Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED] On Behalf Of Gang Zhang Sent: Wednesday, July 09, 2003 10:

[no subject]

2003-02-26 Thread Mike Cronin
Yep, we're alone as always. But occasionally we "kings of the world" climb down off our throne to get ungrateful others out of a jam! -Original Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED] On Behalf Of fabrice B

Re: compile error

2002-10-28 Thread Mike Cronin
Hi Prais, Change the source file name SimpleBean.java to be FileUploadBean.java and you should be good to go. Mike -Original Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:SERVLET-INTEREST@;JAVA.SUN.COM]On Behalf Of Lance Prais S

JSP request.getPathInfo() ?

2002-10-01 Thread Mike Cronin
thInfo()%> I expected the previous expression to return "/extra/info" Any suggestions? Thanks in advance, Mike Cronin ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message &

Re: Off Topic: Just a suggestion...

2002-09-20 Thread Mike Cronin
focus due to excessive bashing which I feel is more of a detriment than off topic posting. I just think we should be careful about going off course due to a simple off topic post. Regards, Mike Cronin -Original Message- From: A mailing list for discussion about Sun Microsystem'

Off Topic: Just a suggestion...

2002-09-20 Thread Mike Cronin
, unhelpful and offhanded comments this morning, I feel we should stick to answering any question presented with as little overhead (i.e. slams and/or digs) as possible. Even when the post is off topic, let's see if we can get an answer to that programmer and move on. Thanks much, Mike C

Re: Dates in java

2002-09-19 Thread Mike Cronin
mat object parameter String dateString = sdf.format(currentDate); Additional info can be found at the following links... http://www.dataoncall.com/snippets/java/Calendar.getinstance().jsp http://www.dataoncall.com/snippets/java/SimpleDateFormat().jsp Hope all this helps ya! Best regards, Mike C

Re: Cookie help...

2002-09-18 Thread Mike Cronin
Thanks Pramod, Vikramjit, Siddharth, and Chris... works like a charm now! Best regards!!! Mike -Original Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Mike Cronin Sent: Tuesday, Septemb

Cookie help...

2002-09-17 Thread Mike Cronin
just stops. What am I missing? Thanks in advance! Mike Cronin -- package doccookietest; import javax.servlet.*; import javax.servlet.http.*; import java.io.IOException; public class CookieServlet extends HttpServlet { public void

Re: Calendar object

2002-07-22 Thread Mike Cronin
Hey Travis, I've put together the following... http://www.dataoncall.com/snippets/Calendar.getinstance().jsp Hope this helps ya! Mike Cronin Data On Call -Original Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mai

Re: hex

2002-07-03 Thread Mike Cronin
Hey Travis, Please allow me to elaborate: char c = '^'; int x = (int) c; String hex = Integer.toHexString(x); Variable "hex" will now contain "5e" Hope that helped. Mike Cronin Data On Call -Original Message- From: A mailing list for discussio

doPut()???

2002-06-21 Thread Mike Cronin
Hi all, Does anyone have an example of performing a doPut() from a servlet. Thanks so much in advance!!! Mike Cronin Data On Call ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message

Re: OReilly MultiPart Exception

2002-06-18 Thread Mike Cronin
MultipartRequest(request, thisJobPath + "\\" + tempName, 1 * 1024 * 1024); } catch (FileNotFoundException fnfe) { badUpload = true; } catch (IOException ioe) { badUpload = true; } Hope this helps. Mike Cronin Data On Call ---

Re: Very begginer question

2002-06-04 Thread Mike Cronin
. http://java.sun.com/docs/books/tutorial/servlets/index.html http://developer.java.sun.com/developer/onlineTraining/Servlets/Fundamentals /contents.html Hope this stuff helps bud! Mike Cronin Data On Call -Original Message- From: A mailing list for discussion about Sun Mic

Re: how to make webpage with no cache ,servlet and html

2002-05-29 Thread Mike Cronin
prevents caching at the proxy server   Additional info can be found at...     http://support.microsoft.com/default.aspx?scid=kb;en-us;Q234067   and... http://www.jguru.com/faq/view.jsp?EID=377     Hope this helps ya!   Mike Cronin Data On Call -Original Message-From: A mailing l

DSN-Less connection to .XLS

2002-05-13 Thread Mike Cronin
etRow()).toString(); rs.beforeFirst(); stmt.close(); done(conn); } catch (ClassNotFoundException cnf){ cnf.printStackTrace(); } catch (SQLException se) { se.printStackTrace(); } Thanks in advance for your assistance! Mike Cronin

Re: Syntax error question

2002-05-03 Thread Mike Cronin
newimage=""; } Best Regards! Mike Cronin -Original Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Lance Prais Sent: Monday, April 29, 2002 9:24 AM To: [EMAIL PROTECTE

Re: calling another Servlet

2002-04-18 Thread Mike Cronin
Hey Uch, try... response.sendRedirect("/servlet/projectName.ServletName); Best Regards! Mike Cronin -Original Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Ezeilo Uc