Re: Jsp and asp on the IIS?

2000-09-01 Thread Erwan TROEL
How can i nstall these 3 dll or where do i have to place them? -Message d'origine- De : Artem Babenko [mailto:[EMAIL PROTECTED]] Envoyé : jeudi 31 août 2000 18:18 À : [EMAIL PROTECTED] Objet : Re: Jsp and asp on the IIS? Hi Of corse you can I have downloaded this from apache.org

Re: Jsp and asp on the IIS?

2000-09-01 Thread Artem Babenko
Hi First you have to get one for a IIS (isapi_redirect.dll or another I am not sure) and read documentation at the apache.org how to install it. It works as IIS extension. And tomcat could work as a standalone web server or jsp extension for other server. Also you have to make some changes in

Caching problem

2000-09-01 Thread Anjan Ghosh
Hi all, I have the following problem. I have two frames - leftframe and rightframe - in an HTML page. The leftframe shows a list of key fields. On clicking one item in the list, the corresponding details is fetched from the database and shown in the rightframe. The user can edit the data in the

cookies????????

2000-09-01 Thread subramanian Athimoolam
hi here i am getting cookies values from asp page. i am using the following methods and give the like to file but the following error occur ... 500 Internal Server Error /main/forums/jspfiles/DFlogin.jsp: javax.servlet.ServletException: jrun__main__forums__jspfiles__DFlogin2ejsp21 (wrong

jsp:forward syntax

2000-09-01 Thread Enrique Pérez Soler
Can anyone tell me how should I call an URL address customizing the parameters pased? for example, I would like to make a call like the following: http://anaddress?parametername1=value1?parametername2=value2... Thanks! -- -- "El bit es al hombre lo que

How to read a file from a client in a JSP?

2000-09-01 Thread Erik Grøntoft Dybdahl
Hello, I want to provide a form where people can specify an input file which then is to be processed in a bean invoked from my JSP. How do I do this? I tried using a form having input type=file name=xmlFile/, but can't figure out how to process the request in the JSP. Regards, erik

Re: jsp:forward syntax

2000-09-01 Thread subramanian Athimoolam
hi "./login.jsp?value1=%=value%value2=%=val% " like that _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at

Re: File parsing

2000-09-01 Thread Erik Grøntoft Dybdahl
- Original Message - From: "Robert Nicholson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 01, 2000 4:38 AM Subject: Re: File parsing If you're using Oracle it has pretty powerful import utility. SQL Loader that can do quite a lot. But not do complicated logic or

Re: Caching problem

2000-09-01 Thread Veronique Dupierris
This is exalctly what is happening... the page corresponding to your refresh is cached, so the vrowser will not send the request to the server again but will get the cached file. So, you have to set one or all of the following headers in your pages ! I think that you have to use more than one of

JSP, Servlet and PHP

2000-09-01 Thread Olivier Baillard
Hi! I have to make JSP/Servlet and PHP closer together. I would like to write a PHP function which call a JSP script or a servlet and receive the result of this call (data base request for example). The only way I found is to work directly with URL:

usebean autocreate Param?

2000-09-01 Thread Hines, Bill
In JSP .9x, I think there was an autocreate param in the BEAN tag to specify whether the bean should be created with the null constructor if it wasn't found in the scope identified by the scope param. I don't see that in any of the descriptions of JSP 1.0 jsp:usebean. Is it automatic now? What if

double quote and carraige return in jsp variable with frames

2000-09-01 Thread Maria Baldassarri
I've problem displaying a string variable that contains character double quote or carriage return. Infact if I substitute the following line parent.right.document.write("%= simple_string %"); with parent.right.document.write("%= string_with_quotes%"); or with parent.right.document.write("%=

urgent about use jsp bean in

2000-09-01 Thread fan yuan
Hi , friend sorry to trouble you ! but I really have meet a problem in VAJ that puzzle me . When I use jsp 1.0 in VAJ , everything seems ok. but when I use jsp:useBean id = "say1" class = "test.saybean" scope = "session" / to see if using bean is ok , it tell me

Re: double quote and carraige return in jsp variable with frames

2000-09-01 Thread Naveen Gupta
please use single quote Naveen Gupta Web Developer Go4i.com (India) Pvt. Ltd. 2nd Floor,Kamal Cinema Building, Safdarjung Enclave New Delhi-110029 Phone:6100013-14,6171893-94 Fax:6100015 Email:[EMAIL PROTECTED] mailto:Email:[EMAIL PROTECTED] -Original Message- From: Maria Baldassarri

Re: JSP-INTEREST Digest - 30 Aug 2000 to 31 Aug 2000 (#2000-173)

2000-09-01 Thread Efrain Gtz
Put the JSP file in C:\Program Files\Apache Group\Apache\htdocs if you select the default path.. Put the servlets in: C:\JRun\servlets And If you use Beans Put in C:\JRun\jsm-default\classes If you use Package Classes put the folder in this same folder.

Apache, Tomcat and mod_ssl

2000-09-01 Thread mike dell
Hi all, Does any one know why when I run apache with tomcat on SSL mode the pages show up on IE 5.5 and all Netscape versions but not IE 5.0 or lower, Please help -Mike, __ Do You Yahoo!? Yahoo! Mail - Free email you can access from anywhere!

Re: Training and Education

2000-09-01 Thread Hines, Bill
Check the digests of this list for threads on "books". There are a few that everyone seems to like. There are endless tutorials on Java and JSP out there on the web, just search for them! Your question is similar to someone standing on the shores of the Pacific Ocean asking passers-by if they

Re: double quote and carraige return in jsp variable with frames

2000-09-01 Thread Maria Baldassarri
Why?? Anyway I cannot use single quote because in my real code my variable is filled through myBean.getDocument() call, which is a method that return to me the result of some other processing on xml/xsl files. And what about carriage return character?? thanks Maria Naveen Gupta [EMAIL

No Subject

2000-09-01 Thread Matthias Müller
Hello, i try to run an applet in an jsp page with the jsp:plugin tag. jsp:plugin type="someapplet" code="somecode.class with="xxx" heigt="xxx" etc. When i try to acces the jsp i become an Error 500, Internal Servlet Error, Unterminated jsp:plugin

test

2000-09-01 Thread Matthias Müller
this is an test === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html

Re: highly scalable network server app

2000-09-01 Thread Jim Bailey
I understand. You manage the threads by keeping a list of blocked io, scan the io for completion with a single thread and when the io is completed recreate the original io thread so that the task can continue. Cool technique. Sounds like something that would improve performance in Java.

Re: URGENT JRun Apache PHP ???

2000-09-01 Thread Stefan Demetz
probably you need to change port number in this console -Original Message- From: sufi malak [mailto:[EMAIL PROTECTED]] Sent: 01 September 2000 16:02 To: [EMAIL PROTECTED] Subject: URGENT JRun Apache PHP ??? Hi, before installing JRun in my NT workstation, I had Apache and PHP and

URGENT JRun Apache PHP ???

2000-09-01 Thread sufi malak
Hi, before installing JRun in my NT workstation, I had Apache and PHP and always I put my php dir in htdocs dirctory in apache, and go to the browser and type : localhost:80/dir/index.php4 But now when I installed JRun, whenever I go to the browser and type localhost:80 and hit enter it brings

test

2000-09-01 Thread Matthias Müller
=== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html

Re: Expresso tools

2000-09-01 Thread Adam Rossi
I've been reading about Expresso tools and they seem really cool! Does anyone here have personal experience with them? Are they good? Bad? Know of any other similar FREE tool kits? thanks! Rich We use Expresso on many different projects, and we contribute code to the Expresso project.

Tomcat 3.1 Issue

2000-09-01 Thread Laiwu Luo
We are following model 2 architecture to develop an application on Tomcat3.1 server. But we encounter a problem whenever we recompile the controller servlet code, we have to restart Tomcat server; otherwise, JSP page will get "java.lang.ClassCastException" which relates to the code we use to cast

server-side XSL parsing

2000-09-01 Thread Neal Cabage
Can anyone recommend how I might apply XSL to my XML on the server side? I am using JRUN and presume my best option is the jrun:xslt/ custom tag, but I can't get the damned thing to work. Can anyone recommend another solution or what I might be missing with this solution? Thanks! Neal

File Parsing

2000-09-01 Thread Larry Liu
Hi: I have a flat text file exported from database, each record is in one line with line delimiter. Within one line of a record, there are delimiters for each field of data. The txt file could have large amount of data. I want to use this text file as an external data source read them into

Re: server-side XSL parsing

2000-09-01 Thread Craig R. McClanahan
Neal Cabage wrote: Can anyone recommend how I might apply XSL to my XML on the server side? I am using JRUN and presume my best option is the jrun:xslt/ custom tag, but I can't get the damned thing to work. Can anyone recommend another solution or what I might be missing with this

Re: File Parsing

2000-09-01 Thread Martin Cooper
Depending on your platform and environment, you might be able to treat the text file as a database, and use JDBC to work with it. For example, I know you can access a CSV text file through ODBC on Windows. -- Martin Cooper Tumbleweed Communications - Original Message - From: "Larry Liu"

Re: server-side XSL parsing

2000-09-01 Thread Parag V Thakur
Can anyone recommend how I might apply XSL to my XML on the server side? I am using JRUN and presume my best option is the jrun:xslt/ custom tag, but I can't get the damned thing to work. Can anyone recommend another solution or what I might be missing with this solution? try using the

test

2000-09-01 Thread Lorena Carlo
hi is just a test === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html

Re: File Parsing

2000-09-01 Thread Larry Liu
I can not rely on MS solutions. Do you have any other way? Thanks Larry -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED]] Sent: Friday, September 01, 2000 1:37 PM To: [EMAIL PROTECTED] Subject: Re: File Parsing Depending on your platform and environment, you might be

Re: File Parsing

2000-09-01 Thread Larry Liu
I can not rely on MS solutions. Do you have any other way? Thanks Larry -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED]] Sent: Friday, September 01, 2000 1:37 PM To: [EMAIL PROTECTED] Subject: Re: File Parsing Depending on your platform and environment, you might be

Help me please!!!

2000-09-01 Thread Lorena Carlo
Hello Everybody Can anybody help me I need to obtain information from a host, it doesn't use database, it uses plain text archives, and I need to make a report with some data there, I am using arrays to hold the data, I need to present the information on the web, do you know any reporter or some

Re: Tomcat 3.1 Issue

2000-09-01 Thread Parag V Thakur
What you mentioned is correct. But, for my case, the only controller servlet code has been recompiled; no supporting classes have been changed or recompiled. -- Laiwu i would like to point u to the readme file included in the distribution... here is a small piece from it: -- readme --

Re: Jsp and asp on the IIS?

2000-09-01 Thread Muliawan Sjarif
From my understanding, this isapi_redirect.dll act like an JSP engine for IIS, is that correct? And then how bout the Servlet engine, is Tomcat also have the Servlet engine for IIS? If Tomcat has, can it fully support for production? I mean can support unlimited concurent request. Muliawan

Dictionary help please!

2000-09-01 Thread Angela Chow
hi, I need someone to give me some info on how dictionary works. I know that it holds a stack of objects with a key associating with its value. What is the order of the stack? Is it first in, last out? Is there anyway that i could reverse the order of the stack? thanks in advance! angela

Re: Dictionary help please!

2000-09-01 Thread Ron Chan
Hi, a dictionary is a hash table, ie. items stored are hashed and their order changes with insertion and removal of items in the collection. having said that, I have an 'ordered' hashtable. it retains the advantages of the hashtable, yet you are able to get the items like a vector. quite