Re: model 2 servlet mapping question

2000-05-02 Thread Daniel Lopez
Hi Chris, I think that's an Orion problem. I've successfully used this technique with JRun and Resin and you DON'T need to have a file with that name, as Craig explained in a message some time ago. Somebody told me they were having similar problems with Orion and that somebody from the Orion team

"signoff JSP-INTEREST"

2000-05-02 Thread Rama Mohan
=== 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 htt

Re: Passing objects from JSP to JSP

2000-05-02 Thread [Vinod Govindan]
You could also do it by using setParameter() instead of setAttribute! I think! aNYWAY GIVE IT A SHOT! Naveen Malik cc: Sent by: A Subject: Re: Passing objects from JSP to JSP mai

Re: forward tag!!!

2000-05-02 Thread Aggarwal, Pawan
You can buffer the output sent from the JSP page to the client browser using the directive <%@page buffer="sizeinkb" % > The default size is 8kb,,, When you buffering it then you need to use <%@page autoflush="true"% > so that whenever the buffe

problem with session tracking,getting two sessions at a time.

2000-05-02 Thread PITCHUKA SRINIVASA RAO
Hi all, In my application after user successfully logged in,I'll assign a adminID to him and I'm putting that adminID in that session.then I'm forwarding to index.html file where total transactions or process to be done after user successfully logged in.In that index.html I'm having action to som

Re: Attempt to clear a buffer that's already been flushed !

2000-05-02 Thread [Vinod Govindan]
That error normally occurs when the jsp page gets a null value..! The null value causes and exception.. but the error reported is entirely different! You'll have to do specific System.out debugging and find you the exact location where you get a null value! Wish you the best! Vinod

how to write doGet/DoPost methods in JSP1.0?

2000-05-02 Thread Vikrant Jain
Hello people! Can any of u please answer the above query? JSP .9x had a directive called "method", but 1.0 does not seem to have any way through which I can write code in any method other than service. Thanx, Vikrant === To

Re: Invalid escape character ...

2000-05-02 Thread Scott Evans
Why don't you show us the code in your jsp that starts with <%@ page import=" ? Scott Evans SI&I Training Development 46833 (Ramat Gan) > -Original Message- > From: Jose Castro [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 02, 2000 7:34 PM > To: [EMAIL PROTECTED] > Subject: Invalid e

TOMCAT PROBLEM

2000-05-02 Thread Ritesh Sinha
Hi gurus, I am trying to run tomcat . But I have not been able to do it. This time the problem that it shows is: The text scrolls very fast when i startupo TOM CAT but when i do a shutdown it shows following: problem connecting to admin registry Any Idea what it could be? thanks, ritesh ===

Re: A definition question

2000-05-02 Thread Sajeev Anand
Well, here is my 2 c: Servlets 'embed' the presentation aspects in the application logic. Remember hardcoding ,etc? In JSP, you have the java code ie the application logic contained in the presentation tags. Sajeev -Original Message- From: A mailing list about Java Server Pages spec

Re: A definition question

2000-05-02 Thread LynchWu
Just a guess. In servlet, we put the HTML tags inside of the Java code. In JSP, we put the Java codes inside of a HTML page. == Lynch Wu Web Engineer ( pAsia Inc. ) TEL: 886-2-87883033 ext 347 FAX: 886-2-87881532 == >Hi JSP

Re: Multiple Servlet Contexts

2000-05-02 Thread Gogia Nitin
will u'r answer will differ depending upon my yes or no > -Original Message- > From: Mohnish [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, May 03, 2000 2:50 AM > To: [EMAIL PROTECTED] > Subject: Re: Multiple Servlet Contexts > > Nitin first tell me are u passed out student of YMCA >

Re: "Equals" method not working correctly?

2000-05-02 Thread Kishore Raghavan
Peter, In Java, ("TEXT").equals(null) does not throw a runtime Exception but (null).equals("TEXT") will throw a NullPointerException. In your case, getAreaType() method might be returning a null. TRY <%= (inputparams.getAreatype()).equals("Nativeforest")?"Checked" : "Notchecked" %> This sho

Re: JSP, beans and setProperty

2000-05-02 Thread Jason Wyatt
> Jason Wyatt wrote: > > > > Hi, > > > > I am using JBuilder 3.5 Enterprise & am having a problem with > > JSP's introspection, ie using setProperty<... property="*" ...> to > > set fields of the same name in a bean. > > > > I have two jsp pages, one to display a page (the 'view' page) and > > ano

A definition question

2000-05-02 Thread Charles Tam
Hi JSP Developers At the O'Reilly Conference on Java March 29th 2000, Santa Clara, California. A speaker mentioned JSP as "Inside-Out" Servlets. What does it mean? Kind Regards Charles Tam [EMAIL PROTECTED] Operational Solutions Management Software Developer Office AUSTRALIA: +61 2 9438 2777

Re: "Equals" method not working correctly?

2000-05-02 Thread Singh Kuldip
hi i think the error is due to null value in inputparams.getAreatype() at run time === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://

Re: "Equals" method not working correctly?

2000-05-02 Thread Eric Dunstan
try <%= (inputparams.getAreatype()).equals("Nativeforest")?"Checked" : "Notchecked" %> Note the extra Parenthesis around the (inputparams.getAreatype()) ERD 2000 A.D. >From: Peter Hutchinson <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <

100% Natural Rawhide Dog Chew Treats

2000-05-02 Thread Frank
We make 100% Natural Rawhide Chews made from free range beef hide. We produce the heaviest, longest-lasting chew on the market. We use no harmful or toxic chemicals during our processing, thus guaranteeing that your dog chews on a 100% natural and healthy product. We are the manufacturer. We do

problem solved: use Javascript in JSP

2000-05-02 Thread Brenda Tung
hi all, i want to thank all you who replied.for your info, I've solved the problem by writing a html page for the javascript validation to take palce and include it in the JSP file. regards, brenda === To unsubscribe: mailt

Re: JSP redirection

2000-05-02 Thread Eric Dunstan
put a forward command at the end of your page: >From: Mohan Radhakrishnan <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: JSP redirection >Date: Tue, 2 May 2000 18:45:10 -0700 > >Hi, >

"Equals" method not working correctly?

2000-05-02 Thread Peter Hutchinson
Hi, I have the following problem : The expression : <%= inputparams.getAreatype().equals("Nativeforest")?"Checked" : "Notchecked" %> compiles OK but crashes the JSP BUT <%= "Nativeforest".equals(inputparams.getAreatype())?"Checked" : "Notchecked" %> works OK ! Any suggestions? Pet

Re: JSP redirection

2000-05-02 Thread Eric Dunstan
Use the forward tag: >From: Mohan Radhakrishnan <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: JSP redirection >Date: Tue, 2 May 2000 18:45:10 -0700 > >Hi, >I have a JSP that up

Re: How to configure Visual cafe to run the Jrun engine

2000-05-02 Thread Scott Stirling
Hey Stephen, These are great! We have instructions on our web site on how to config VC 3 and JRun (courtesy of another user, actually). Would you mind if I added your instructions as an updated version for VC 4? I would credit you in the Knowledge Base article. Scott Stirling Allaire Corp. -

Re: Mail servlet

2000-05-02 Thread Eugene Belyaev
Thanks Jens, Unfortunately it does not support attaches. Eugene - Original Message - From: "Jens Andersen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 03, 2000 03:51 Subject: Re: Mail servlet > Hi Eugene, > > These links might interest yuo: > http://www.coolservle

JSP redirection

2000-05-02 Thread Mohan Radhakrishnan
Hi, I have a JSP that updates the database. Can I call a servlet after it finishes ? Actually I want to call the main servlet after the JSP finishes ? bye, Mohan === To unsubscribe: mailto [EMAIL PROTECTED] with body:

Re: Date Comparison!!!

2000-05-02 Thread Khoo Swee Chin
Try using BETWEEN. "Select date1,date2 from table1 where FinishedDate BETWEEN date1 AND date2"; Hi guys, I have a problem. I want to compare dates in java i.e. specifically I want to compare 2 date values falling between a particular range. For e.g. "Select date1,date2 from table1 where Fini

passing parameters from servlet to jsp page

2000-05-02 Thread Matt Brown
I am writing a jsp page with a basic form that collects some personal information. When the user submits the form, my servlet checks to see that all the fields have been filled out. If fields are empty, I want to redisplay the jsp form page with a different message at the top, like "fix the form".

JavaOne heads up, and call for participants...

2000-05-02 Thread Eduardo Pelegri--Llopart
JavaOne 2000 is June 6-9, in SFO, at the Moscone Center. This is the 5th anniversary year and I've heard that registration is ahead of schedule, so I expect we will be filling up Moscone (the new wing is not yet ready). JavaOnes are always fun, and I hope this year will not be different. There

Re: Mail servlet

2000-05-02 Thread Jens Andersen
Hi Eugene, These links might interest yuo: http://www.coolservlets.com/CSMailForm/ http://www.coolservlets.com/Email/ Regards, Jens Andersen -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Eugene Belyaev

Re: running jsp examples

2000-05-02 Thread Shamdasani Nimmi-ANS004
David, Download jswdk-1.0.1 from http://java.sun.com/products/jsp/download.html this supports both Servlets & JSPs so you won't need jsdk1.2. Once installed run 'startserver.bat' from jswdk-1.0.1 folder Then you should be able to run the samples. -Nimmi -Original Message- From: Davi

Re: urgent: how to sense url click

2000-05-02 Thread Jonathan Hager
Servlet Chaining may be more appropriate...I guess it's just a design issue. I might argue that servlet chaining allows for regular uri's to be used, which are more search-server friendly. public doGet (HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { Stri

Re: IDE for JSP1.1 & Servlet 2.2

2000-05-02 Thread Jens Andersen
Hi John, I think that Allaire is going to release a developer enviroment very soon call JRun Studio (it's still in beta) but I havn't tried it yet so I don't know the quality of the product!!! You might wanna take a look at beta.allaire.com!!! (And it's Windows only) Regards, Jens Andersen ---

Mail servlet

2000-05-02 Thread Eugene Belyaev
Hello, Does anyone know a servlet which can send emails with attached files. Thanks in advance, Eugene Belyaev === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servle

XML and Servlets

2000-05-02 Thread Marc Krisjanous
Hi all, I heard from this group talk about using XML to store servlet properties and initialisation parameters. Whats the benefit and how can you do it? Best Regards Marc === To unsubscribe: mailto [EMAIL PROTECTED] with b

IDE for JSP1.1 & Servlet 2.2

2000-05-02 Thread John Cyriac
hi, Any feedback on the IDEs available in the market which supports JSP1.1 and Servlet 2.2. Any sites which compares the features of the IDEs available in this area thanks -john === To unsubscribe: mailto [EMAIL PROTECTED] wi

Public Review Draft: Java Community Process(SM), Version 2.0

2000-05-02 Thread Eduardo Pelegri--Llopart
FYI. There is a feedback alias at that page. - eduard/o Susan Roach wrote: > > Java Community Process(SM), Version 2.0 (Review Draft 2000.04.13) is now > available for Public Review from > > http://java.sun.com/jcp/review.html > > Please note that this draft is the result of input a

Re: Tomcat and JSP

2000-05-02 Thread tj kay
Here is what I have my environment variables set too. SET JAVA_HOME=C:\jdk1.2.2 SET TOMCAT_HOME=C:\tomcat SET CLASSPATH=C:\jdk1.2.2\lib\tools.jar;C:\jdk1.2.2\jre\lib;C:\jdk1.2.2\bin;C:\tomcat\lib;C:\tomcat\classes; But I am still getting the following message when I try to access the JSP exampl

Jsp Error Handling

2000-05-02 Thread Rajarshi Chaudhuri
Hi, Other than using the "errorpage" directive is there any elegant method for error handling in JSP? Pls. advise. Regds, Rajarshi === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some r

Re: How to configure Visual cafe to run the Jrun engine

2000-05-02 Thread Williams, Stephen
We have successfully configured Visual Cafe 4 Expert Edition to run the JRun engine (version 2.3.3 build 157). Below are the details of what we did to get this working. The instructions are long, but it's really not that difficult, and it's great to be able to debug your servlets and even JSPs.

Re: JSP on MS Personal Web Server

2000-05-02 Thread Kevin Duffey
I would suggest using Resin or OrionServer instead! PWS I believe its possible to use JRUN, but if you use Resin or OrionServer, you get a LOT more than just JSP/Servlets capability. They both have complete web servers, 100% Java written, etc. Check them out. -Original Message- From: A m

Re: Invalid escape character

2000-05-02 Thread Sajid Mohammed
Oops! Forgot to put the subject !! Sorry for the repost! Hi Jose, We faced the same problem too and after days of frustration, finally found that the jsp compiler after generating the .java file and then attempting to compile and create the class file,=3D20 finds in the comment of the .java file

No Subject

2000-05-02 Thread Sajid Mohammed
Hi Jose, We faced the same problem too and after days of frustration, finally found that the jsp compiler after generating the .java file and then attempting to compile and create the class file,=3D20 finds in the comment of the .java file(referring to the line number in the .jsp file).=3D20 Th

JSP on MS Personal Web Server

2000-05-02 Thread Nimmons, Daniel
Is there a plugin to add JSP pages and servelets to Microsofts Personal Web Server Daniel (Buster) Nimmons Information Management Specialist Phone: (713) 845-4991 CELL #:(281) 224-8013 Fax #: (713) 640-8717 E-mail: [EMAIL PROTECTED] =

Re: Multiple Servlet Contexts

2000-05-02 Thread Justyna Horwat
The Java Web Server has only one servlet context. It does not have multiple context support. For multiple servlet context support, take a look at Tomcat. It is an open source implementation of the servlet 2.2 and jsp 1.1 specs. http://jakarta.apache.org/tomcat/index.html Justyna < [EMAIL PROTE

tag library examples

2000-05-02 Thread Potomic, Gary
I have been reading your paper on Tag libraries in JavaServer Pages. You have a html database example (see below) in the pdf file. Do you have the java implementation example to go along with this? *** <%@ taglib uri="/tlds/

Re: JSP, beans and setProperty

2000-05-02 Thread Hans Bergsten
Jason Wyatt wrote: > > Hi, > > I am using JBuilder 3.5 Enterprise & am having a problem with > JSP's introspection, ie using setProperty<... property="*" ...> to > set fields of the same name in a bean. > > I have two jsp pages, one to display a page (the 'view' page) and > another to read the for

Re: Invalid escape character ...

2000-05-02 Thread Kevin Duffey
Would help if you showed the page source. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Jose Castro Sent: Tuesday, May 02, 2000 10:34 AM To: [EMAIL PROTECTED] Subject: Invalid escape character ... Hi,

Re: Passing objects from JSP to JSP

2000-05-02 Thread Kevin Duffey
I believe the problem is, you are NOT submitting a form to those links. Infact, you need to forward to the JSP page for the request to get passed to it. I am not perfectly sure on this, but I am pretty sure that by using the tag to link to another page, the request object in the current JSP page

Re: *** Java Server supporting Servlets and Free ???

2000-05-02 Thread Geert Van Damme
what? more powerful than resin You might try orion server, but that's about the only one that might be better. What are your problems with Resin? Geert 'Darling' Van Damme -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROT

No Subject

2000-05-02 Thread Juan Fu
Hi, I tried to post the message on jsp-insterest list on the jsp-interest site so that I can view throught the web. But my message was bounced back because 1 error included. I don't know why. I have registered into the list. Can someone tell me why? Thanks! juan Fu _

running jsp examples

2000-05-02 Thread David Cassidy
Hi, I'm running jsdk2.1 and jdk1.2. I've downloaded the tutorial examples from java.sun.com. When I try to run the example by loading 'http://localhost:8080/examples/jsp/tutorial/helloworld/helloworld.jsp' I get the following error - Error: 404 No detailed message I'm not quite sure what it

Re: Tomcat and JSP

2000-05-02 Thread Craig R. McClanahan
tj kay wrote: > I have Tomcat and Apache running on my 98 machine. I can access the example > servlets that come with Tomcat, BUT I recieve the following error when I try > the example JSPs. > > Error: 500 > Location: /examples/jsp/num/numguess.jsp > sun/tools/javac/Main > You need the Java comp

help on jswdk installation

2000-05-02 Thread Juan Fu
Hi, I downloaded JSWDK1.0.1 from sun.com. My platform is windowNT with service pack 5. I have done everything to configure the server, including to set environment variables and change port number from 8080 to 9000. The server starts with no problem. I put my test jsp page into examples/jsp/

Re: Passing objects from JSP to JSP

2000-05-02 Thread Craig R. McClanahan
Nathan Jantz wrote: > Hi all, > I'm interested in being able to pass objects from jsp to jsp using the > setAttribute() and getAttribute() methods without the use of a controller > servlet or bean but have been unsuccessful. Here is some code that I have > tried: > Your code is not going to wor

Tomcat and JSP

2000-05-02 Thread tj kay
I have Tomcat and Apache running on my 98 machine. I can access the example servlets that come with Tomcat, BUT I recieve the following error when I try the example JSPs. Error: 500 Location: /examples/jsp/num/numguess.jsp sun/tools/javac/Main Anyone know what's wrong? Thanks in advance, tj P.

Re: Using a drop down list as a submit when the onchange event occurs

2000-05-02 Thread Shaun Mitchell
Have the onClick event call a JavaScript fuction that uses the submit method of the form. function someThing(){ window.formName.submit(); } - Original Message - From: Stefán Freyr Stefánsson <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 02, 2000 11:50 AM Subject: Usin

Re: Version of Servlet Engine

2000-05-02 Thread Craig R. McClanahan
ServletContext.getMajorVersion() and ServletContext.getMinorVersion(). Servlet 2.2 supports getAttribute/setAttribute on all of: ServletContext (context attributes == application scope beans in JSP), HttpSession (session scope beans in JSP), and ServletRequest (request scope beans in JSP). Crai

Re: Passing objects from JSP to JSP

2000-05-02 Thread Naveen Malik
I'm new to JSP but I think one solution would be to get away from the get/set Attribute and use a bean. Either that or use forms to submit the data with post or get. Naveen - Original Message - From: "Nathan Jantz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 02, 2000

Version of Servlet Engine

2000-05-02 Thread sajeev anand
Hi Just curious, is there any way of finding out the version of Servlet API that is being used? I am using JRun on Netscape server. If I understand right, Servlet 2.2 does not understand setAttribute() and getAttribute() methods. Am I right? Thanks Sajeev __

Re: Can I get static HTML page from JSP?

2000-05-02 Thread Xunming Liu
Hi: I wanna do the same thing as you. But I don't know how to run a JSP and send it's output using email? Would you please explain it in detailed example? Thanks a lot. Xunming Lee Elenbaas wrote: > We do a similar thing, we run a JSP and use it's output as the content of an > email message.

*** Apache JServ config

2000-05-02 Thread Germán López Castro
Hi. I'm getting started to use Apache Web Server + Apache JServ and don't know how to setup'em. How can I do virtual paths? How can I config servlets and JSP? Am I able to implement XSL Transformations inside JSP pages? Where can I get a configuration tutorial? Tanxalot. Consigue tu dirección d

*** Java Server supporting Servlets and Free ???

2000-05-02 Thread Germán López Castro
Hi to you all. I am using Caucho Resin 1.1 Web Server + Servlet Runner. Is there any free Web Server that supports Java Servlets and JSP more powerful? Note: Resin is open source freeware and supports XLST. You can download it from http://www.caucho.com Thanxalot. Consigue tu dirección de ema

Re: Date Comparison!!!

2000-05-02 Thread Kishore Raghavan
Hi Virendra, >From your question, It is diffcult to make out whether you want to compare dates in SQL or in JAVA. 1) If it is SQL, then the SQL query depends on the DB Vendor. Send more information about your problem. Which is your DB Vendor ? What is the type of field for date1 and date 2 ? 2)I

Re: Using a drop down list as a submit when the onchange event oc curs

2000-05-02 Thread Scott Evans
onChange="window.document.MyFormName.submit()" Scott Evans > -Original Message- > From: Stefán Freyr Stefánsson [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 02, 2000 7:50 PM > To: [EMAIL PROTECTED] > Subject: Using a drop down list as a submit when the onchange event > occurs > > > H

Invalid escape character ...

2000-05-02 Thread Jose Castro
Hi, I'm getting the following error when I'm trying to run a Simple JSP ... Compilation of 'E:\weblogic\myserver\classfiles\examples\jsp\_dbtest\_update_95_v1_95_1.jav a' failed: E:\weblogic\myserver\classfiles\e

Passing objects from JSP to JSP

2000-05-02 Thread Nathan Jantz
Hi all, I'm interested in being able to pass objects from jsp to jsp using the setAttribute() and getAttribute() methods without the use of a controller servlet or bean but have been unsuccessful. Here is some code that I have tried: callingPage.jsp: <% String[] arrayOfString = new String[10];

Re: Setting up JSP Directory in Apache with jserv

2000-05-02 Thread Mohan Radhakrishnan
Hi, If JServ can handle servlets it should also be able handle JSP since a JSP is a servlet after all. You need a servlet generator.That is all. GNUJsp should be able to do that . So you can use this with JServ and use JSP. bye, Mohan -Original Message- From: Huerta, Luis [mailto:[EM

Using a drop down list as a submit when the onchange event occurs

2000-05-02 Thread Stefán Freyr Stefánsson
Hi! I have a HTML question and I apologise if it doesn't quite fit in on this mailing list. The thing I need to do is to have a drop down list () serve as a submit button on a form so whenever something on that form changes (onchange) the form is submitted. Does anyone know of a good way to do

Re: refreshing a frame

2000-05-02 Thread Jean de Lavarene
exemple: bla bla - Original Message - From: "Scott Evans" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 02, 2000 6:29 PM Subject: Re: refreshing a frame > Hi Pal, > > Where do you put the meta-tags your documents? In the head or at the end? > > Scott Evans > >

Re: refreshing a frame

2000-05-02 Thread Pål Brattberg
inside the tags. Try this HTML document in your browser: Redirect me! http://java.sun.com/"> Please wait... :: pål :: : : . ___s_p_r_a_y_ Pål Brattberg | [EMAIL PROTECTED] Mob: (+46) 0704 566299 | Tel: (+46) 08 52790122 Här börjar internet | http://www.spr

Re: web.xml parsing bug in Tomcat3.1 (custom tag libs) ???

2000-05-02 Thread Allan Scott
Yes. If order did not matter then | would be used in the DTD. eg. None of the J2EE DTDs use |. I guess this was a style choice to favour how easy it is to parse the descriptors over how easy it is to write them manually. --Allan - Original Message - From: "Scott Evans" <[EMAIL P

No Subject

2000-05-02 Thread Vemuganti,Jaishri
[EMAIL PROTECTED] === 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/js

PLEASE HELP!!!

2000-05-02 Thread Shamdasani Nimmi-ANS004
Hi, I am developing an application which would finally be deployed on IPlanet application server. Since this app server would not be available till late summer I am wondering how to go about the development process. My question is: I want to follow the J2EE architecture and use JSP/Servlets/EJBs

How to configure Visual cafe to run the Jrun engine

2000-05-02 Thread Claire Ryan
Hi Everyone, If anyone has succesfully configured Visual Cafe 4 Expert Edition to run the Jrun engine, could you please let me know how you did it. Thanks in advance. Claire Ryan >From: [EMAIL PROTECTED] >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL

Re: refreshing a frame

2000-05-02 Thread Scott Evans
Hi Pal, Where do you put the meta-tags your documents? In the head or at the end? Scott Evans > -Original Message- > From: Pal Brattberg [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 02, 2000 5:15 PM > To: [EMAIL PROTECTED] > Subject: Re: refreshing a frame > > > > Be careful with u

Re: JSP under Solaris

2000-05-02 Thread Pål Brattberg
We are running Solaris and Resin, and it works like a charm! Best of all, you already know how it works! :: pål :: : : . ___s_p_r_a_y_ Pål Brattberg | [EMAIL PROTECTED] Mob: (+46) 0704 566299 | Tel: (+46) 08 52790122 Här börjar internet | http://www.spray.se > --

Re: javaScript: How to disable a button in Netscape

2000-05-02 Thread Scott Evans
Hi Lee, Sounds interesting. I know how to swap images, but how do you omit the A or INPUT tag? Scott Evans > -Original Message- > From: Lee Elenbaas [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 02, 2000 6:34 PM > To: [EMAIL PROTECTED] > Subject: Re: javaScript: How to disable a butt

Re: javaScript: How to disable a button in Netscape

2000-05-02 Thread Lee Elenbaas
I prefare to use images. You can always include them so the page maintain it's layout. but you can replace the image and ommit the A or INPUT tag that wrapps it. lee Lee Elenbaas ViryaNet [EMAIL PROTECTED] -Original Message- From: A mailing list about Java Ser

Re: refreshing a frame

2000-05-02 Thread Pal Brattberg
> Be careful with using meta tags for refreshing. They work in Netscape, > but not IE. They work just fine in IE. In what version have you detected this bug? :: pal :: : : . ___s_p_r_a_y_ > > -Original Message- > From: akaushik > Sent: Wednesday, March 03,

Re: web.xml parsing bug in Tomcat3.1 (custom tag libs) ???

2000-05-02 Thread Scott Evans
What in the DTD below requires this? Simply the order of the Elements? Scott Evans > -Original Message- > From: Allan Scott [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 02, 2000 5:08 PM > To: [EMAIL PROTECTED] > Subject: Re: web.xml parsing bug in Tomcat3.1 (custom tag libs) ??? > >

Re: web.xml parsing bug in Tomcat3.1 (custom tag libs) ???

2000-05-02 Thread Allan Scott
Hi Heiko, The ordering is required because the DTD for the web specifier requires it: So this is not a bug - just the specified behavior. ---Allan - Original Message - From: "Heiko Gottschling" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 02, 2000 7:47 AM Subject:

Re: refreshing a frame

2000-05-02 Thread James Ng
We use the refresh meta tag on IE 5, seems to work for us. i.e. it will send me to a different URL after so many seconds. Is there something we miss? James Ng Technical Developer Symphion, Inc. (formerly elitetek.com,inc.) Telephone - 214.522.4000 Facsimile - 214.522.4009 -Original Message-

Re: refreshing a frame

2000-05-02 Thread Cogley, Jonathan
Why don't you just do it in JavaScript on the client? ... generate some JavaScript from your server side code, something like: parent.parent.YourFramesName.document.location = parent.parent.YourFramesName.document.location; That way any frame could call another frame to refresh when it is down

Re: javaScript: How to disable a button in Netscape

2000-05-02 Thread Scott Evans
Netscape 7.2? Is this the new beta release? I don't know about Netscape 7.2, but I know that in previous versions(4-5) of Netscape it is impossible. Instead design your pages so that you don't need to disable any buttons while they are displayed on the client browser. During dynamic generation on

javaScript: How to disable a button in Netscape

2000-05-02 Thread Kumaravel Kandasami
Hi All! I'm working in JavaScript & IE, now when I view the same application on Netscape7.2. The disabled buttons do not work in NS. My question is how do I disable a button, which works on IE & NS ??? Very Urgent, please respond as soon as possible Thanks, Kumar __

Re: JSP under Solaris

2000-05-02 Thread Robo Zilka
The best choice is iPlanet servers (SUN/Nestcape). RoBo Zilka /EuroWeb a.s. /www.euroweb.sk /mailto:[EMAIL PROTECTED] -Original Message- From: Franck Rageade [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 02, 2000 3:36 PM To: [EMAIL PROTECTED] Subject: JSP under Solaris

Re: Setting up JSP Directory in Apache with jserv

2000-05-02 Thread Huerta, Luis
Hi, I don't think jserv supports jsp it was designed to handle servlets only, You'll need to install jakarta (tomcat) and set it up with the apache web server in order to compile your jsp's into java servlets and that way you will be able to work with them. I'm working with the Apache - Tomcat c

Re: JSP under Solaris

2000-05-02 Thread Geert Van Damme
Why don't you stick to your current Resin? Geert 'Darling' Van Damme > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Franck Rageade > Sent: dinsdag 2 mei 2000 15:36 > To: [EMAIL PROTECTED] > Subject:

Re: refreshing a frame

2000-05-02 Thread Richard . Cammarano
Be careful with using meta tags for refreshing. They work in Netscape, but not IE. -Original Message- From: akaushik Sent: Wednesday, March 03, 1999 10:48 PM To: JSP-INTEREST Subject: Re: refreshing a frame U can referesh the fram by the help of META tags The code is... bye.. [EM

Re: Attempt to clear a buffer that's already been flushed !

2000-05-02 Thread Chris . Heske
I've come across a problem similar to yours that has been solved by specifying autoFlush=false in the page directive. This will allow you to have control over the flushing (ie. out.flush()). The danger here is that you have to be aware of the buffer size otherwise you'll encounter buffer overrun

model 2 servlet mapping question

2000-05-02 Thread Chris Wilson
hello all, i've really been enjoying the model 2 discussions. craig and daniel, thanks for all your informative insights. the ideas discussed have transformed how i think about developing web applications--now i just have to get my colleagues on board! :) anyhow, here's my question. i'm attem

JSP under Solaris

2000-05-02 Thread Franck Rageade
Hello everyone, We have developped a JSP portal running on NT 4 / Resin 1.1 / IIS , and we would like to implement it on Solaris / Netscape. Could you tell me which are good JSP motors, considering that we need JSP 1.1 compatibility (which excludes JRUN 2.3). Regards, Franck ¤º°`°º¤ø

Re: Attempt to clear a buffer that's already been flushed !

2000-05-02 Thread laurent andre
we had this using a StringBuffer as a String (sb.toString() was missing) "Anna Spångberg" wrote: > > I got a error message in my jsp page > > Error: 500 > Error: Attempt to clear a buffer that's already been flushed > > I´ve tried to changed the buffersize but nothing works! > Please help me! >

Re: Multiple Servlet Contexts

2000-05-02 Thread Mohnish
Nitin first tell me are u passed out student of YMCA Mohnish Verma Polar Software Limited Noida India - Original Message - From: Gogia Nitin <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>

Attempt to clear a buffer that's already been flushed !

2000-05-02 Thread Anna Spångberg
I got a error message in my jsp page Error: 500 Error: Attempt to clear a buffer that's already been flushed I´ve tried to changed the buffersize but nothing works! Please help me! /anna === To unsubscribe: mailto [EMAIL P

Re: Date Comparison!!!

2000-05-02 Thread Geert Van Damme
It looks like you don't want to compare dates in Java at all. You're comparing dates in SQL How you should do that depends on your DBMS. what's wrong with the example code you gave? Maybe try: FinishedDate between date1 and date2 Geert 'Darling' Van Damme > -Original Message- > From: A m

Date Comparison!!!

2000-05-02 Thread Virendra Wathare
Hi guys, I have a problem. I want to compare dates in java i.e. specifically I want to compare 2 date values falling between a particular range. For e.g. "Select date1,date2 from table1 where FinishedDate >= date1 and FinishedDate <= date2 "; Please could somebody help me regarding the syntax

Re: forward tag!!!

2000-05-02 Thread Bilal Ali Nawaz
hi, following is the code that isn't working. the purpose is not to simply use an error page. the purpose is to implement a login workflow using only jsps. i'm not aware of the page buffer concept so it'll be great if you can elaborate on that. <% String id= request.getParameter("id");

Setting up JSP Directory in Apache with jserv

2000-05-02 Thread Puri Aman
Hello All Could anyone please let me know as to how to configure jsp directory in Apache with jserv. Where i can place the jsp and call which location?. Thanx Aman === To unsubscribe: mailto [EMAIL PROTECTED] with body: "sign

handling p tags in an XML file

2000-05-02 Thread Jyoti Bongarala
Hi! We have a problem with making our xsl recognize the p tags within a document tags. When this xml document gets transformed into a html document we get a block of text rather than as paragraphs of text. please help me with this problem. I think we need to work on our xsl file for this but kno

  1   2   >