Re: How do i remove 0d 0a characters

2004-04-25 Thread Eric Noel
On 4/26/2004 12:58 PM, Eric Noriega wrote: Does the database contains the CR/LF characters, or is it possible that the data was entered with the literal '0d 0a' string. You are correct that these CR/LF are hex equivalent to 0d/0a. What DB are you using? Eric Noel wrote: I had problems with dat

Re: How do i remove 0d 0a characters

2004-04-25 Thread Eric Noriega
Does the database contains the CR/LF characters, or is it possible that the data was entered with the literal '0d 0a' string. You are correct that these CR/LF are hex equivalent to 0d/0a. What DB are you using? Eric Noel wrote: I had problems with data fetched from db where it contains 0d 0a c

How do i remove 0d 0a characters

2004-04-25 Thread Eric Noel
I had problems with data fetched from db where it contains 0d 0a character ( it think its a carriage return). so i try doing the following to remove them.( btw, im using jsp 2.0). but its seems its not removing them? any help will be appreciated. <%-- Trim --%> <%-- Convert all ty

Re: How do I ?

2002-02-21 Thread It, Cockpit (CAP, Contractor)
Can you give me some more idea please. Actually using URLConnection also I can request a servlet from my stand alone Java program. But the thing is, to call a method in a servlet I have to get an instance of that servlet. My doubt is How do I get that instance to call that servlet's spe

Re: How do I ?

2002-02-21 Thread Vikramjit Singh
PROTECTED] Subject: Re: How do I ? you can use geturl method. With this method you can call a servlet, jsp or an http document in general form your standalone application. I hope this help you. Sami. -Mensaje original- De: A mailing list about Java Server Pages specification and reference

Re: How do I ?

2002-02-21 Thread Sami J. Casab.
nombre de It, Cockpit (CAP, Contractor) Enviado el: Miércoles, 20 de Febrero de 2002 10:35 p.m. Para: [EMAIL PROTECTED] Asunto: How do I ? Dear Friends, I have an urgent requirement. How do I call other than Service method of a servlet from my stand alone Java programe? Help me please! Yogaraj

How do I ?

2002-02-20 Thread It, Cockpit (CAP, Contractor)
Dear Friends, I have an urgent requirement. How do I call other than Service method of a servlet from my stand alone Java programe? Help me please! Yogaraj "THIS E-MAIL MESSAGE ALONG WITH ANY ATTACHMENTS IS INTENDED ONLY FOR THE ADDRESSEE and may contain confidential and privileged inform

Re: SV: GR8 How do I access the static HTML generated by a JSP?

2001-10-22 Thread Hamid
bject: Re: SV: How do I access the static HTML generated by a JSP? I think this code would work for you. If you put this code into a bean and store all the lines to the database. You then could make it a session variable and print it out. I got this code from two different sites, and it works grea

Re: SV: How do I access the static HTML generated by a JSP?

2001-10-22 Thread Daniel Jaffa
I think this code would work for you. If you put this code into a bean and store all the lines to the database. You then could make it a session variable and print it out. I got this code from two different sites, and it works great. If you have any problems email me directly. Daniel Jaffa Comp

Re: SV: How do I access the static HTML generated by a JSP?

2001-10-22 Thread David Stevenson
Subject: SV: How do I access the static HTML generated by a JSP? mailing list

SV: How do I access the static HTML generated by a JSP?

2001-10-22 Thread Jan Arenö
Från: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]För David Stevenson Skickat: den 22 oktober 2001 12:19 Till: [EMAIL PROTECTED] Ämne: How do I access the static HTML generated by a JSP? I have a JSP which creates a view of a file query in a brow

How do I access the static HTML generated by a JSP?

2001-10-22 Thread David Stevenson
I have a JSP which creates a view of a file query in a browser frame. I want to be able to submit a JavaScript button function to 'detach' the page from the frame and open it in its own browser window. Please note I do not want to re-submit the JSP or the database query. The JavaScript side of

how do i pass data from servlet to jsp bean ?

2001-09-04 Thread chenghong
hi all,     how do i pass data from servlet to jsp bean ?    example in my servlet i have this object call config which is a hastable type.is it a way to use it in jsp bean and taglib program ? ignore this if there isn;t   thanks.

Re: how do I make a new class name = a variable?

2001-07-24 Thread Duffey, Kevin
y 24, 2001 11:47 AM > To: [EMAIL PROTECTED] > Subject: how do I make a new class name = a variable? > > > I'm taking the paramater from the previous page and moving it into the > sLogingName varible. > > Then I try to create an Account Bean using the name of the > v

Re: how do I make a new class name = a variable?

2001-07-24 Thread Karau, Joe
- From: Richard Diaz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 1:47 PM To: [EMAIL PROTECTED] Subject: how do I make a new class name = a variable? I'm taking the paramater from the previous page and moving it into the sLogingName varible. Then I try to create an Account Bean

how do I make a new class name = a variable?

2001-07-24 Thread Richard Diaz
I'm taking the paramater from the previous page and moving it into the sLogingName varible. Then I try to create an Account Bean using the name of the variable... can I do this? <% String sLogingName = new String (request.getParameter("name")); %> <% etc... thanks! Rich _

Re: how do I view the end result

2001-04-24 Thread kuttappan
mark your class as public as: public class Point3DExample { and try again. This should work. Rohit. - Original Message - From: "Marshall, Katyann" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, 23 April, 2001 8:28 PM Subject: Re: how do I view the e

Re: how do I view the end result

2001-04-23 Thread Marshall, Katyann
ly desprate KT -Original Message- From: erik morton [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 10:17 AM To: [EMAIL PROTECTED] Subject: Re: how do I view the end result Is this a simple class or a JSP? If it's a class I would either run the project (Run -> Run Proj

Re: how do I view the end result

2001-04-23 Thread erik morton
> I'm new to Java, I made a simple java file and it compile without errors, > how do I view the end results in JBuilder? > > thanks > > KT > > === > To unsubscribe: mailto [EMAIL PROTECTED] with body

Oggetto: how do I view the end result

2001-04-23 Thread Igor Zerbesi DIGEST
>Hi All, >I'm new to Java, I made a simple java file and it compile without errors, >how do I view the end results in JBuilder? >thanks Right click on java file then choose run. It doesn't appear if the class doesn't h

how do I view the end result

2001-04-23 Thread Marshall, Katyann
Hi All, I'm new to Java, I made a simple java file and it compile without errors, how do I view the end results in JBuilder? thanks KT === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTE

How do I get Content-Length ?

2001-04-18 Thread Yasuo Itoh
Hello, I needs Content-Length for the i-Mode of NTT-DOCOM. I tried as follows at the last line in a JSP file. <% response.setContentLength(out.getBufferSize() - out.getRemaining()); %> I got the length however the length was little bit smaller than correct length. Apche_1_3_14_WIN, jakart

Re: How do I set up a JSP alias with Tomcat standalone ?

2001-04-06 Thread M. Simms
6:22 AM > To: [EMAIL PROTECTED] > Subject: How do I set up a JSP alias with Tomcat standalone ? > > > Hello, > > How do I set up an alias for a JSP using Tomcat in standalone mode ? > Here is an excerpt of my web.xml configuration file. > > > router

How do I set up a JSP alias with Tomcat standalone ?

2001-04-06 Thread Eric Bouchut
Hello, How do I set up an alias for a JSP using Tomcat in standalone mode ? Here is an excerpt of my web.xml configuration file. routerJsp /some/where/CiscoRouterBoInfo.jsp routerJsp /RouterInfo When I direct my browser to the JSP URL, /RouterInfo it

[Off topic] How do I set environment variables in Linux?

2001-03-28 Thread Gallardo Giancarlo
I'm new in this stuff of Linux, and I still have to learn many things. One of them is this about setting variables. So, this is my problem: I've just downloaded Forte for Java. But when i try to install it (using the RPM file), it says JAVA_HOME not found in environment variables set. So where

How do I ..??

2001-03-22 Thread Surendra Kumar
Hi, Could any of you help... I want to change the default examples directory to my own directory ( eg. mydirectory ) in JSWDK. How do I do it ?? I tried inserting another web application in the webserver.xml file --> - - But the problem I face is, when I try to invok

Re: How do I...

2001-02-09 Thread A.C.
> know the type of each entity in a ResultSet after an SQL statement has > been executed? this is not a jsp issue, take a look to the java.sql API or at least read this: http://developer.java.sun.com/developer/onlineTraining/Database/JDBCShor tCourse/jdbc/exercises/MetaData-ing/help.html ===

Re: How do I...

2001-02-09 Thread Joseph Ottinger
JDBC, not JSP... Check the ResultSetMetaData from the ResultSet. >From: Marino Vittorio <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: How do I... >Date:

Re: How do I...

2001-02-09 Thread Tushar Sarmah
Use the Result Set meta data > -- > From: Marino Vittorio[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specification and > reference > Sent: Friday, February 09, 2001 3:37 PM > To: [EMAIL PROTECTED] > S

How do I...

2001-02-09 Thread Marino Vittorio
...know the type of each entity in a ResultSet after an SQL statement has been executed? I need to know the type before extracting the object, the query changes every time, so I don't know columns types before. Thanks, Vittorio =

Re: how do I to go out from this list???

2001-02-08 Thread Slava
reference <[EMAIL PROTECTED]> > > To: [EMAIL PROTECTED] > cc:(bcc: Sivakumar Chiluvuri/JAMNAGAR/RIL) > Subject: how do I to go out from this list??? > > please > > === > To uns

Re: How do I get a QueryString out of POST parameters?

2001-02-07 Thread Julia Reynolds
Here is something you might want to look at: http://jsptags.com/tags/navigation/pager/ It's a taglibrary that allows you to "page" through search results. ZHU Jia wrote: > Hi, > > I'm doing a project using JSP and JDBC right now. I'm trying to show only 5 > search result entries on a single pag

Re: How do I get a QueryString out of POST parameters?

2001-02-07 Thread Hung Yee
sage- From: Lee Ball [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 7:51 AM To: [EMAIL PROTECTED] Subject: Re: How do I get a QueryString out of POST parameters? The first decision you need to make is whether you want to GET the first five results or whether you want to get all th

Re: How do I get a QueryString out of POST parameters?

2001-02-07 Thread Lee Ball
e best I can do. Cheers Lee -Original Message- From: ZHU Jia [mailto:[EMAIL PROTECTED]] Sent: 07 February 2001 15:36 To: [EMAIL PROTECTED] Subject: How do I get a QueryString out of POST parameters? Hi, I'm doing a project using JSP and JDBC right now. I'm trying to show onl

How do I get a QueryString out of POST parameters?

2001-02-07 Thread ZHU Jia
Hi, I'm doing a project using JSP and JDBC right now. I'm trying to show only 5 search result entries on a single page, then have a link which reads "The Next 5 Entries" or something like that. But the problem is that I get my search parameters from a HTML form, with POST method, I think there mu

Re: how do I to go out from this list???

2001-01-20 Thread Sivakumar Chiluvuri
PROTECTED] cc:(bcc: Sivakumar Chiluvuri/JAMNAGAR/RIL) Subject: how do I to go out from this list??? please === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [

Re: how do I to go out from this list???

2001-01-18 Thread Harish Vishvanath
list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Willard Thompson Sent: Thursday, January 18, 2001 6:02 PM To: [EMAIL PROTECTED] Subject: Re: how do I to go out from this list??? -Original Message- From: Marcelo Mathias Lima [mailto:[EMAIL

Re: how do I to go out from this list???

2001-01-18 Thread Willard Thompson
-Original Message- From: Marcelo Mathias Lima [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 18, 2001 5:40 AM To: [EMAIL PROTECTED] Subject: how do I to go out from this list??? please === To unsubscribe

how do I to go out from this list???

2001-01-18 Thread Marcelo Mathias Lima
please === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http:

out.flush() - or how do I show partially created pages?

2000-12-07 Thread Kai Hackemesser
Hi! My question: I want to show my jsp page partially on creation. I make many administrative database accesses with it and I want to see the process status. I tried to show my page partially by calling out.flush(), but this didn't wort as I thought. How do I show partially created pages?

Re: How do I display a Greek character in JSP? - Urgent ...

2000-12-04 Thread Kai Hackemesser
http://www.w3.org/TR/html4/sgml/entities.html#h-24.3 - Original Message - From: G.Nagarajan <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 04, 2000 10:35 AM Subject: Re: How do I display a Greek character in JSP? - Urgent ... > Hi king, > The pages

Re: How do I display a Greek character in JSP? - Urgent ...

2000-12-04 Thread G.Nagarajan
PROTECTED] Subject: Re: How do i display a greek character in JSP? - Urgent ... look into Volker Turau's book and online examples at: http://shannon.informatik.fh-wiesbaden.de/jsp/index.html http://shannon.informatik.fh-wiesbaden.de/buch/index.jsp http://shannon.informatik.fh-wiesbaden.d

Re: How do i display a greek character in JSP? - Urgent ...

2000-12-04 Thread G.Nagarajan
cification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Rathna Sent: Monday, December 04, 2000 5:36 AM To: [EMAIL PROTECTED] Subject: How do i display a greek character in JSP? - Urgent ... hi all, I have to display a greek character in the JSP page. i am constructing the string object

Re: How do i display a greek character in JSP? - Urgent ...

2000-12-04 Thread Victor Tsucanov
From: Rathna <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 04, 2000 7:35 AM Subject: How do i display a greek character in JSP? - Urgent ... > hi all, > > I have to display a greek character in the JSP page. > i am constructing the string object as fol

Re: How do i display a greek character in JSP? - Urgent ...

2000-12-03 Thread sun_king
yte[] str= new byte("Oôïêå Oèâ Çáìäïí"); > String greek = new String(str,"ISO-8859-7"); > out.println(greek); %> > > but when the Jrun Interprets the code it gives me > javax.servlet.ServletException: Invalid UTF-8 code. (bytes: 0xfff4 > 0x

How do i display a greek character in JSP? - Urgent ...

2000-12-03 Thread Rathna
prets the code it gives me javax.servlet.ServletException: Invalid UTF-8 code. (bytes: 0xfffffff4 0xffef) Error. How do i display the languages which is other than english in the JSP pages? FYI, i don't want to set the html charset as greek code since only few information in the page is greek and

Re: how do I get Parameters from form to the same Jsp

2000-11-26 Thread deepak
you can have an onclick event on link which submitsthe form - Original Message - From: "Martin Nwalal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, November 26, 2000 3:40 PM Subject: Re: how do I get Parameters from form to the same Jsp > Th

Re: how do I get Parameters from form to the same Jsp

2000-11-26 Thread Murali Mohana Rao
Hi Martin, If you want to pass the parameters of the same jsp, you have post the from action into same jsp only, then you can get all parameters, what you are passing... i hope it's like this.. test.jsp <% if(request.getParameter("Fname")!=null) { %> <%=request.getParameter("Fname")%

Re: how do I get Parameters from form to the same Jsp

2000-11-26 Thread Martin Nwalal
ge - From: suxuchun <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, November 26, 2000 3:06 AM Subject: Re: how do I get Parameters from form to the same Jsp > Just use > > or > > That will be ok > - Original Message - > From: "Martin Nwal

Re: how do I get Parameters from form to the same Jsp

2000-11-25 Thread suxuchun
Just use - Original Message - From: "Martin Nwalal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 25, 2000 8:45 PM Subject: how do I get Parameters from form to the same Jsp > Hi, > > How Can I pass parameters from form link to

Re: how do I get Parameters from form to the same Jsp

2000-11-25 Thread suxuchun
Just use or That will be ok - Original Message - From: "Martin Nwalal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 25, 2000 8:45 PM Subject: how do I get Parameters from form to the same Jsp > Hi, > > How Can I pass parameter

Re: how do I get Parameters from form to the same Jsp

2000-11-25 Thread Girish B Mohite
Hi Martin This is Girish here Can you restate ur problem ,its not very clear to me Whenever you submit the form in a jsp ,the jsp reloads itself so it can get the parameters in that form.If at all you want tos et some parameters ,set them in javascript Hope this solves ur proble Regards Girish

how do I get Parameters from form to the same Jsp

2000-11-25 Thread Martin Nwalal
Hi, How Can I pass parameters from form link to jsp where form and jsp are in the same file . thanks for help Martin === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMA

how do I get Parameters from form to the same Jsp

2000-11-25 Thread Martin Nwalal
Hi, How Can I pass parameters from form link to jsp where form and jsp are in the same file . thanks for help Martin === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMA

how do I find out more about a error message

2000-10-26 Thread Shawn Zhu
Okay, I need some help now. =) I got the following error message. On the jsp I use. I have a Database class, that calls javax.naming.InitialContext class. I know that's where it generate the error. However, I have no idea whether the error is related to my environment path setup or missing pa

Re: how do I hide a directory under tomcat....

2000-10-13 Thread Hendrik Schreiber
Larry, you could register a Servlet under the URL-pattern /downloads/WEB-INF/* that always returns HttpServletResonse.SC_FORBIDDEN. Like this: import javax.servlet.*; import javax.servlet.http.*; public DownloadForbidden extends GenericServlet { public void service(ServletRequest req, Servle

how do I hide a directory under tomcat....

2000-10-13 Thread Larry Hoffman
I have the following set up... I created a downloads directory. Under the downloads directory I created the WEB-INF directory. At this same level I created a files directory. Under the WEB-INF directory I created the classes dir. i.e.: +downloads +-WEB-INF | +-classes

Re: how do I set target (another frame name or _top[HTML]) forjsp :forward

2000-10-09 Thread James Staniland
Was ist eine Visitenkarte ? -Original Message- From: Sergey A. Vorobiev [mailto:[EMAIL PROTECTED]] Sent: 09 October 2000 09:42 To: [EMAIL PROTECTED] Subject: Re: how do I set target (another frame name or _top[HTML]) forjsp:forward Sunil Jaiswal wrote: > > All: > > Can any

Re: how do I set target (another frame name or _top[HTML]) forjsp:forward

2000-10-09 Thread Sergey A. Vorobiev
Sunil Jaiswal wrote: > > All: > > Can any one tell me how do I set target (another frame name or _top[HTML]) > for jsp:forward > > for example: > when I have a in the left frame of my HTML > page, > I want this forward to point to the right frame of my HTML.

Re: how do I set target (another frame name or _top[HTML]) for jsp:forward

2000-10-09 Thread Manuel Matonin
I am not quite sure why U use jsp:forward tag! Use ! "Right" is the Frameset parameter which you attributed in tag . Hope this helps. M.M. - Original Message - From: "Sunil Jaiswal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 09

how do I set target (another frame name or _top[HTML]) for jsp:forward

2000-10-09 Thread Sunil Jaiswal
All: Can any one tell me how do I set target (another frame name or _top[HTML]) for jsp:forward for example: when I have a in the left frame of my HTML page, I want this forward to point to the right frame of my HTML. Any help would be grateful. Waiting for the reply. Thanks, -Sunil

Re: How do I show JDBC ResultSet contects as a HTML Table

2000-10-04 Thread Yongjiang Zhang @ Yahoo
ts.getString(i) + ""); } out.println(""); } out.println(""); -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Raja Nage

How do I show JDBC ResultSet contects as a HTML Table

2000-10-04 Thread Raja Nagendra Kumar
I posting this again as I had no replies.. Please help... Hi! Could anyone tell me how do I map the ResultSet Object to the HTML Table. Currently I am trying to take each element of ResultSet and writing to a cell on html table... Is there any utils or tools which directly take ResultSet and

Re: How Do I display Java Gui Objects on a browser with JSP?

2000-10-03 Thread David Marshall
pport the native platform, by default. Hopefully, this will change in a future release. David Marshall - Original Message - From: "Cogley, Jonathan" <[EMAIL PROTECTED]> Sent: Monday, October 02, 2000 6:22 AM Subject: Re: How Do I display Java Gui Objects on a browser

How do I show JDBC ResultSet contects as a HTML Table

2000-10-03 Thread Raja Nagendra Kumar
Hi! Could anyone tell me how do I map the ResultSet Object to the HTML Table. Currently I am trying to take each element of ResultSet and writing to a cell on html table... Is there any utils or tools which directly take ResultSet and format it as HTML Table.. Does the freemarker Template API

Re: How Do I display Java Gui Objects on a browser with JSP?

2000-10-02 Thread Cogley, Jonathan
- From: charbel achkar [mailto:[EMAIL PROTECTED]] Sent: 30 September, 2000 8:10 AM To: [EMAIL PROTECTED] Subject: How Do I display Java Gui Objects on a browser with JSP? Hi everyone, New to this list. I am trying to incorporate javax.swing and awt gui object with HTML fields in a JSP form. I am

How Do I display Java Gui Objects on a browser with JSP?

2000-09-30 Thread charbel achkar
Hi everyone, New to this list. I am trying to incorporate javax.swing and awt gui object with HTML fields in a JSP form. I am able to instantiate these objects but failed to show them on the browser frame. I tried to get contentpane for the frame but I failed. does anyone know how to show these i

How do I make tomcat load automatically...

2000-09-28 Thread Larry Hoffman
instead of typing "./startup.sh" at the commad line Thanks On Thu, 28 Sep 2000, Hans Bergsten wrote: > "Craig R. McClanahan" wrote: > > > > Irfan Mohammed wrote: > > > > > It means that you are working with version 2.1 > > > Irfan > > > > > > > More completely, it means you are working wit

How do i set aliases in JRun 2.3.3

2000-08-30 Thread Aravind Kumar LNS
Hi I have a jsp page that has a following statements document.forms[0].action = "/com/deploy/admin/DocGenDocsServlet.class"; document.forms[0].submit(); I want to give an alias name like this document.forms[0].action = "docgendoc"; document.forms[0].submit(); To do that i set the alias name in J

Re: QUESTION: How do I Change the Sort Order of this Code?

2000-08-08 Thread Joseph Sandra
What I mean is, how do I modify the code so that I can tell it in what direction I want the data sorted (i.e., ascending or descending)? SanJo;) Quoting "Sergey A. Vorobiev" <[EMAIL PROTECTED]>: > "S. Joseph" wrote: > > > > I'm new to Java. I want

Re: QUESTION: How do I Change the Sort Order of this Code?

2000-08-08 Thread Sergey A. Vorobiev
"S. Joseph" wrote: > > I'm new to Java. I want to sort the data in reverse order but I don't > understand the code and cannot tell where to modify it. Please help. > > /* > * MergeSort.java > > * > > * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved. > > * > > * This softwar

QUESTION: How do I Change the Sort Order of this Code?

2000-08-08 Thread S. Joseph
I'm new to Java. I want to sort the data in reverse order but I don't understand the code and cannot tell where to modify it. Please help. /* * MergeSort.java > * > * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved. > * > * This software is the confidential and proprietary

Re: How do I Change the Sort Order?

2000-08-07 Thread Ionel Condor
-1; else return 1; } or for reverse order: public int compareElementsAt(int beginLoc, int endLoc) { if(beginLoc How do I change the sort order in this code? > > SanJo;) > > /* > * MergeSort.java > * > * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserve

How do I Change the Sort Order?

2000-08-07 Thread S. Joseph
How do I change the sort order in this code? SanJo;) /* * MergeSort.java * * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved. * * This software is the confidential and proprietary information of Sun * Microsystems, Inc. ("Confidential Information"). You

Re: How Do I access data from LOTUS NOTES-5 database- in jsp or otherwise....***Important*** please Help

2000-08-03 Thread Doug Turner
m with a Notes ID that is not password protected. Hope this helps. - Original Message - From: Pradeep Roy <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 02, 2000 12:56 AM Subject: How Do I access data from LOTUS NOTES-5 database- in jsp or otherwise*

Re: How Do I access data from LOTUS NOTES-5 database- in JSP or o therwise....***Important*** please Help

2000-08-02 Thread Marc Krisjanous
PROTECTED] Subject: How Do I access data from LOTUS NOTES-5 database- in jsp or otherwise***Important*** please Help Hi All Could Anyone help me in getting data from Lotus Notes database. The first thing that I want to do is to connect to the database. and run a simple query. Please let me now

Re: How Do I access data from LOTUS NOTES-5 database- in jsp or otherwise....***Important*** please Help

2000-08-02 Thread [Sebastian Fuchs]
Hello Pradeep, i just managed to pull data out of a Notes database, so probably this could help you a little. There are two ways of doing this. First you can try to integrate the GNUJSP1.0 package into the Domino Server, by using the Domino Servlet Manager. Second you can install Tomcat and use Do

Re: How Do I access data from LOTUS NOTES-5 database- in jsp or otherwise....***Important*** please Help

2000-08-02 Thread Oleg V Alexeev
Hello Pradeep, Tuesday, August 01, 2000, 11:56:37 PM, you wrote: PR> Could Anyone help me in getting data from Lotus Notes database. The first PR> thing that I want to do is to connect to the database. and run a simple PR> query. Please let me now the URL, Drivername, System name ( how to code

How Do I access data from LOTUS NOTES-5 database- in jsp or otherwise....***Important*** please Help

2000-08-01 Thread Pradeep Roy
Hi All Could Anyone help me in getting data from Lotus Notes database. The first thing that I want to do is to connect to the database. and run a simple query. Please let me now the URL, Drivername, System name ( how to code all this properly) etc. etc. that is required to get connected to Lotu

Re: how do I?

2000-07-30 Thread Oren Klichevsky
<http://www.mannainc.com> -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Howard Lee Sent: Saturday, July 29, 2000 6:23 AM To: [EMAIL PROTECTED] Subject: how do I? Hi guys, I have a program that gen

how do I?

2000-07-28 Thread Howard Lee
Hi guys, I have a program that generates XML and calls a JSP. I want the JSP to somehow takes this XML input (not necessarily a file) and do processing. How should the XML generating program call the JSP? I don't think I can embed the XML into URL. Any idea guys? Thank you very much. howard ===

Re: How do I destroy/reset a Session Java bean

2000-06-15 Thread Veena
une 15, 2000 12:40 AM Subject: Re: How do I destroy/reset a Session Java bean > Graham Cruickshanks wrote: > > > I've been using a java bean to hold state while building a order in a e-bis > > app, Problem is that when the user goes through this order building process

Re: How do I destroy/reset a Session Java bean

2000-06-14 Thread Namratha Reddy
on and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: How do I destroy/reset a Session Java bean >Date: Wed, 14 Jun 2000 19:55:06 +0100 > >I've been using a java bean to hold state while building a order in a e-bis >app, Problem is that when the u

Re: How do I destroy/reset a Session Java bean

2000-06-14 Thread Craig R. McClanahan
Graham Cruickshanks wrote: > I've been using a java bean to hold state while building a order in a e-bis > app, Problem is that when the user goes through this order building process > again it has all the old values, > > Is there a easy what to erase/reset a java bean which is a Session object,

How do I destroy/reset a Session Java bean

2000-06-14 Thread Graham Cruickshanks
I've been using a java bean to hold state while building a order in a e-bis app, Problem is that when the user goes through this order building process again it has all the old values, Is there a easy what to erase/reset a java bean which is a Session object, Without kill any other session object

Re: HOW DO I SIGN OFF FROM THIS LIST

2000-05-04 Thread Stefán Freyr Stefánsson
riginal Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Sagar Ratnakara Nikam Sent: 3. maí 2000 09:30 To: [EMAIL PROTECTED] Subject: HOW DO I SIGN OFF FROM THIS LIST Hi, Can anybody tell me how do we sign off from this maili

Re: HOW DO I SIGN OFF FROM THIS LIST

2000-05-03 Thread Jean de Lavarene
lt;[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 03, 2000 11:30 AM Subject: HOW DO I SIGN OFF FROM THIS LIST > Hi, > Can anybody tell me how do we sign off from this mailing list. > I have been trying it by sending a mail to [EMAIL PROTECTED] with body > "signof

HOW DO I SIGN OFF FROM THIS LIST

2000-05-03 Thread Sagar Ratnakara Nikam
Hi, Can anybody tell me how do we sign off from this mailing list. I have been trying it by sending a mail to [EMAIL PROTECTED] with body "signoff JSP-INTEREST" . I am getting a mail from the listserver with error message Unknown command - ""SIGNOFF". Try HELP. Does any body know how we sign off

how do I make Apache to start JSP?

2000-04-30 Thread Howard Lee
Hi guys, My opening page is a JSP file, and I'm using Apache and Tomcat (for now). I would like to know how to configure Apache and Tomcat so that Apache starts up this opening JSP page. (Apache looks for index.html) Any idea? Thanks alot!

Re: URGENT : How do i extend a JSP page ?

2000-04-27 Thread Paul Holser
lto:[EMAIL PROTECTED]) // ObjectSpace, Inc. // The Leader in Business-to-Business Solutions // http://www.objectspace.com > -Original Message- > From: Jim Bailey [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 27, 2000 11:09 AM > To: [EMAIL PROTECTED] > Subject: Re:

Re: URGENT : How do i extend a JSP page ?

2000-04-27 Thread Jim Bailey
M To: [EMAIL PROTECTED] Subject: URGENT : How do i extend a JSP page ? Hi everybody, I'm trying to extend my own class using a JSP. The spec says that the superclass: 1. should implement HttpJspPage 2. al the methods in the Servlet interface are declared final additionally, JSP author should hav

URGENT : How do i extend a JSP page ?

2000-04-27 Thread Ñarendra Acharya
Hi everybody, I'm trying to extend my own class using a JSP. The spec says that the superclass: 1. should implement HttpJspPage 2. al the methods in the Servlet interface are declared final additionally, JSP author should have in the superclass : - the service() method of the Servlet API invoke

[RE]How do I use RMI in JSP

2000-04-13 Thread ¹Ú¼º¼ö
ting rmi in JSP. >>Jsp engine is jswk1-0. >>But I got Security error. >>How do I use RMI in JSP? >> >> >>ÇÑ ¹ø °¡ÀÔÇÏ¸é ¸ÞÀÏ + ȨÆäÀÌÁö + µ¿

How do I use RMI in JSP

2000-04-13 Thread ±èÁø¹Î
I am testing rmi in JSP. Jsp engine is jswk1-0. But I got Security error. How do I use RMI in JSP? ÇÑ ¹ø °¡ÀÔÇÏ¸é ¸ÞÀÏ + ȨÆäÀÌÁö + µ¿È£È¸¸¦ Æò»ý ¹«·á·Î ! Lycos Korea Inc. http://www.lycos.co.kr

Re: How do I link Tomcat to IIS

2000-04-12 Thread Cogley, Jonathan
See http://jakarta.apache.org/cvsweb/index.cgi/jakarta-tomcat/etc/tomcat-iis-how to.html Select the "as text" option! Regards, Jonathan -Original Message- From: David Kao [mailto:[EMAIL PROTECTED]] Sent: 12 April, 2000 12:38 PM To: [EMAIL PROTECTED] Subject: How do I link

How do I link Tomcat to IIS

2000-04-12 Thread David Kao
I saw the instructions to link Tomcat to Apache server, but I am wondering if I can link Tomcat to IIS and am desperate to learn how. David Kao === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".

How do I install Servlets within my web application?

2000-04-10 Thread Xunming Liu
Hi there: My system is SDK1.2.2 and JSWDK1.0.1. I want to install and run my Servlets file. according to JSP FAQ item: "How do I install Servlets within my web application? 3. Activate the newly installed Servlet by registering (adding) the servlet in the WEBAPP/WER-INF/servlets.prope

How do I install Servlets within my web application?

2000-04-01 Thread Xunming Liu
Hi all: I 've just installed SDK1.2.2 and JSWDK1.0.1 and just learn the servlets and jsp. I want to install and run my Servlets file. according to JSP FAQ item: How do I install Servlets within my web application? 3. Activate the newly installed Servlet by registering (adding) the servl

How do I get started with JSP on a Macintosh

2000-02-04 Thread Mark Andrew Nassy
Hi, Is there a digest version of this list? MY PROBLEM: I followed the instructions on: http://www.esperanto.org.nz/jsp/jspfaq.html#q42> but I get a 404 file not found error message when I connect to http://127.0.0.1:8080> with ms ie. MY SOFTWARE AND HARDWARE: (1) g3 upgrade 8600, (2)

Re: How do i detect browser instance being closed?

2000-01-28 Thread Richard Vowles
You cannot detect a browser being closed, you can only detect a timeout. And for that, check the FAQ. - Original Message - From: sachin pikle <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 27, 2000 9:48 PM Subject: How do i detect browser instance

  1   2   >