Sending mail using webserver

2001-07-25 Thread shivaraj
Dear friends, Right now i am able to send the mails using mail server, How to send = mails using web server(we are using IIS). What changes to be made to = Properties object? Any help? thanx in advance "Things turn out the best for the people who make the best of the way = things turn out" Shiv

webserver for the Mac that supports JSP

2001-07-25 Thread Marc J. Boerma
Hello, I was wondering if there is a webserver that can handle JSP for the Mac. Before everyone is recommending any server that runs on Java, the following restrictions apply: - the server has to run on the classic mac os (not macosX!), - Sun does not support the mac, apple has implemented their

Re: webserver for the Mac that supports JSP

2001-07-25 Thread Mattias Jiderhamn
> I was wondering if there is a webserver that can handle JSP for the Mac. > Before everyone is recommending any server that runs on Java, the following > restrictions apply: It is very, very unlikely that you will find a JSP server that does not require Java, since the JSP are themselves Java, "

jsp-interest@java.sun.com

2001-07-25 Thread Rajehswar V. Rao
Hi all, when i use like this it works fine.. but when i use TestServlet.java in place of Test.jsp, it is not working I am using Tomcat with IIS on Windows2000... Is there any funda behind it?As i know u can use both JSPs and Servlets in jsp action tag.

Re:

2001-07-25 Thread Isidoros Vacropoulos
are you sure that the path is right? -Original Message- From: Rajehswar V. Rao [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 11:21 AM To: [EMAIL PROTECTED] Subject: Hi all, when i use like this it works fine.. but when i use TestServlet.java in plac

Re: webserver for the Mac that supports JSP

2001-07-25 Thread Kevin Duffey
Id suggest finding out if Mac will have a 1.2 compatible JVM. It appears after some searching there isn't a 1.2 compatible JVM for the Mac earlier than OSX. > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Beh

Re:

2001-07-25 Thread Mattias Jiderhamn
> Hi all, > when i use like this it works fine.. > > but when i use TestServlet.java in place of Test.jsp, it is not > working Since you use .java it is possible you are "missing everything". You have to compile the Java sourcefile into a class file which goes into your WEB-INF\classes dir.

ANTing remotely [SOURCE]

2001-07-25 Thread Mattias Jiderhamn
I thought it might be helpful being able to build our project, using ANT, without having to connect with SSH or Telnet. After looking around with little luck I decided to write my own JSP page to do this. Even though it wasn't very hard I though maybe people here would be interesed, so I share the

Re: Adding cookies before output ?

2001-07-25 Thread Andy C
- Original Message - From: "Christopher K. St. John" <> > > The Servlet spec[1] (referenced by the JSP spec) says > it explicitly, but if you think about it, that's the > only way it could possibly work. The headers have Which is what I thought should happen. However consider this code

Re: Cookies persistency

2001-07-25 Thread Jann VanOver
Antoine, did you mean that you open another window with the same browser? Or did you really mean that you used a different browser? The first case SHOULD get the cookie, the second will NOT. As Doug said -- if you create a cookie with netscape, you can't read it from IE and vice versa. -Ori

Re: Cookies persistency

2001-07-25 Thread Antoine Chemali
Thanks. I meant opening another window with the same browser. I just realized the age of the cookie was expiring immediately. -Original Message- From: Jann VanOver [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 9:43 AM To: [EMAIL PROTECTED] Subject: Re: Cookies persistency An

question about jsp

2001-07-25 Thread Miguel Lopez
Hello everyone.   can be used in jsp or servlets something similar to global.asa which is used in asp?   some example?   Regards.Miguel Lopez

example custom Tag Lib that repeats body

2001-07-25 Thread Johnny Blaze
Hi All, Does anyone know of a custom tag library example that loops through a tag body? i.e. content I would like "content" to be displayed n number of times. thanks, Johnny === To unsubscribe: mailto [EMAIL PROTECT

How to test where Jsp invoked from ?

2001-07-25 Thread Craig Newlander
I've checked the message archives and did not find an answer. Is there a way to see if a JSP page was called from a servlet? Thanks Craig === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Fo

Re:

2001-07-25 Thread Duffey, Kevin
Right off the bat, unless you mistyped, I see that you have fluch="true" and it should be flush="true". Some servers are case sensitive, so make sure Test.jsp and test.jsp are one and the same. As someone else said, using .java is not going to work. Just use /servlet/TestServlet you don't need .

Title Problem in Netscape : URGENT

2001-07-25 Thread Abhijeet Surve
Consider the following piece of code... App Frameset //This function sets the title function setTitle(input_title) { document.title = input_title; } function setStatus(input_strings, input_class) { statusframe.displayStatus(input_string

Re: Title Problem in Netscape : URGENT

2001-07-25 Thread Jann VanOver
What does this have to do with JSP? http://javascript.internet.com is a good source for answering questions like this. -Original Message- From: Abhijeet Surve [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 3:49 PM To: [EMAIL PROTECTED] Subject: Title Problem in Netscape : U

Response Send Redirect problem

2001-07-25 Thread Smita
Hi all, In my applications, when I try to give response.sendRedirect(, it gives me an error that "Response is already commited". Infact, in this page, I am including some of the jsps, wrote earlier. This is case with <@pageforward > tag too. What is the reason and remidy for this? Tha

Re: Response Send Redirect problem

2001-07-25 Thread Kapil Keshwani
put the auto flush line after the response.sendRedirect line. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Smita Sent: Wednesday, July 25, 2001 9:17 PM To: [EMAIL PROTECTED] Subject: Response Send Redir

Re: Response Send Redirect problem

2001-07-25 Thread shivaraj
any redirection (or any header settings for that matter) that is to be done it should be done before printing out anything. Or u have to buffer the whole page. I am not sure whether the latter one will work? Check it out. "You cannot print out anything before redirection" All the best, Shivaraj

Re: Response Send Redirect problem

2001-07-25 Thread Chitra Muthukrishnan
could be a browser problem. Check in some other browser. -M.Chitra www.3rdagenda.com At 04:16 AM 7/26/01 +, you wrote: >Hi all, > In my applications, when I try to give > response.sendRedirect(, it gives me an error that "Response is > already commited". Infact, in this page, I am i