Re: Compliation problem, please help

2000-04-28 Thread Vishwa
Hi Piotr, i am importing my own package util.file. As it is not part of standard release we are yet to make it com.something.util.file. thanks vishwa Piotr Wierzbicki wrote: > > Hi, > Try this: > <%@page import="java.io.*,java.util.file.*" %> // <-- java.util.file.* > > -Original Message

Re: JSP on IIS? Possible?

2000-04-28 Thread sameer kuber
Hi, I am sameer working with Aptech (India), i am having one query where to put my .jsp files and where to put Beans if you know it then please help me , i will be very thankful to you Sameer Joe Hanink wrote: > http://java.sun.com/products/jsp/industry.html > > Yes, Allaire JRUN version 2.3

Re: [Re: jsp:expression tag]

2000-04-28 Thread chanda nagender
Hai Sangita, Welcome To JSP user list. I am one of the user member in JSP member list. Here is a small task, if u find interest u can start doing it. Even any doubts u can contact me My Yahoo id : javafac Task Divide browser window into 4 frames. In the first frame , take an text field a

Re: Synchronizing static methods called from JSPs? Do I need to?

2000-04-28 Thread Venkat Kethababoyina
I think it depends on the scope of the object you are dealing with. If it has application scope and multiple sessions try to use the same object (static or non-static data) then you have to make sure the critical sections are locked while doing modifications. Venkat --- Phil Swenson <[EMAIL P

Synchronizing static methods called from JSPs? Do I need to?

2000-04-28 Thread Phil Swenson
If I have a static method I'm calling from a JSP such as: public static String cleanString(String s, String validCharSet) Do I need to synchronize it? I'm assuming I don't unless it accesses static data. Is this correct? Thanks! ===

Re: JSP/JavaBean/XML Architecture

2000-04-28 Thread Ed
Ryan, How dynamic are your XML pages? I am taking a different approach for certain reasons: 1 - The XML documents are very "templateish" There is some looping and placing data in between tags, but little if-then type logic. 2 - We don't want to hard code the XML, allowing an end user to work

Re: JSP on IIS? Possible?

2000-04-28 Thread Kevin Duffey
Resin by a long shot. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Neeraj Dad Sent: Friday, April 28, 2000 5:15 PM To: [EMAIL PROTECTED] Subject: Re: JSP on IIS? Possible? If you have tried Resin , can

Re: JSP on IIS? Possible?

2000-04-28 Thread Neeraj Dad
If you have tried Resin , can you pls tell me which is faster Resin or Jrun. Neeraj -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Joe Hanink Sent: Friday, April 28, 2000 11:25 PM To: [EMAIL PROTECTED] Sub

Re: JSP on IIS? Possible?

2000-04-28 Thread Neeraj Dad
hi chris, you can use JSP pages with IIS. I am also doing same. All you need a JSP/Servlet engine such as Jrun/Resin/ServletExec and you can run JSP pages on IIS. pls let me know if you need anything else. bye the way i am using Resin1.1 download it from www.caucho.com Neeraj -Original Messag

Re: JSP on IIS? Possible?

2000-04-28 Thread Neeraj Dad
Can you throw light on JSP/XML model for web application Neeraj -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Deniz Ersöz Sent: Friday, April 28, 2000 11:16 PM To: [EMAIL PROTECTED] Subject: Re: JSP on I

Re: secure JSPs

2000-04-28 Thread Venkat Kethababoyina
I was not sure what happens to HttpSession when I switch the URL. I make heavy use of session to keep some of the user's context in the system. Any thoughts on that? Thanks, Venkat --- Kevin Duffey <[EMAIL PROTECTED]> wrote: > How do you make them secure? I thought you just make > the link ht

Re: JSP on IIS? Possible?

2000-04-28 Thread Deniz Ersöz
Thank u for sharing your ideas with me... I installed Resin just now and it works fine... - Original Message - From: "Neeraj Dad" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 29, 2000 2:25 AM Subject: Re: JSP on IIS? Possible? > I too agree with this. and above al

Re: secure JSPs

2000-04-28 Thread Kevin Duffey
How do you make them secure? I thought you just make the link https instead of http and information is sent securely. I know you need a secure certificate on the server, but other than that..what is involved? === To unsubscri

Re: JSP on IIS? Possible?

2000-04-28 Thread Joe Hanink
http://java.sun.com/products/jsp/industry.html Yes, Allaire JRUN version 2.3.3 supports servlets 2.1 and JSP 1.0 however, version 3.0 BETA supports servlets 2.2 and JSP 1.1 -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTEC

Re: JSP on IIS? Possible?

2000-04-28 Thread Neeraj Dad
I too agree with this. and above all it automatically compiles the java classes, so when ever there is any change in code all you have to do is replace the source file, you need not to shutdown the server and restart it again. Neeraj -Original Message- From: A mailing list about Java Serv

Re: JSP on IIS? Possible?

2000-04-28 Thread Neeraj Dad
Hi joe, I heard that Jrun does not have support for JSP1.1. pls correct me in this. coz i am using Resin just becoz of this. As Resin is providing support to JSP1.1 Neeraj -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]

secure JSPs

2000-04-28 Thread Venkat Kethababoyina
Hi, I would like to make some of my JSP pages secure (login, registration pages for example). We tried hard-coding the secure URLs in non-secure pages and not sure if this is the way to go. I am wondering how others are doing it. We are using WebLogic 5.1 under NT. Thanks, Venkat

Re: JSP on IIS? Possible?

2000-04-28 Thread Kevin Duffey
You buy it for $600 and install it. I would go with Resin personally. Its free to use, and like I said..if you don't need SSL, use its web server too..its much faster than IIS with any servlet engine. Plus, Resin gives you servlet 2.2 and JSP 1.1 spec, where as JRUN is only Servlet 2.1 and JSP 1.0

Re: Compliation problem, please help

2000-04-28 Thread Piotr Wierzbicki
Hi, Try this: <%@page import="java.io.*,java.util.file.*" %> // <-- java.util.file.* -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Vishwa Sent: Friday, April 28, 2000 13:41 To: [EMAIL PROTECTED] Subject:

Re: JSP on IIS? Possible?

2000-04-28 Thread Joe Hanink
The JRUN install gives the option to create an IIS connector. This will allow you to serve JSP pages from your IIS web directories as long as your JRUN services are running. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECT

Re: JSP on IIS? Possible?

2000-04-28 Thread Deniz Ersöz
How can I use Jrun with IIS? - Original Message - From: "Kevin Duffey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 28, 2000 11:01 PM Subject: Re: JSP on IIS? Possible? > Yes. We use JRUN here, its a DLL plugin for IIS. > > I have tested Resin, which is quite a bit f

subscribe

2000-04-28 Thread Sangita Gupta
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".

Re: JSP on IIS? Possible?

2000-04-28 Thread Kevin Duffey
Yes. We use JRUN here, its a DLL plugin for IIS. I have tested Resin, which is quite a bit faster and easier to work with. Also, if you don't need to use SSL right now..you can wait a few months...use Resin as your web server AND servlet/jsp engine. It works much faster than IIS/JRUN or IIS/Resin

Re: JSP on IIS? Possible?

2000-04-28 Thread Joe Hanink
yes, you'll need an IIS connector. One is provided with the free Allaire JRUN at www.allaire.com the connector is configurable during installation. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Chris Ca

JSP on IIS? Possible?

2000-04-28 Thread Chris Cayetano
I'd like to know if this is possible. If so, what is needed? Is there a web page illustrating the steps? Thanks in advance. Chris === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant

Re: Radio buttons and JSP

2000-04-28 Thread Ekberg, Tom
Mohan Radhakrishnan <[EMAIL PROTECTED]> wrote: > The problem is that I have a dynamically generated table . There can be > any number of rows and each value is associated with a radio button group of > two buttons . So I am generating the name like "radio0", "radio1", "radio2" > etc. > I

Re: jsp:expression tag

2000-04-28 Thread Hans Bergsten
Steve Croft wrote: > > I notice that the tag "jsp:extension" is supported in iPlanet 4.1 - is it an > iPlanet extension or is it part of JSP 1.1? The JSP 1.1 spec is a little > vague on the issue, implying that the tag will be part of a future JSP specs > but not explicitly saying it is part of 1

JSP/JavaBean/XML Architecture

2000-04-28 Thread Shriver, Ryan
Hello all, We're developing a Java site for a customer and I wanted to get some feedback on the architecture we're using. Specifically, how is anyone else out there getting their XML data from a database into the JSP page? >From the top down, our architecture is: JSP JavaBeans Middle-layer Java

Re: Servlet Container, Servlet Engine and Web Server

2000-04-28 Thread Hans Bergsten
Rajneesh Garg wrote: > > Hi there, > > What is the difference between a Servlet Container and Servlet Engine? What > role do they play in a Web Server? and how? Servlet container is the term introduced in the Servlet 2.2 for what used to be called servlet engine. The "engine" term was never forma

JSP CORBA

2000-04-28 Thread Lester, Doug
Does any one have experience or know of some examples of accessing CORBA object from a JSP? === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at:

thanks to all

2000-04-28 Thread Brown, Sam
Thanks to all for the help!! Have a wonderful & blessed weekend. Sam === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/

Re: newbie to JSP

2000-04-28 Thread Joe Hanink
http://java.sun.com/products/jsp/jsp-asp.html -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Brown, Sam Sent: Friday, April 28, 2000 8:29 AM To: [EMAIL PROTECTED] Subject: newbie to JSP Hello, Has anyon

A question

2000-04-28 Thread Deniz Ersöz
How can I integrate Tomcat dll's into IIS5.0? Thank u for your help === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.co

Re: newbie to JSP

2000-04-28 Thread Suvayu Ray
Hi Sam I think you can look at devx.com and aspzone.com for a comparison on jsp and asp. I checked out an article a couple of days ago. I hope you can still find it there. Suvayu. --Original Message-- From: "Brown, Sam" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Sent: April 28, 2000 3:28

Re: newbie to JSP

2000-04-28 Thread Sreenivasa Majji [TEMP]
Here is the link http://java.sun.com/products/jsp/jsp-asp.html -Kumar |Subject: newbie to JSP |To: [EMAIL PROTECTED] | |Hello, | |Has anyone seen any comparisons done between JSP & ASP? I'm new to JSP and |would like to see what benefits/features it has compared to ASP. | |Sam | |=

Re: use javascript in jsp

2000-04-28 Thread Kevin Duffey
Yes, you can use JavaScript in JSP. Remember, JSP is HTML with Java code. When its sent back as a response, JavaScript is the same as if it were in HTML. However, you can't use JavaScript to script the server-side..unless your using Resin.

jsp:expression tag

2000-04-28 Thread Steve Croft
I notice that the tag "jsp:extension" is supported in iPlanet 4.1 - is it an iPlanet extension or is it part of JSP 1.1? The JSP 1.1 spec is a little vague on the issue, implying that the tag will be part of a future JSP specs but not explicitly saying it is part of 1.1. If someone can clarify t

Re: Include jsp page held on another server?

2000-04-28 Thread Joseph B. Ottinger
You can't use to pull a page from a separate server. To do that you'll have to use an external URL call, which can be done in a lot of ways... to wit, the taglib (which should be on sourceforge toon, under jsptags, if it's not there already), or you can use a bean to do the work for you as well.

Include jsp page held on another server?

2000-04-28 Thread john_kenshole
Can any one tell me if it is possible to forward or include a jsp page which is held on another server? <%jsp:include page="server.your.com/webapp/web/test.jsp" /%> Many Thanks in anticipation John Kenshole === To unsubscr

newbie to JSP

2000-04-28 Thread Brown, Sam
Hello, Has anyone seen any comparisons done between JSP & ASP? I'm new to JSP and would like to see what benefits/features it has compared to ASP. Sam === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-IN

form.print() - problem in Netscape browser.

2000-04-28 Thread Rathinavel P
Sorry it may be bit off topic but i hope someone can help me out on this. I have scaned image file in the webserver and will be loaded into the browser.I use form.print() function to print the image file content. The problem here is i am not getting the proper output printed.I am getting only th

Re: [A compilation question]

2000-04-28 Thread mahesh bapu
Set your classpath to the path of servlet.jar. After you place the jar files in your class path compile it again subbu Charles Tam <[EMAIL PROTECTED]> wrote: Hi JSP Users I am quite new to Java 1.1.8 and jswdk-1.0.1 For some reason, I cannot compile the following class. >>> start import java.

Re: NAS 4.0

2000-04-28 Thread Stanley, Lize
Dan, where your compiled file goes depends on what you are using to compile. Are you working within an IDE or from the command prompt? If from the command prompt, the .class file will simply be put in whatever directory you are in (if you do not have a package statement in your code). If you put

Re: JSP Server

2000-04-28 Thread Deniz Ersöz
How can I integrate Tomcat into IIS5.0? - Original Message - From: "Stefán Freyr Stefánsson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 28, 2000 2:46 PM Subject: Re: JSP Server > Yes you can run JSP's on Apache (don't know about Netscape). I'm using > Tomcat (http

Re: RequestDispatcher forward

2000-04-28 Thread Kent Symanzik
I found a solution to this problem in case anyone is interested. The problem is resolved if I define aliases for my servlets so that /servlet is not in the path. Kent - Original Message - From: Kent Symanzik <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 27, 2000 3:38

NAS 4.0

2000-04-28 Thread Dan Briscoe
Hello! Can someone please tell me in plain english where I put my beans class file? I am running netscape application server 4.0 on netscape enterprise web server 4.0. Does it go somewhere in the NAS directory, the NES directory or somewhere else. In the 'additional directorys' on NAS 4.0 I point

Re: JSP Server

2000-04-28 Thread Robo Zilka
Netscape dtto. You need the iPlanet web server 4.1 to run jsp 1.1 servlets 2.2. RoBo Zilka /EuroWeb a.s. /www.euroweb.sk /mailto:[EMAIL PROTECTED] -Original Message- From: Stefán Freyr Stefánsson [mailto:[EMAIL PROTECTED]] Sent: Friday, April 28, 2000 1:46 PM To: [EMAI

Solution with JSP

2000-04-28 Thread Margus Kaur
Hello, I am new in web-based application development and actually quite confused because all the huge amount different softwate offered for building web-applications. As much I have searched, JSP seems to be the best technology for building quick mission-critical web-based business applications.

Re: JSP Server

2000-04-28 Thread Stefán Freyr Stefánsson
Yes you can run JSP's on Apache (don't know about Netscape). I'm using Tomcat (http://jakarta.apache.org) as the JSP engine. This is a seperate JSP/Servlet engine which can be "connected" to Apache in order to manage JSP pages and servlets. Hope this helps. Stefan -Original Message- Fr

Re: javax.servlet.jsp.tagext

2000-04-28 Thread Ishwar Naik
thanx Lynch for the info, it's working with Orion' naik -Original Message- From: LynchWu [mailto:[EMAIL PROTECTED]] Sent: Friday, April 28, 2000 3:51 PM To: [EMAIL PROTECTED] Subject: Re: javax.servlet.jsp.tagext Hi Naik JSWDK does not support JSP 1.1, but tagext is supported only in

Chaining template and jspServlet in JSWDK

2000-04-28 Thread Dorin Hogea
Hello, I have little experience with JSP, so I tried first to work with JSWDK. I have some experience with Java language, so I don't intend to dig into specific server details to play with some JSP and beans stuff (although it seems almost imposible not to !!! :) ) . Tempted to create a simple s

Re: how to have two submit buttons callingdifferentJSP's

2000-04-28 Thread friza taib
Hi RoBo, The problem is i'm not using frames. >From: Robo ®ilka <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: how to have two submit buttons callingdifferentJSP's >Date: Wed, 26 A

JSP Server

2000-04-28 Thread Gogia Nitin
I have been running JSP's on Java Web Server. I want to ask whether we can run JSP's on Apache or Netscape Enterprise Server. If yes, do we require any plug-in for this ? Thanks in advance, Nitin === To unsubscribe: mailto [

Re: javax.servlet.jsp.tagext

2000-04-28 Thread LynchWu
Hi Naik JSWDK does not support JSP 1.1, but tagext is supported only in JSP 1.1. So maybe you should try Tomcat instead. Regards == Lynch Wu Web Engineer pAsia Inc. TEL: 886-2-87883033 ext 347 FAX: 886-2-87881532 == >I am usi

best practices?

2000-04-28 Thread Joseph B. Ottinger
For my J2EE example application, rather than continue poorly-planned development without any knowledge whatsoever, I designed a very simple entity bean, and implemented a set of pages to modify, add, and query the backend for the entities. As this is the first "road test" for J2EE for me, more or

Re: thoughts on parameter naming

2000-04-28 Thread Joseph B. Ottinger
On Thu, 27 Apr 2000, Rich Holladay wrote: > By looking through the source code I've been able to figure out how to > get the tag to work. It makes sense to me now. Excellent. >name='<%-- the bean containing the currently selected value --%>' > property='<%-- the property of that bean wh

Re: use javascript in jsp

2000-04-28 Thread HockPing Chew
Yes, of course you can use java script in jsp just like what we use in normal html. May i ask if i can use javascript in jsp. if yes, do i use java tags? === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff J

Re: DATE IN JAVA

2000-04-28 Thread Joseph B. Ottinger
On Thu, 27 Apr 2000, Munish Talwar wrote: > Can anybody tell me how can I find today's date in Java. > In Oracle or Microsoft > we use sysdate, or now to do this but in java what do we have for this Well, you didn't say Oracle or Microsoft WHAT - it's not like they have only one product each - b

javax.servlet.jsp.tagext

2000-04-28 Thread Ishwar Naik
I am using JSWDK. Pl help me, In which jar file, package javax.servlet.jsp.tagext exists. thanks, naik === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be

use javascript in jsp

2000-04-28 Thread Brenda Tung
May i ask if i can use javascript in jsp. if yes, do i use java tags? === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/p

Re: A compilation question

2000-04-28 Thread Joe Hanink
the Package javax.servlet.http package is supported by a number of development kits. Look for where you installed your kit and look for the lib subdirectory. with jsdkee1.2, the lib directory contains j2ee.jar, which contains the servlet classes. I therefore include j2ee.jar in my classpath. i

Re: using a concatinated string as a variable

2000-04-28 Thread Joe Hanink
you can approximate this by creating a structure that mimics an associative array. use a HashMap to define key/value pairs. keys can be an arbitrary object type, such as string -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PRO

Re: A compilation question

2000-04-28 Thread Charles Tam
Hi Nathan What is jsdk.jar? Where can I get it? I thought having Java 1.1.8 and jswdk-1.0.1 is enough for JSP programming. Thanks Charles > that's because you need jsdk.jar in your classpath > > -Original Message- > From: A mailing list about Java Server Pages specification and referenc

How can I check that the session expires?

2000-04-28 Thread Kate Bornstein
Hi, I'm a beginner in JSP. Thanks for all who reply my previous email. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com === T

using a concatinated string as a variable

2000-04-28 Thread Manish Keswani
Hi All, Facing a trivial problem. I need to use a string value as a variable name. It is possible in VBScript and javascript, but dosen't seem to work in java. I'd be glad if someone could help me out here. Regards, Manish ===

Re: A compilation question

2000-04-28 Thread Charles Tam
FYI: I have solved the compilation problem with the following command: javac -classpath c:\jswdk-1.0.1\lib\servlet.jar;c:\jdk1.1.8\lib\classes.zip articles.java Thank for your support. Charles > > > did you include the jswdk installation in your classpath? > > > > -Original Message- > >

Servlet Container, Servlet Engine and Web Server

2000-04-28 Thread Rajneesh Garg
Hi there, What is the difference between a Servlet Container and Servlet Engine? What role do they play in a Web Server? and how? Regards, Rajneesh Garg Keep Smiling. It does improve your face value. :-) === To unsubscrib

Compliation problem, please help

2000-04-28 Thread Vishwa
Hello, I am using Javawebserver and i am trying to compile the following jsp. It imports the class Explorer which is in util.file package. I have copied the util/file folder to the servlets directory. But i am getting this error : --- 500 Internal Server Error

Re: How to read the files within a directory?

2000-04-28 Thread Sachin S. Khanna
There is a method in the File class (java.io package) called : public String[] list(FileNameFilter) This method can be used to solve your problem. Have a nice day. With regards, Sachin S. Khanna. www.emailanorder.com - Original Message - From: Divya M A <[EMAIL PROTECTED]> To: <[EMAIL PROT

Re: A compilation question

2000-04-28 Thread Charles Tam
Hi Joe Yes, I did not include the jswdk installation in the classpath. I thought classpath is no longer required for jdk1.1.8 Thanks Charles > did you include the jswdk installation in your classpath? > > -Original Message- > From: A mailing list about Java Server Pages specification an

Re: A compilation question

2000-04-28 Thread Nathan Hoover
that's because you need jsdk.jar in your classpath -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Charles Tam Sent: Friday, April 28, 2000 2:38 AM To: [EMAIL PROTECTED] Subject: A compilation question Hi

Re: A compilation question

2000-04-28 Thread Joe Hanink
did you include the jswdk installation in your classpath? -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Charles Tam Sent: Thursday, April 27, 2000 11:38 PM To: [EMAIL PROTECTED] Subject: A compilation que