Re: Cookie with Jrun and Netscape

1999-07-03 Thread Arie Fishler
the cookies you need with the whole cookie fields (expires, path, domain etc.) separated by a comma (;). Then just call response.addCookie(cookie) and voila... It would have been just more normal for Jrun to fix the bug, but whatever... Regards. Arie Fishler wrote: Hi ! I am using JRun Pro 2.3.1

Cookie with Jrun and Netscape

1999-06-28 Thread Arie Fishler
Hi ! I am using JRun Pro 2.3.1 Build 145 . I am facing a strange phenomenon while setting cookies. When I try to set the cookie for a longer age then a session (positive number for setAge) I don't succeed while working with a Netscape browser. The cookie is deleted when the browser is closed.

Re: java

1999-06-10 Thread Arie Fishler
When upgrading to a higher JDK version, like from jdk1.1.7 to JDK 1.2, Sun might have changed some of the API included in the JDKs. The changes are usually renaming method, changing parameters of existing methods or even canceling the method completely. Each change method which does not exist

Re: Package loading

1999-06-10 Thread Arie Fishler
In the server, JRun from my experience, there is a parameter setting for the classpath. This is in the JRunAdmin under the General tab and under the Java tab there. Just add the jat with the full path into the classpath and it will be able to load any class from there. You can change the

Re: New Product

1999-06-09 Thread Arie Fishler
I am not sure about the complete functionality of Visual InterDev, but a strong HTML editor with the ability to integrate JSP directly in the pages is a tool we need. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]

Re: using standard classes

1999-06-04 Thread Arie Fishler
You should import the class in a scriplet % import java.sql.ResultSet % or reference the Result set with the full package name in the location where you define it. Hope it helps. -Original Message- From: A mailing list about Java Server Pages specification and reference

FW: [Fwd: Re: FW: File Upload]

1999-06-03 Thread Arie Fishler
The author of O'reilly's "Java Servlet Programming", Jason Hunter, developed the examples shown in the book to a complete package that is availible on the net. A package dated 18-September-1998 is attached (cos.zip). O'reilly permit the usage of the package only if each programmer in your

Re: Where is the sorce code translated

1999-05-02 Thread Arie Fishler
Assuming you are using JRUN 2.3: \jrun\jsm-default\services\jseweb\servlets\jsp \jrun\jsm-default\services\jse\servlets\jsp -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Yoshiyuki Kumadaki Sent:

Re: Any large scale implementations ?

1999-04-28 Thread Arie Fishler
There is no problem running it under any jdk either ! It just a matter of configuration I DO HATE IT WHEN IT REPLIES TO THE SENDER -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Nic Wise Sent:

Re: JRun-prob

1999-04-28 Thread Arie Fishler
Check the java code that was generated from the jsp file. You might have put errors in the jsp which concluded in the creation of an errored html page (which is the output of the servlet which is created from your jsp file). The java code is located in \jrun\jsm-default\jseweb\servlets\jsp or

Re: ELSE tag

1999-04-28 Thread Arie Fishler
Way to go Daniel ! When you want the job done use JAVA. Why use awkward methods instead of the real thing? -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Kirkdorffer, Daniel Sent: Wednesday, April

Re: Any large scale implementations ?

1999-04-27 Thread Arie Fishler
I am with Walter here. We have no problems what so ever with Jrun. After sorting out the initial problems we are doing great things with it. The possibility to write dynamic pages using Java is great. We haven't tested our application yet but it will be a large scale one. -Original

Re: Pb with JRun and Java Bean

1999-04-19 Thread Arie Fishler
Hi Antoine ! This is the way JRUN works and you cannot configure it. When you change the JSP, the page is recompiled and the servlet will be loaded again the next time you call the page. However beans are loaded once during JRUN's life and there is no way to unload classes once they were loaded.

Re: cookie problem

1999-04-19 Thread Arie Fishler
As we know it here.after hours of trials we have reached the conclusion that you cannot delete a cookie using this method. This is probably a java implementation bug ! I'll be happy to hear otherwise... -Original Message- From: A mailing list about Java Server Pages specification

Server Side Include

1999-04-18 Thread Arie Fishler
Hi ! Is there a way to perform server side include when using Jrun 2.3. The spec's SSI does not seem to work and JRun's include tag %@ include= % performs a relative include obly. This means that it appends the include path to the current path and not to any absolute location. It makes it quite

Re: Where can newbie find info to get started with JSP

1999-04-11 Thread Arie Fishler
-Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of @Home Sent: Wednesday, December 02, 1998 5:59 AM To: Subject:Where can newbie find info to get started with JSP I'm new to JSP but not to

Re: Cookie communication

1999-04-09 Thread Arie Fishler
Technically, You can definitely see the cookies if they were produced from a servlet/jsp on the same domain. Just read carefully the Cookie parameters definition so you can set them correctly. As Tuyen Tran mentioned, you have to pay attention to the domain and path. -Original Message-

Re: Loops on multiple properties

1999-04-08 Thread Arie Fishler
Hi Werner If I understand it correctly what you suggest will perform a NESTED loop which means that if I have j values for property x and k values for property y then the LOOP will produce j*k lines and I don't want it to behave like that. The properties have the same number of elements t and I