jsp javascript..

1999-12-27 Thread Arni Raghu
Hi, I am using the JWS from Sun.. I want to use Javascript and jsp together in a page..like

Development/Production environments

1999-12-27 Thread John Sprecher
Hi All, I have been looking for good (free if possible) solution to debug/develop JSP/Servlets on Linux 6.1. The perfect solution would have: Servlet Engine with JSP 1.1 and Servlet 2.2 support, IDE capable to integrade and debug with Servlet Engine. Following these specs, I installed Tomcat 3.

Re: Development/Production environments

1999-12-27 Thread Jason Lee
Hi John, I'm actually using Jserv with GNUJsp and it seems to work rather well. Our site launches in Feb. We are also using Postgres for the back end since we need a db with transaction support. I'm pretty happy with the current implementation and I've used Jsp quite a bit thru the various specs a

Re: Large number of records in JSP !!!

1999-12-27 Thread Kirkdorffer, Daniel
FWIW - A solution I use is to store the keys of the larger resultset and page up and down those. So... 1) Save all data for current page only. Store keys separately with session. 2) When the use pages (prev, next, first, last), create a SELECT ... WHERE ... IN ... statement for the page of keys

Re: Development/Production environments

1999-12-27 Thread Scott Stirling
Hey, This is a bit off topic (not a coding issue or an API question), but I figure with all the inane "Where's the JSP FAQ?" questions, that doesn't matter. And my question is highly germane to deploying your JSPs and servlets. My question is about Linux as a server-side Java platform. What are

Servlets/JSP Model 2

1999-12-27 Thread Cory L Hubert
Title: JSP book? The model 2 APM describes how the servlet handles all the functionality while your jsp handles the presentation.  So how do servlets handle functionality on entry pages???   Say if the page was index.jsp and that page includes content from the database, how

Servlets in Package question

1999-12-27 Thread Cory L Hubert
This is a crazy question. But it's been bugging me. I am using JRUN/w IIS. I am having trouble setting up JRUN so that it will execute my servlets when it's in a package. The package is in the classpath(both the System Classpath & JRun). And the Package statement in the Java file i

Passing parameters to bean

1999-12-27 Thread sidney woods
Hello, I am passing a string from a jsp file to a bean. in second jsp file i am trying to retrive the same parameter,but it is not working. i am working with jws on nt. here are the codes: 1. bean package com; public class vidbean { public String vid; public vidbean() { vid = null;

Re: Passing parameters to bean

1999-12-27 Thread Isa Hashim
Hi Sidney, A couple of things to try: - a1.jsp uses: a2.jsp uses: but a2.jsp uses: For both JSP files to share the bean, the should refer to the same bean id (instead of "mybean" and "mybean11"). Also, the scope should be the same. - change your vidbean methods t

Re: Development/Production environments

1999-12-27 Thread Karl Avedal
Hello John, The Orion Application Server (http://www.orionserver.com) is free for development and non-commercial deployment (but we charge for commercial deployment.) It works nicely under linux and is the server that implements the latest standards. This is a server that is already running lar

Something like jsp:setProperty in servlets?

1999-12-27 Thread Java Guy
Is there something similar to jsp:setProperty is the servlet API? I'm trying to implement a "Model 2" application. The "Submit" button on a (jsp generated) HTML page sends the contents of the form to a servlet, which, after processing the contents, forwards the request to a JSP page which displa

Re: Development/Production environments

1999-12-27 Thread Arni Raghu
> Hey, > > This is a bit off topic (not a coding issue or an API question), but I > figure with all the inane "Where's the JSP FAQ?" questions, that doesn't > matter. And my question is highly germane to deploying your JSPs and > servlets. http://www.esperanto.org.nz/jsp/jspfaq.html > > My quest

emacs extensions..

1999-12-27 Thread Arni Raghu
Hi, Anybody have a jsp extension for emacs...??? Thx, Arni === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at: http://java.sun.com/products/jsp/faq.html http://www.e

Re: Something like jsp:setProperty in servlets?

1999-12-27 Thread Craig R. McClanahan
Java Guy wrote: > Is there something similar to jsp:setProperty is the servlet API? I'm > trying to implement a "Model 2" application. The "Submit" button on a (jsp > generated) HTML page sends the contents of the form to a servlet, which, > after processing the contents, forwards the request t

Re: jsp javascript..

1999-12-27 Thread Praveen Kumar S .
Hi, If you have noticed the previous mails, someone had a similar problem, JSP is server side SavaScript is client side You want to include a file on conformation, well try a form, if it is functional aspect I would not depend on JS to work always, as they are not supported..blah blah bl

Re: jsp javascript..

1999-12-27 Thread Praveen Kumar S .
Hi, I might have been a bit unclear to others,, If you check, the original mailer wants to combine "client side JS", not server side JS to JSP, on confirm() which asks for user confirmation, this is client side script, can you use <%@ include . %>, in a client side script, if so can you gi

Re: jsp javascript..

1999-12-27 Thread Riesland, Dan (MN10)
Support for other scripting languages in jsp is available at http://www.plenix.org/polyjsp (for JavaScript) http://www.caucho.com dan -Original Message- From: Praveen Kumar S . To: [EMAIL PROTECTED] Sent: 12/27/99 9:14 PM Subject: Re: jsp javascript.. Hi, If you have noticed the prev

Re: ERROR with JAVASCRIPT AND JSP (can i do this???)

1999-12-27 Thread Praveen Kumar S .
Hi, well I will give a hint, the rest iss up to you to decide, in <%= ... %> , the expresion has to return back a string, or a object which can be converted into a string. else it will give an error. well if xyz[] can be converted into a single string else try concatinating the array into a sin

Re: jsp javascript..

1999-12-27 Thread acidzazz
Hi Arni, As you know, javascript is executed on client side, against JSP(or Servlet) on server side. That is, JSP execute first, then javascript execute. As a reference, you can write JSP code that generates javascript code. -Original Message- From: A mailing list about Java Server Pa

Re: ERROR with JAVASCRIPT AND JSP (can i do this???)

1999-12-27 Thread Srinivas Attili
Hi Thanks for the hint...I will concatenate the whole array into a string and then build the array in the function Thanks again Bye Srinivas Hi, well I will give a hint, the rest iss up to you to decide, in <%= ... %> , the expresion has to return back a string, or a object which can be conve

Re: emacs extensions..

1999-12-27 Thread Jason Lee
I use html helper mode and in my .emacs file I have the following: (autoload 'html-helper-mode "html-helper-mode" "Yay HTML" t) (setq auto-mode-alist (cons '("\\.jsp$" . html-helper-mode) auto-mode-alist)) It's not the best,. but it's the closest thing I've found and it will at least highlight a

ERROR with JAVASCRIPT AND JSP (can i do this???)

1999-12-27 Thread Attili Srinivas
Here is the code in the jsp file <%String xyz[ ]={"one","two","three"};%> function one() { two(<%=xyz%>) } function two(object) { ... .. } I get a javascript error as follows missing ] after argument list. two([Ljava.lang.String;@1bc27e74) Can anyone help me with this Thanks Sriniva