Re: jspInit() and request.getParameter()

2000-05-23 Thread Sachin S. Khanna
Implicit variables such as request, response, ect. are local to the _jspService method and therefore their use cannot be made in the jspInit() method. Hope this helps. Have a nice day. With regards, Sachin S. Khanna. www.emailanorder.com - Original Message - From: David Edmister <[EMAIL PR

Re: Source Management

2000-05-23 Thread D. J. Hagberg
cvs or Concurrent Version System is a very powerful source code control system, typically used mostly in Unix environments, but with ports to various versions of Windows and MacOS. A good starting point is: http://www.loria.fr/~molli/cvs-index.html And a document that discusses how to apply

Re: write method within response object

2000-05-23 Thread D. J. Hagberg
Claire Ryan wrote: > what's the method to use for to write to HTTP output, i 've tried using > response.write(String), but this doesn't work, any ideas? > thanks in advance > claire Grab the JSP cheat-sheet at http://java.sun.com/products/jsp/ which will tell you about all the implicit objects yo

Re: Source Management

2000-05-23 Thread Craig R. McClanahan
http://www.sourcegear.com/CVS Craig McClanahan anderson wrote: > Where I can take it ? > > Thank you so much > > anderson > > Carlos Latugaye wrote: > > > cvs > > > > -Original Message- > > From: A mailing list about Java Server Pages specification and reference > > [mailto:[EMAIL PROT

Re: interesting read

2000-05-23 Thread Frederik Delacourt
Just a few comments on this "interesting read": Ethylene glycol is approved by the FDA for food use, however the FDA lists ethylene glycol as an unused food additive, meaning that no food under FDA jurisdiction (that includes Coke) uses it in a quantity that would even require the ingredient be i

Re: random error on iPlanet 4.1

2000-05-23 Thread Vikram Dhawan
Hello there... it suppose to be a url nor uri.. i think it will help u.. thanx vikram - Original Message - From: Antonio Jimenez <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 23, 2000 11:39 PM Subject: random error on iPlanet 4.1 > hi all, > > i have the following error

Re: Email Validation

2000-05-23 Thread Fei Fei Lua
i've been trying to do some validation on email format from a html form, i need to read " @email.com.cc" and prompt to user that it is not a valid email format which should be "[EMAIL PROTECTED]" instead. how do i do this ? is this the norm of email validation ??? below is my program, when i run

Re: Database Help

2000-05-23 Thread Dean H. Saxe
>Select * from Personal where Name like '%O'hara%'; > Select * from Personal where Name like '%O''hara%'; Double quotes (that is, two single quotes) will escape the single quote. -dhs -- Dean H. Saxe -- I hate misanthropes. -- [EMAIL PROTECTED] Windows 95: n. 32 bit extensions and a graph

Re: Recommend a Book

2000-05-23 Thread Robert Nicholson
You can also go to http://www.manning.com/fields there you can buy the ebook if the paperback is still out of stock. it's worth reading. > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of janus > Sent

Re: Suggestion

2000-05-23 Thread Russell, Richard (DEH)
JDBC. rr > -Original Message- > From: Mingfa Huang [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 24, 2000 1:24 AM > To: [EMAIL PROTECTED] > Subject: Suggestion > > > Hi, All, > >I am a Windows programmer for a while. Now I am really boring MS > products. Recently I re-steped into

Re: interesting read

2000-05-23 Thread Russell, Richard (DEH)
yeah yeah sure, and I suppose I could get my kidneys stolen by an armless boy with cancer in north Dakota if I don't forward this on to 600 people within the next seven seconds... rr PS really, I beleive it, really I do... > -Original Message- > From: Khem Chand Sachdeva [mailto:[EMAIL

Database Help

2000-05-23 Thread Dominic Choo
I would like to ask anyone the help me to solve this SQL command problem. For example: Select * from Personal where Name like '%O'hara%'; This SQL command will produce an error because the existance of the " ' " character in the "O'hara" word. Please help me to solve this problem.. Thanx!

Re: Recommend a Book

2000-05-23 Thread janus
Somebody recommend the book "Web Development with java server pages" by Duane Fields & Mark Kolb is worth reading, but i don't have the chance to read it yet. You can go to http://www.amazon.com to have a look on it. Claire Ryan wrote: > Hi All, > Could anyone recommend a good JSP book? > thanks

Re: Source Management

2000-05-23 Thread anderson
Where I can take it ? Thank you so much anderson Carlos Latugaye wrote: > cvs > > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of anderson > Sent: Tuesday, May 23, 2000 7:42 PM > To: [EMAIL PROTECTED

Re: Dynamic Include Files?

2000-05-23 Thread Jeff Kuehn
Jeff, have you tried: <%@ include file=<%= myFile %> %> ? Your JSP compiler should recognize the expression tag and replace it with the filename of your dynamic include. Jeff Kuehn DesignMind, Inc. (415) 538-8484 x-117 [EMAIL PROTECTED] Is there a way to include dynamic include files. I

Security

2000-05-23 Thread Mohan Radhakrishnan
Hi, The following error is thrown because of the security manager restrictions. Do I have to have the policy file ? Where ? This is caused by the forward tag or the tag. I am using a rmiregistry and the RMI security manager. bye, Mohan - JRun Serv

Re: Dynamic Include Files?

2000-05-23 Thread Craig R. McClanahan
"Steiner, Jeff" wrote: > Is there a way to include dynamic include files. I am using the following > code and am getting an error. > > <% String myFile = "./centers/" + my_state + ".html"; %> > > <%@ include file=myFile %> > > When doing this the variable does not get parsed. I would think

Dynamic Include Files?

2000-05-23 Thread Steiner, Jeff
Is there a way to include dynamic include files. I am using the following code and am getting an error. <% String myFile = "./centers/" + my_state + ".html"; %> <%@ include file=myFile %> When doing this the variable does not get parsed. I would think that I could read the contents of the

2 beans in jsp page

2000-05-23 Thread KY K Lui
i want to use 2 beans in my jsp page one is a db connection pool bean in application scope. and the other one want to get a connection from the pool. how can the bean get the reference of the pool bean? thanks Get your FREE Email at http://mailcity.lycos.com Get your PERSONALIZED START PAGE a

OFF-TOPIC: jsp mode for emacs

2000-05-23 Thread Hai Nguyen
my apologies for sending this to the list, but this is my last resort. i am trying to use multi-mode.el for jsp mode with emacs. byte-code compilation gives "unknown first, second, third functions". i've changed these functions to use (nth) instead. the compile went ok, but it still does not work

Re: mvc2

2000-05-23 Thread Irfan Mohammed
MVC pattern is a three tier pattern where we differentiate between the display, logic and data access. Typically the jsp's are the view layer, the servlets the controller and the beans or EJB's the model. The jsp merely display content with very little code in them, the servlets are controllers a

Re: Sorting Nodes

2000-05-23 Thread Mike Van Riper
Steve, This probably belongs on an XML/XSLT discussion list, but, you can easily do this when processing an XML document using the XSL transformation language (XSLT). For an example, look at this online material that discusses the xsl:sort element and how to use it to sort nodes in your output XM

Re: Source Management

2000-05-23 Thread Carlos Latugaye
cvs -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of anderson Sent: Tuesday, May 23, 2000 7:42 PM To: [EMAIL PROTECTED] Subject: Source Management Anybody knows a software that manage source files to JSP ?

Source Management

2000-05-23 Thread anderson
Anybody knows a software that manage source files to JSP ? Anderson === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/pr

Re: trouble with apache and tomcat

2000-05-23 Thread Tiana Zhang
Hello, there are several issues involved when you try to integrate Tomcat and Apache: 1. Tomcat3.0(+)only works fine with Apache1.3.9(+)(Maybe Apache 1.3.6 too). Make sure you have the right version of those. 2. Make sure ServerName in httpd.conf contains the name of your host. 3. Add the follo

Re: trouble with apache and tomcat

2000-05-23 Thread Réseune
first, you must use the tomcat JServ_mod (it's different with apache JServ but i don't know what). second, you must use the tomcat-apache.conf. for me, include makes error so i used copy/paste directly to httpd.conf. it's now work. read the installation doc, but all the doc! it's important. ps:

Re: write method within response object

2000-05-23 Thread Scott Stirling
out.print out.println out.write A perusal of the JSP syntax ref. wouldn't hurt: http://java.sun.com/products/jsp/technical.html Scott Stirling -Original Message- Sent: Tuesday, May 23, 2000 4:00 PM To: [EMAIL PROTECTED] Subject: write method within response object hi what's the metho

Re: write method within response object

2000-05-23 Thread Wasetis, Ken
out.println() if you want it to be displayed on your page. Or, if you want to be really difficult, put the display value into a String and use <%= myString %> to display it. -Original Message- From: Claire Ryan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 23, 2000 3:00 PM To: [EMAIL PRO

Re: random error on iPlanet 4.1

2000-05-23 Thread Pedro Meza
These exceptions are generated when the java code from the class is being executed. I had a similiar experience because I was out of scope with an array. The Sun Forte tools are good for debugging java. You can download them for free. Pedro US West Web Master (303)520-5215 Antonio Jimenez wr

write method within response object

2000-05-23 Thread Claire Ryan
hi what's the method to use for to write to HTTP output, i 've tried using response.write(String), but this doesn't work, any ideas? thanks in advance claire Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmai

Never mind... Re: request.getRequestURI() with frames??

2000-05-23 Thread David Castro
I figured it out. I renamed the frameset file with a .jsp extension, and then the container was able to capture the URI information. -David Castro [EMAIL PROTECTED] --- David Castro <[EMAIL PROTECTED]> wrote: > Is it possible to use request.getRequestURI() or some equivalent when working > with

trouble with apache and tomcat

2000-05-23 Thread Michael Mosmann
Hi, When i run apache on :80 and tomcat on :8080 an make all requests to /library forward to tomcat than some strange things happen.. when i call host/library/somepage.htm with forms in it no data will be transfered to action.jsp when i call host:8080/library/somepage.htm it work lik

Re: JSPs and XML.

2000-05-23 Thread Sam Heisz
> -Original Message- > From: Andrew S Tomlinson [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 18, 2000 11:13 AM > > My perspective would be that any basic enterprise object > (modelled as a > Bean) should be inherently capable of representing itself as > XML, maybe as > some basic overr

Re: CGI variables

2000-05-23 Thread Craig R. McClanahan
Robo Žilka wrote: > Know anybody, how to get(read) CGI variables in JSP or Servlet? Most of the CGI environment values that you will be interested in are represented by properties of the "request" object that is passed to your servlet (it it an implicit variable in JSP pages). For example, the

Re: Jar files with tomcat 3.0

2000-05-23 Thread Eduardo Salvador Godoy Vega
into $TOMCAT_HOME/lib Edo. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of omar Sent: Tuesday, May 23, 2000 3:43 PM To: [EMAIL PROTECTED] Subject: Jar files with tomcat 3.0 Greetings to everybody. Th

Re:

2000-05-23 Thread Craig R. McClanahan
Jim Preston wrote: > There really isn't a difference. According to the book "JavaServer Pages" by > Larne Pekowsky (p. 49): > > The [getProperty format] is recommended because it makes it clear that the > object is a bean. In addition, down the road the bean specification may be >

Re: changing the response url with a dispatcher in model 2

2000-05-23 Thread Donald Vandenbeld
http://www.irt.org did an excellent treatment of this problem in the JavaScript->Frames section of their site. It turns out to be a rather complicated problem and there are three articles that cover it well. Donald Vandenbeld - Original Message - From: "Kevin Duffey" <[EMAIL PROTECTED]>

Looking for a java/jsp solution

2000-05-23 Thread Kaylon Daniels
Frank, A new company called Raven Technology has developed the best voice portals around. They use a custom technology that is far superior to WAP. You can check out their web page at: http://www.ravenspeech.com Mr. Kaylon Daniels Software Engineer [EMAIL PROTECTED] http://www.theknot.com A

Sorting Nodes

2000-05-23 Thread Steve Bayouk
I have an xml document that has a list of nodes, each have two children. (see example below) What I would like to do is write a method to sort the nodes so that they are listed alphabetically by . Has anyone done anything similar to this? If so, can you give me some tips to move me in the right

request.getRequestURI() with frames??

2000-05-23 Thread David Castro
Is it possible to use request.getRequestURI() or some equivalent when working with frames? I include a JSP file in each of my online help topics that checks to see if users have logged their preferences. If they haven't, the code loads a session variable with the Request URI, redirects them to the

Re: [ANN] JRun Studio 3.0 beta 2

2000-05-23 Thread Scott Stirling
JRun isn't required. Someone should set it up with Tomcat/Resin/Orion and post the steps. One main advantage to using it with JRun would be RDS deployment and debugging, but that's not supported in this beta anyway. Scott Stirling -Original Message- From: A mailing list about Java Serv

Re:

2000-05-23 Thread Jim Preston
There really isn't a difference. According to the book "JavaServer Pages" by Larne Pekowsky (p. 49): The [getProperty format] is recommended because it makes it clear that the object is a bean. In addition, down the road the bean specification may be expanded so that a bea

random error on iPlanet 4.1

2000-05-23 Thread Antonio Jimenez
hi all, i have the following error: exception thrown from the servlet service function (uri=/page.jsp): javax.servlet.ServletException, Stack: javax.servlet.ServletException i delete ClassCache directory and restart the server (any change in the application) and there isn't error any idea? th

Re: [ANN] JRun Studio 3.0 beta 2

2000-05-23 Thread Tom Wilcoxen
Is JRun also required? Or will this product work with Tomcat? Or does it work as a standalone product? (I couldn't find the answer in the release notes or the Allaire site.) Thanks, Tom > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mai

jsp-interest@java.sun.com

2000-05-23 Thread Joshua Gould
I don't understand the difference between and calling a get method directly, e.g. <%=getName()%> Thank you Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com ==

OCCHIO !!!!! Re: [ANN] JRun Studio 3.0 beta 2

2000-05-23 Thread Paolo Sommaruga
Dai un occhio se c'e' la versione g (general UNIX) >JRun Studio Beta 2 is now available for download from the Allaire Beta Site >(http://beta.allaire.com). > >Release Notes: > >http://beta.allaire.com/betadocs/jrunstudio30b2/releasenotes.htm > >Where do NEW BETA CUSTOMERS get it? >http://beta.all

Re: Offtopic: Quick Java programming question...

2000-05-23 Thread Jim Preston
If you step through this in a debugger, you'll find that the cast exception is actually coming from this line: return (Hashtable[]) stuff.toArray(); Remember that in Java, an object (the general object, not the specific class Object) "knows" what it really is. And also remember that in Java a

Re: Looking for a java/jsp solution

2000-05-23 Thread Hines, Bill
IBM has a solution that I saw at their WebSphere conference in March. It uses VoiceXML and is really cool and works unbelievably well. Check their web site for info Bill Hines -Original Message- From: Frank Apap [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 2:29 PM To: [EMAIL PRO

Re: jspInit() and request.getParameter()

2000-05-23 Thread Kevin Jones
you mean thhe request parameters? It doesn't make sense to try and access the request parameters at this point - a servlet engine could choose to pre-load its servlets so when jspInit is called then there may be no request. You can specify start-up parameters to a servlet, and you can (depending

Re: jsp or java is better?

2000-05-23 Thread Goodwin, Christine
janus, jsp a java spec that has a tag library set built on top of the HTTP servlet API that the sun folks developed so that java web developers would have a server side component that 1) managed HTTP request/response paradigms 2)allowed straight HTML tags/data to be embedded in the JSP so as to a

Jar files with tomcat 3.0

2000-05-23 Thread omar
Greetings to everybody. The question is : Does anyone know how to add jar files inside the Tomcat 3.0. ? I hope you can help me. Thanks in advance. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "sig

Re: jsp or java is better?

2000-05-23 Thread Kevin Duffey
I think if your going with an all Java app server, you must likely will want to use java to program with..and quite frankly, I haven't seen a language that is better than java on the server-side for web apps. > Dear all, > > I'm going to implement a web application with Iplanet as the web server

Re: JSP tag library and bean

2000-05-23 Thread Uwe Hanisch
Christian Billen wrote: > > Hi, what would be the best approach to call a custom tag library passing a > bean property as a parameter? we are running Weblogic 5.1 > > Take for example: > > items=""/> Did you try direct accessing your bean with an jsp expression?: /> Uwe ==

Suggestion

2000-05-23 Thread Mingfa Huang
Hi, All, I am a Windows programmer for a while. Now I am really boring MS products. Recently I re-steped into JAVA WORLD. I want to take JSP and Servlet. I have iplanet server, but I got a trouble to connect to MS SQL Server database. Any suggestion about how to connect to MS SQL Server databa

Re: Email Validation

2000-05-23 Thread David Wall
> > Better to use scripts for client side validation. If u need server-side > > validation use Bean. Be careful of such simple solutions. Not all browsers support javascript or any other form of client-side validation (java applets?), and even those that do can disable it. We use basic javascr

Re: [TAGLIB] Emulation of JSP 0.92 LOOP tag?

2000-05-23 Thread Scott Stirling
Uwe: >> 1. Where did you read that the JRun 3.0 taglib is not freely >> available? > >Well, JRun is not licensed under the LGPL. >I did not found the actual license yet. >The only hint I've got is from JRun taglib description: > > "This manual, as well as the software described in it, > is furnish

Re: JSP tag library and bean

2000-05-23 Thread Uwe Hanisch
Christian Billen wrote: > > Hi, what would be the best approach to call a custom tag library passing a > bean property as a parameter? we are running Weblogic 5.1 > > Take for example: > > items=""/> I have just another idea. Set in your tld to "true": items true

Re: jspInit() and request.getParameter()

2000-05-23 Thread David Edmister
kevin, thanks for your response and i figured that was the case. is there anyway to get the Parameters during the jspInit event? what interfaces are exposed during this point that i can use? thanks in advance new-guy-on-the-jsp-block -Original Message- From: Kevin Jones [mailto:[EMAIL

Apology: Re: [TAGLIB] No such tag....

2000-05-23 Thread David Castro
I'm sorry about that long post. I forgot that the default setting for this list is to respond to the list, instead of the individual. If I had remembered that, I would have cut out all of the old material. An especially big apology to any digest readers. (If you *are* a digest reader, check out my

Re: [TAGLIB] No such tag XXX the tag library imported with prefix XXX

2000-05-23 Thread David Castro
Thanks for the response. The culprit ended up being the text that I was copying from to create my TDL file. It was pointing to an invalid DTD address. -David Castro [EMAIL PROTECTED] --- yi lin <[EMAIL PROTECTED]> wrote: > from my exp,I think you should check the the location of your taglib cla

CGI variables

2000-05-23 Thread Robo Žilka
Know anybody, how to get(read) CGI variables in JSP or Servlet? Thanks RoBo Zilka /EuroWeb a.s. /www.euroweb.sk /mailto:[EMAIL PROTECTED] === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff J

Re: Recommend a Book

2000-05-23 Thread Tom Wilcoxen
Hi Claire, Here are two that I have: Web Development with JavaServer Pages by Fields and Kolb, published by Manning. JavaServer Pages by Larne Pekowsky published by Addison Wesley The first is more comprehensive, and if you only buy one, I'd recommend that one. The second is a quicker read and c

JSP tag library and bean

2000-05-23 Thread Christian Billen
Hi, what would be the best approach to call a custom tag library passing a bean property as a parameter? we are running Weblogic 5.1 Take for example: The above always generate a compile error, I tried reversing the " and ' but still I get a "missing )" error, am I using the correct syntax?

Re: [TAGLIB] Emulation of JSP 0.92 LOOP tag?

2000-05-23 Thread Uwe Hanisch
Wuups, well, sorry, I have just realised that you are from allaire. > 1. Where did you read that JRun 3.0 is not freely available? > 1. Where did you read that the JRun 3.0 taglib is not freely > available? Well, JRun is not licensed under the LGPL. I did not found the actual license yet. The on

Re: help on this error

2000-05-23 Thread Scott Stirling
Are you using a static include that calls another JSP that could have this giant method? What JSP container are you using? Maybe it's a bug in the container. Scott Stirling -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTEC

Recommend a Book

2000-05-23 Thread Claire Ryan
Hi All, Could anyone recommend a good JSP book? thanks in advance, claire Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com === T

Re: interesting read

2000-05-23 Thread Tim Fox
See comments below Uwe Hanisch wrote: > > I mean to write good software you need much coca and > many pizza's. > Exactly what sort of coca related compounds are you talking about? ;-) (BTW Coca cola no longer contains any coca related compounds - I believe they were banned some years ago) > >

Re: [TAGLIB] Emulation of JSP 0.92 LOOP tag?

2000-05-23 Thread Scott Stirling
Whoops -- that should say "1. Where did you read that the JRun 3.0 taglib is not freely available?" Scott -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Scott Stirling Sent: Tuesday, May 23, 2000 8:29 AM

New Book on the Market

2000-05-23 Thread pperrone
A colleague and I have recently authored a book for software architects/developers covering a broad range of enterprise Java development and J2EE development topics. In addition to coverage of J2EE-compliant JSP development, we cover EJB, Servlets, JMS, XML, CORBA, JDBC 2.0, etc While the book

Re: How to setup JSP/Jbeans development/testing env. for Visual A ge f or Java IDE and Websphere AS

2000-05-23 Thread Hines, Bill
There is plenty of information and documents on how to do this on IBM's web site or the Visual Age Developer Domain. Bill Hines -Original Message- From: Antoniuk, Jacek [mailto:[EMAIL PROTECTED]] Sent: Monday, April 17, 2000 12:57 PM To: [EMAIL PROTECTED] Subject: How to setup JSP/Jbeans

Re: [TAGLIB] Emulation of JSP 0.92 LOOP tag?

2000-05-23 Thread Scott Stirling
Uwe wrote: I agree with "it should work in any JSP 1.1", but where did you read that JRun 3.0 taglib is freely available? At this moment it is bundled with JRun 3.0 RC 1. I did not found any special license for the taglib. So I don't believe it is allowed to use jruntags.jar without JRun. Scott w

Re: interesting read

2000-05-23 Thread Scott Stirling
Obviously propaganda from the Tender Coconut Coalition. Scott S. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Khem Chand Sachdeva Sent: 23 May 2000 10:36 To: [EMAIL PROTECTED] Subject: interesting read

Dynamic Page Generation

2000-05-23 Thread Aggarwal, Pawan
Title: Dynamic Page Generation Hi All, Kindly advice... What my requirement is that I need to query the database and get the list of records. Now first if I want to display 15 records at one page and show 1 2 3 4 .at the bottom of page In order to access other results..How do I do that?

Re: interesting read

2000-05-23 Thread Khem Chand Sachdeva
sorry friends i actually forwarded it to everyone in my address book will take care in future anyway it was worth a look bye khem, Uwe Hanisch wrote: > Just holding a big Coca-Cola bottle in my hand I think this article > is really true! > > But why in hell should I live without fun? > I mean to

Re: [TAGLIB] Emulation of JSP 0.92 LOOP tag?

2000-05-23 Thread Uwe Hanisch
Scott Stirling wrote: > > Whoops! I meant www.jsptags.com. Sorry about that. Thanks! I have already found this link. > I have to disagree. The JRun 3.0 taglib is freely available and can be > downloaded separate from the JRun product. The JRun taglib is pure Java > with no proprietary extensi

Re: interesting read

2000-05-23 Thread Uwe Hanisch
Just holding a big Coca-Cola bottle in my hand I think this article is really true! But why in hell should I live without fun? I mean to write good software you need much coca and many pizza's. At the end this has nothing to do with the topic of this newsgroup and JSP! Regards Uwe

jsp-interest@java.sun.com

2000-05-23 Thread Majid Khojastehpour
Hi All, Do you have any experience about OAM&P or any reference about it? Thanks Majid === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: ht

Re: interesting read

2000-05-23 Thread Ritesh Sinha
Well I dont think this is a soft drinks interest list? or Is It? IMHO I would request you to restrict your self to discussing JSP and related technologies only. Forget Soft Drinks technology. Ritesh Sinha Khem Chand Sachdeva <[EMAIL PROTECTED]> on 05/23/2000 03:06:06 PM Please respond to

Re: How JSP & Servlet Forward work

2000-05-23 Thread Kevin Jones
The path for forwarding and including is rooted at and relative to the current context. So, given http://server:port/exampes/hello.jsp" the context is 'examples' and you can forward (or include) to any any other resource that is part of this context. If you directoiry structure contains this tom

Re: interesting read

2000-05-23 Thread Ian Graham
Does this conform to JSP Specification 0.9 or 1.0 -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Khem Chand Sachdeva Sent: 23 May 2000 10:36 To: [EMAIL PROTECTED] Subject: interesting read Hi All I

interesting read

2000-05-23 Thread Khem Chand Sachdeva
Hi All I ran into this article while going thru' our company's news group -- Have a look at the wrapper on a Coca-Cola 1.5 litre bottle and in the ingredients label you will find phosphoric

Re: How JSP & Servlet Forward work

2000-05-23 Thread Louis
yes, I try this in the first time, I gave absolute path "http://server:port/exampes/jsp/jsptoserv/hello.jsp" ,but not work. Regards Louis - Original Message - From: Veronique Dupierris <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 23, 2000 8:44 AM Subject: Re: How JS

JRUN and encoding

2000-05-23 Thread Correges Philippe
Hello everybody. I'm developing servlets(JSP) using Jrun 2.33 from Allaire. I've a problem concerning caracter encoding. I don't know how to force the using of ISO-8859-1. All of my accentuated words are bad translated. Someone can help me ? regards, Philippe =

Re: JSWDK AND JSDK

2000-05-23 Thread Hamid
Hi Pals, You don't need JSDK. Req only JSWDK & JDK JDK: where u will compile ur *.java applications into .Class files and then call into JSP. JSWDK : used to compile ur JSP files. Hamid Hassan Visual soft Pakistan -Original Message- From: A mailing list about Java Server Pages specifi

JSWDK AND JSDK

2000-05-23 Thread Oyebanji Gidione
Hi, everybody PLEASE HELP ME I am a beginner in implementing servlet and jsp, I have already downloaded the jswdk-1.0.1 for the jsp. My question is that: Do I need to download also the jsdk2.1 for the servlets also. PS: I am doing a project which consists of building an e-commerce application. =

Re: FAQ?

2000-05-23 Thread Russell, Richard (DEH)
http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets hmm... just noticed these on the bottom of the email... *blush* however, these FAQs are more abo

Re: setting cookie values

2000-05-23 Thread Franck Rageade
Well John, I'm not a specialist about Cookies, but something is quite surprising in your code : -> you call getCookies() method on the request object to retrieve all the cookies sent by the browser. But, if you want to change the value, you have to overwrite it on the client, so accordin

Re: Touch Screen User Interface

2000-05-23 Thread Russell, Richard (DEH)
JSP produces HTML -- it can do anything HTML can do... A touch screen User interface is to do with the hardware platform and the OS... even the browser will have little effect... what do you expect a SERVER-SIDE HTML-producing technology to be able to do to help you here? rr > -Original Mess

Re: How JSP & Servlet Forward work

2000-05-23 Thread Veronique Dupierris
I think you should considere your application context. In this case your Web App is example, so you should try : "/examples/jsp/jsptoserv/hello.jsp" or even "http://server:port/exampes/jsp/jsptoserv/hello.jsp" regards veronique Louis a écrit : > I try relative path like these > ../..

FAQ?

2000-05-23 Thread Russell, Richard (DEH)
Is there an FAQ for this list? it would certainly help... should have things like differences between JSP, servlets, ASP, etc, as well as other technologies (CGI, JavaScript, Applets/Swing). Where to find help, How to ask questions (do _some_ research first) and so on... just IMHO rr -- Richard

Re: jsp or java is better?

2000-05-23 Thread Russell, Richard (DEH)
I suggest you look up JSP and Java (Servlets) on Sun's site (http://java.sun.com), do some research, and come to a decision... rr > -Original Message- > From: janus [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 23, 2000 10:46 AM > To: [EMAIL PROTECTED] > Subject: jsp or java is better?

Internal Servlet Error

2000-05-23 Thread Dommel Frank
Hello there, I am always receiving a (beginners?) error when putting an JSP example in my own directory, could somebody help me please ? Error Output: Location: /myproject/ProjectMain.jsp Internal Servlet Error: org.apache.jasper.JasperException: Unable to compile class for JSPerr

Re: jspInit() and request.getParameter()

2000-05-23 Thread Kevin Jones
JSP are just servlets. In a servlet Init is called once (when the container loads the servlet), ditto for jspInit. In [jsp]Init you are not servicing the request, so the request object isn't available. The 'request' object is actually a parameter that is passed to the _jspService method. So, yes i