Converting string to date format.

2002-11-05 Thread Srinu.Reddy
Hi All, I am new to JSp programming.My problem is I am having a STRING which has a date in it as (2002-10-31 20:45:00 ) but I want to display that in the following format : (31-OCT-2002 08:45:00 PM). How can I do that? Regards, Srinu... ==

Re: Converting string to date format.

2002-11-05 Thread Srinu.Reddy
Format("dd-- hh:mm:ss a"); String result = outputFormat.format(myDate); %> <%=result%> see javadoc documentation on SimpleDateFormat for more info. regards. Gabriel -Mensaje original- De: Srinu.Reddy [mailto:srinu.reddy@;HBH.ILABSGROUP.COM] Enviado el:

[no subject]

2002-11-10 Thread Srinu.Reddy
Check out ... http://developer.irt.org/script/1109.htm U can use settimeout to specify the delay in seconds ... -Original Message- From: Vaishali S. Pandya [mailto:Vaishali_Shah@;RIL.COM] Sent: Monday, November 11, 2002 11:50 AM To: [EMAIL PROTECTED] Subject: Hi every body I want to

changing port 8080 to 80 on Linux.

2002-11-12 Thread Srinu.Reddy
Hi All, I am hosting my JSP's in Tomcat 4.0.1 on Linux. By default tomcat uses 8080 port but I want to change it to 80, so that I can give only the URL in the browser, instead of URL:8080, to connect to the WEB site. I changed the port in the server.xml file but it doesn't seems to work in Linux

Re: changing port 8080 to 80 on Linux.

2002-11-13 Thread Srinu.Reddy
HTML files, images, (no serverside elements) and when he recieves a request of a JSP page or servlet it will pass that request to tomcat, so the average reponse time of your web aplication will be better. Luis Srinu.Reddy wrote: >Hi All, > > I am hosting my JSP's in Tomcat 4.0.

Re: changing port 8080 to 80 on Linux.

2002-11-14 Thread Srinu.Reddy
Seisakusho Japan - Original Message - From: "Srinu.Reddy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 13, 2002 6:32 PM Subject: Re: changing port 8080 to 80 on Linux. > Hi Luis, > > Thanks for the response. All my pages are JSP pages.

Input File type

2002-11-18 Thread Srinu.Reddy
Hi , Can anyone tell me how to dynamically set the file value( i mean it hould be reflected on the display txt) in the ?? Regards, Srinu... === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Fo

CASE SENSITIVENESS IN URL TOMCAT

2002-11-22 Thread Srinu.Reddy
Hi All, I am hosting JSP pages in TOMCAT 4.0.1. According to my observation the URL which I give to access the pages in TOMCAT is case sensitive. If I type th URL in other case then it will not display the Page. But IIS which is used to host the ASP page does not behave like that. Or Is there any

Re: code 0 error

2002-11-25 Thread Srinu.Reddy
What U have sent is the internal IP.. check out the lines properly U must have missed ; -Original Message- From: Edward King [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 7:48 AM To: [EMAIL PROTECTED] Subject: code 0 error I have a JSP, I create a Submit button,when click t

Re: Should I use standalone Tomcat or Tomcat with Apache

2002-11-27 Thread Srinu.Reddy
Hi Kenny, I was lookinh for such document for some time now. Just saw your mail. It will be great help if you can send it to me. Thanking You, Srinu. -Original Message- From: Kenny G. Dubuisson, Jr. [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 28, 2002 12:01 AM To: [EMAIL PROTEC

Re: How should i proceed with

2002-11-27 Thread Srinu.Reddy
When user logs in just update a field in the database that he is active. If he tries to access from some where else then check this field .. if he is not active then give login or else give error message. But do not forget to reset this field when he logsout of the system. Hope this helps, Srinu

excel download with images

2003-01-24 Thread Srinu.Reddy
Hi All, I am trying to save the page as excel by settinng content type = application/vnd.ms-excel It works well without images but but my problem is I have images too in that page which i am not able to download. Can anybody give the solution for this? Regards, Srinu... ===

Re: Using Tomcats built-in database pooling

2003-02-05 Thread Srinu.Reddy
Hi, I also faced the ame error when using with the oracle. later I found that i was not using the proper connection string. Check out yours too .. regds, srinu... -Original Message- From: Abdul jeelani [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 05, 2003 7:25 PM To: [EMAIL PROT

virtula directory in TOMCAT

2003-03-26 Thread Srinu.Reddy
Hi All, I a using Tomcat 4.0.1. I wants to know can I create a virtual directory other than TOMCAT directories(as in IIS)? If yes how can I do that? I have TOMCAT installed in c: and the directory i want to host is in D:. How can i do this? regards, Srinu ==