Re: problem in using out.println in method

2001-02-06 Thread Mahesh Gangarapu
The type of the out object is "PrintWriter" - Original Message - From: Wayne Lian [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 06, 2001 1:18 PM Subject: Re: problem in using out.println in method you need to pass 'out' as a parameter to the method what is

Is there any JDBC Driver for SQL Server 2000 for free or not very expensive?

2001-02-06 Thread Rovira Merce
Is there any JDBC Driver for SQL Server 2000 for free or not very expensive? I'm using now Interbase and I need to migrate to SQL Server 2000, for that I need a JDBC Driver for this DB. Thanks in advance, Merc === To

Re: Is there any JDBC Driver for SQL Server 2000 for free or not very expensive?

2001-02-06 Thread Tushar Sarmah
Check out at Microsoft site. -- From: Rovira Merce[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification and reference Sent: Tuesday, February 06, 2001 1:45 PM To: [EMAIL PROTECTED] Subject: Is there any JDBC Driver for

Re: problem in using out.println in method

2001-02-06 Thread ravi
try this code % print(out); % %! public void print(JspWriter newout){ try{ newout.println("hello world"); }catch(Exception e){} } % cheers, ravi Wayne Lian wrote: you need to pass 'out' as a parameter to the method what is the type of this 'out'? Just know it's from interface of

Any views on the Java Web market in the US ???

2001-02-06 Thread Mathew, Binoy (CORP, GEITC)
Hi all, We keep hearing news on the downtrends of the Java web market in the US? How true is this and is this a slug or a permanent downfall of Java web based technologies like JSP, Servlets, XML ??? What about Europe? Would like your thoughts. Rgds, Binoy.

Re: problem in using out.println in method

2001-02-06 Thread Ramesh, Kesav
out is a default supplied printwriter object. you are making this as a string. try to take that "" from that and it will work Regards Ramesh Kesavanarayanan Electronic Data Systems Steeple Reach, 25, Cathedral Road, 91-44-811 3801 to 15 ext :2186 91-44-233 0380 (res) [EMAIL PROTECTED]

Autorefresh

2001-02-06 Thread Nicholas Larsson
Is it possible to autorefresh a jsp file every 10 seconds for example? Nico === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST

Re: Autorefresh

2001-02-06 Thread Puneet Kathuria, Gurgaon
Use HTML META ... tag Puneet -- From: Nicholas Larsson[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification and reference Sent: Tuesday, February 06, 2001 2:36 PM To: [EMAIL PROTECTED] Subject: Autorefresh Is it

Re: Autorefresh

2001-02-06 Thread Dark
Is it possible to autorefresh a jsp file every 10 seconds for example? Try this: html META HTTP-EQUIV='Refresh' CONTENT='10' head ... === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For

Re: Any views on the Java Web market in the US ???

2001-02-06 Thread Geert Van Damme
Where did you here that? on a M$ .Net event? Geert Van Damme -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Mathew, Binoy (CORP, GEITC) Sent: dinsdag 6 februari 2001 10:04 To: [EMAIL PROTECTED]

Re: Autorefresh

2001-02-06 Thread Adrian Papari
Yes, but not without java-script (you might be able to achieve something similar with a server push, but unfortunately IE doesn't support it). Regards, //Adrian Papari. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL

Re: Autorefresh

2001-02-06 Thread Tushar Sarmah
Yes call response.setHeader("Refresh",time_in_sec) -- From: Nicholas Larsson[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification and reference Sent: Tuesday, February 06, 2001 2:36 PM To: [EMAIL PROTECTED] Subject:

Re: Autorefresh

2001-02-06 Thread Adrian Papari
hmm.. I must admit, I never thought about that ;) But what browsers support the Refresh "value" in the meta-tag?? Curious, //adrian papari. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Dark Sent: 06

Re: Tomcat plus IIS

2001-02-06 Thread [Nathan Day]
The documentation supplied with Tomcat gives info. about how to integrate it with IIS and PWS. It's under your tomcat directory then under "doc/tomcat-iis-howto.html" Hope this helps, Nathan -Original Message- From: Rodrigo Lopes [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05,

Re: Any views on the Java Web market in the US ???

2001-02-06 Thread Sanjay Gomes
Hello, Probably from a newsgroup Well I am subscribed to another Java Newsgrooup and a message is doing the rounds over there which was posted by a guy who went through a bodyshopper to the US and allegedly was sent back because as the employer said that he had no Java projects and that the Java

Re: How can I sign an applet

2001-02-06 Thread Joseph Ottinger
This is offtopic for the JSP list. See the documentation on keytool and jarsigner from Sun. http://java.sun.com/j2se/1.3/docs/tooldocs/win32/keytool.html http://java.sun.com/j2se/1.3/docs/tooldocs/win32/jarsigner.html Next time, find a better list. This is a list for JSP, Java *Server* Pages,

Re: data indention?

2001-02-06 Thread Adrian Papari
hmm... well, this should work. a root object being a Vector. This one contains all subjects as Vectors. Each element in each vector maps to a hashtable. The hashtable might contain things such as: == id, subject, message, replies == the key replies maps to another vector - hashtable

Re: problem in using out.println in method

2001-02-06 Thread Joseph Ottinger
It doesn't matter what specific type it is - It's a JspWriter, as you've said, and you can use the interface as the parameter type. Basic Java. (Well, okay, Java 102, not Java 101.) See the Java Tutorial for more on this stuff (http://java.sun.com/tutorial) and try reading the error messages

Re: JSP with Swing

2001-02-06 Thread Joseph Ottinger
Yes, this is still valid. What are you using a client-side menu in your server-side application for? If you want a menu, you'd send it as textual data, which Swing isn't designed for. If you want an applet, use it. If you want JSP, use it - and remember that JSP generates textual data. Hi there,

Re: Is there any JDBC Driver for SQL Server 2000 for free or not very expensive?

2001-02-06 Thread Joseph Ottinger
This isn't JSP-related; it's JDBC only, which means you really should find a JDBC list somehow. Is there any JDBC Driver for SQL Server 2000 for free or not very expensive? See http://industry.java.sun.com/products/jdbc/drivers - which allows you to search for drivers for various databases.

Re: Autorefresh

2001-02-06 Thread Joseph Ottinger
What do you mean by "autorefresh a JSP file?" I'm shuddering just thinking of the negative performance implications. ("Let's cache the output... oh, wait, we just rewrote it. Let's recompile! Let's cache the generated servlet... oh, wait, we just rewrote it. Let's recompile! Let's..." You get the

Re: Autorefresh

2001-02-06 Thread Flava Flave
By Auto-refresh a JSP page I presume you are referring to auto-refreshing any kind of html page, am I correct. In this regard you might try a meta-refresh, a standard HTML tag: META HTTP-EQUIV="Refresh" CONTENT="[secs];URL=[RefreshUrl]" - Original Message - From: "Joseph Ottinger"

Hel p me

2001-02-06 Thread asitha ranjan
Hi all % catchItems = cart.getItems(); // calling getitsm which is defined in the bean //agin holding in another vector iRows = catchItems.size(); //cheking the size of the vector int i; System.out.println("Showing

Urgent,Core java ,jsp

2001-02-06 Thread asitha ranjan
--- asitha ranjan [EMAIL PROTECTED] wrote: Hi all % catchItems = cart.getItems(); // calling getitsm which is defined in the bean //agin holding in another vector iRows = catchItems.size(); //cheking the size of the vector

How to install TomCat

2001-02-06 Thread Yuelin Liang
Hi, I just begin to learn JSP. I installed ISWDK 1.0. I downloaded TomCat 3.2.1 from Sun, anybody knows how to install it on WIN2K? Thanks, Yuelin Liang === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff

A component that generates barcharts.

2001-02-06 Thread Allan Chamon
Anybody knows where can I find a free component that generates a barcharts, pie and so forth, and saves these grafics as gif, jpeg files? Thanks in advance. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff

Exception Unhandled Exceptions Attempt to Flush a buffer already flushed

2001-02-06 Thread peruma gagan
I want to know what i the reason for the Exception "Unhandled Exceptions Attempt to Flush a buffer already flushed" Anybody could explain me this and how to avoid it i will be very thank ful . mail to gagan.p@ sa.net thanks in advance .

Re: Logout

2001-02-06 Thread Gerstmair, Anja
Hi Vittorio, the object "session" (javax.servlet.http.HttpServlet) has the method "invalidate". The documentation says: Invalidates this session and unbinds any objects bound to it. Best regards Anja -Original Message- From: Marino Vittorio [mailto:[EMAIL PROTECTED]] Sent:

Re: How to install TomCat

2001-02-06 Thread Joseph Ottinger
I just begin to learn JSP. I installed ISWDK 1.0. I don't know what that is, and I have no idea what the significance is. I downloaded TomCat 3.2.1 from Sun, anybody knows how to install it on WIN2K? No change you could try http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/index.html, is

Re: A component that generates barcharts.

2001-02-06 Thread Joseph Ottinger
Anybody knows where can I find a free component that generates a barcharts, pie and so forth, and saves these grafics as gif, jpeg files? "The web" is the place to look. It's bad enough that you specify "free," meaning that you're not willing to recompense someone else's hard work, but worse

Re: JDBC Connection Pooling

2001-02-06 Thread ZHU Jia
Many thanks for the info! Angus Mezick wrote: Go to java.sun.com/products/jsp and search the archive for connection pool. There was something about this topic last month. --Angus ZHU Jia wrote: Hello, I'm new to JSP and JDBC, now I wonder how I can best realize the "Connection

Re: Exception Unhandled Exceptions Attempt to Flush a buffer already flushed

2001-02-06 Thread Joseph Ottinger
I want to know what i the reason for the Exception "Unhandled Exceptions Attempt to Flush a buffer already flushed" Anybody could explain me this and how to avoid it i will be very thank ful . I've seen it before and worked around such things; normally that's a signal for incorrect design.

comparing date objects

2001-02-06 Thread ems vasudevan
Hi Gurus! I have to compare two date objects.one is returned from System.currentimemillisecond. other is a DateFormat Object retreived from the Database as string .My Backend is DB2. Pls help. Regds with advanced thanks. __ Do You Yahoo!?

Re: comparing date objects

2001-02-06 Thread Joseph Ottinger
This is off-topic for a JSP list. This has two primary areas of concern: JDBC and core Java: JDBC because you're retrieving a date from a database (as a string, which is incorrect) and core Java because you're comparing two Date objects. However, because Alan has put me in a good mood by asking

Re: How to install TomCat

2001-02-06 Thread The Burkes
Try looking at the docs. \TOMCAT_HOME\doc\uguide\tomcat_ug.html -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Yuelin Liang Sent: Tuesday, February 06, 2001 6:34 AM To: [EMAIL PROTECTED] Subject: How to

Re: connecting to mssql

2001-02-06 Thread Ahmed, Salman
Hello, I can't seem to find a tutorial on connecting to MSSQL? can someone help me out ? -Original Message- From: Wayne Lian [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 11:59 PM To: [EMAIL PROTECTED] Subject: problem in using out.println in method Hi, I had declared

Re: connecting to mssql

2001-02-06 Thread Joseph Ottinger
I'm almost afraid to answer this one. For one thing, "I can't find a tutorial on connecting to MSSQL" is JDBC, not JSP. For another, what does this have to do with Wayne's email? Why are you replying to it? At any rate: JDBC connection URLs are driver-dependent; you have a lot of options,

Re: A component that generates barcharts.

2001-02-06 Thread Ahmed, Salman
asking for something that is free is hardly bad. -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 7:35 AM To: [EMAIL PROTECTED] Subject: Re: A component that generates barcharts. Anybody knows where can I find a free component that

Re: Is there any JDBC Driver for SQL Server 2000 for free or not very expensive?

2001-02-06 Thread Girish Sahu
Rovira, yes it is very much available you can download evaluation copy here and use it for around 2 to 3 months till your purchase is finalised http://www.inetsoftware.de/English/Produkte/JDBC_Overview/default.htm It supports Java 1.2.x or higher and JDBC 2.0 The driver supports all MSSQL

Re: A component that generates barcharts.

2001-02-06 Thread Joseph Ottinger
Focus on my real point: "asking for something that fits ___ is bad enough but importantworse that you're not willing to invest the time to search for yourself/important" asking for something that is free is hardly bad. -Original Message- From: Joseph Ottinger [mailto:[EMAIL

Re: connecting to mssql

2001-02-06 Thread Ahmed, Salman
My email has nothing to do with Wayne's email, that's why I changed the subject. And sorry for being so childish. I'll take your advice. -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 9:17 AM To: [EMAIL PROTECTED] Subject: Re:

Re: A component that generates barcharts.

2001-02-06 Thread Michael Normington
Why are you flaming this guy? What's your problem? Jeez lighten UP! -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 6:35 AM To: [EMAIL PROTECTED] Subject: Re: A component that generates barcharts. Anybody knows where can I find a

Re: A component that generates barcharts.

2001-02-06 Thread Michael Normington
Focus on this: "You are an obnoxious jerk who isn't as interested in helping as you are in making yourself fel big by talking in sarcastic terms to people who are just looking for help." -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001

Re: connecting to mssql

2001-02-06 Thread Michael Normington
Come on, guys, you can do better... small children can do better than this. My five-year-old knows how to ask questions to appropriate forums. If he can do it... This is totally uncalled for. What are you thinking? -Original Message- From: Ahmed, Salman [mailto:[EMAIL PROTECTED]] Sent:

Re: connecting to mssql

2001-02-06 Thread Michael Normington
Again, why are you talking down to everyone in this forum. If that's all you wanna do please SHUT UP! It's irritating as hell to read these bitchy little posts of yours every time someone's post isn't good enough for your standards. You sound like a jacka$$. -Original Message- From:

Re: comparing date objects

2001-02-06 Thread Michael Normington
Who cares what mood you are in? Really ask yourself that. -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 7:32 AM To: [EMAIL PROTECTED] Subject: Re: comparing date objects This is off-topic for a JSP list. This has two primary areas

Re: connecting to mssql

2001-02-06 Thread Joseph Ottinger
I suppose the better alternative is to say nothing, let all these off-topic and inane little questions (I'm waiting for "Where can I find a C++ compiler?") remain on the list for no good reason? I want the list to be productive for me as well as for the newbies. That's why I'm pointing them to

Re: A component that generates barcharts.

2001-02-06 Thread Cassio
Look at: www.jspindex.com it's a great site... Cassio de Sousa Developer www.node1.com.br === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED]

Re: connecting to mssql

2001-02-06 Thread Joseph Ottinger
I'm thinking exactly what I typed. If my five-year-old can do it, why can't you? Isn't that a legitimate question to ask yourself? That's like those people who get upset that you won't tell them how to assign the number 63 to an int - it's not like it's hard, and if you can't do it, maybe you

Re: connecting to mssql

2001-02-06 Thread Michael Normington
That is fine. What is not fine is your insults and sarcasm. Where do you get off telling people your 5 year old could ask better questions? That is totally inappropriate as is your sarcastic response in nearly every reply you post. These people are not here to please you. They are here to get

Re: [Re: Exception Unhandled Exceptions Attempt to Flush a buffer already flushed]

2001-02-06 Thread peruma gagan
Thank u for ur reply . i have a vector returned from a servlet hich the jsp uses for populating it's cmponents on the screen . when i access the elements of the vector it's throwing me the excepton . if i am not clear by this please let me know i will send a detailed discription with the code.

Re: connecting to mssql

2001-02-06 Thread Geert Van Damme
Posting off-topic questions is also considered rude. I do know what Joseph feels about this list, and I think he IS right. What do you want us to do. There are maybe 5 persons on this list who give correct answers. All the rest is just guesswork at best. If this is not gonna change, I know what

Re: connecting to mssql

2001-02-06 Thread Stefán F. Stefánsson
I suppose the better alternative is to say nothing, let all these off-topic and inane little questions (I'm waiting for "Where can I find a C++ compiler?") remain on the list for no good reason? Yes it would be better! "...remain on the list"??? In case you haven't noticed this is a mailing

Re: connecting to mssql

2001-02-06 Thread Michael Normington
I feel sorry for your 5 year old that his/her daddy is such a pain. -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 8:17 AM To: [EMAIL PROTECTED] Subject: Re: connecting to mssql I'm almost afraid to answer this one. For one thing,

calendar

2001-02-06 Thread S. Chen
Hi, Does anybody know how a calendar page is made? Do you have to write all the logic yourself on the jsp page or is there existing Java code for calendars that should be called? Xuyun _ Get your FREE download of MSN Explorer at

Re: Autorefresh

2001-02-06 Thread Michael Normington
Please please please the sarcasm in all of your posts is so friggin annoying that I cannot read on. People like you need to learn some humility. -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 4:43 AM To: [EMAIL PROTECTED] Subject:

Re: Can anyone tell me how to unsubscribe?

2001-02-06 Thread Ross L
I forget to mention that the method in the bottom of the e-mail is not working. Let me refraze it - how do I contact SA. ? From: Arun Thomas [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" [EMAIL PROTECTED] Subject: RE: Can anyone tell me how to unsubscribe? Date: Mon, 5 Feb 2001 17:31:30 -0800

Re: connecting to mssql

2001-02-06 Thread Joseph Ottinger
Yeah, he gets that a lot... I feel sorry for your 5 year old that his/her daddy is such a pain. -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 8:17 AM To: [EMAIL PROTECTED] Subject: Re: connecting to mssql I'm almost afraid to

Re: connecting to mssql

2001-02-06 Thread Ganesh MohanRao
I totally agree with Stefan Freyr. Please don't insult anybody. Ganesh -Original Message- From: Stefn F. Stefnsson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 9:44 AM To: [EMAIL PROTECTED] Subject: Re: connecting to mssql I suppose the better alternative is to say

Re: connecting to mssql

2001-02-06 Thread Joseph Ottinger
I suppose the better alternative is to say nothing, let all these off-topic and inane little questions (I'm waiting for "Where can I find a C++ compiler?") remain on the list for no good reason? Yes it would be better! "...remain on the list"??? In case you haven't noticed this is a mailing

Re: connecting to mssql

2001-02-06 Thread Chelmowski, Michael
I've been following the list for a few days and noticed that you seem to be some kind of self appointed Listserv God who fancies himself some kind of hard-core Java/JSP guru which obviously you're not or else you wouldn't have to be reading this list. Yes I'm new to this list but not to mailing

Re: connecting to mssql

2001-02-06 Thread sandarbh
PLEASE SHUT UP EVERYONE. THIS IS BULLSHIT. IF YOU FEEL THE PROBLEM ASKED IS OFF TOPIC OR STUPID, YOU DONT ANSWER LET ANYONE WHO DOES'NT, ANSWER THAT. REST OF YOU IF SOMEONE OBJECTS LET HIM, STOP CROWDING OUR MAIL BOXES WITH ALL THIS SHIT HOW MANY QUESTIONS HAVE BEEN ANSWERED TODAY,? DONT

Re: connecting to mssql

2001-02-06 Thread Flava Flave
yes and the solution that is provided is impractical as well. The only thing worse than an off-topic question is a glib, off-the-cuff answer which has not had any thought put into it, and on top of that is wrong as well! I'd rather see a 100 off-topic questions than a single stupid wrong answer!

Re: connecting to mssql

2001-02-06 Thread Joseph Ottinger
Michael... I've been following the list for a few days and noticed that you seem to be some kind of self appointed Listserv God who fancies himself some kind of hard-core Java/JSP guru which obviously you're not or else you wouldn't have to be reading this list. At no point have I said I'm a

Re: connecting to mssql

2001-02-06 Thread Flava Flave
- Original Message - From: "Joseph Ottinger" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 06, 2001 2:16 PM Subject: Re: [JSP-INTEREST] connecting to mssql Come on, guys, you can do better... small children can do better than this. My five-year-old knows how to ask

Download problem with Netscape6

2001-02-06 Thread Malla c
Hi I am using Netscape 4.7 to download file.. but when I use Netscape6.0 it is giving error like this.. U are about to download a file of type application/vnd.ms-excel. This file is unrecognized by MoZilla. You can save it or open it with another application. Please help me any one in this

Re: connecting to mssql

2001-02-06 Thread sandarbh
PLEASE STOP IT EVERYONE. . IF YOU FEEL THE PROBLEM ASKED IS OFF TOPIC , YOU DONT ANSWER LET ANYONE WHO DOES'NT, ANSWER THAT. REST OF YOU IF SOMEONE OBJECTS LET HIM, STOP CROWDING OUR MAIL BOXES WITH ALL THIS . HOW MANY QUESTIONS HAVE BEEN ANSWERED TODAY,? DONT GIVE EXAMPLES BECAUSE NO TWO

Re: Can anyone tell me how to unsubscribe?

2001-02-06 Thread Ganesh MohanRao
Ross, I will suggest u a way. Go to http://archives.java.sun.com/archives/jsp-interest.html You can find a link to "Join or Leave the List". This is the only way u can "Unsubscribe" i think. Ganesh -Original Message- From: Ross L [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February

Re: Download problem with Netscape6

2001-02-06 Thread Joseph Ottinger
I don't understand the problem... "you can save it" would be relevant, wouldn't it? Hi I am using Netscape 4.7 to download file.. but when I use Netscape6.0 it is giving error like this.. U are about to download a file of type application/vnd.ms-excel. This file is unrecognized by MoZilla. You

Re: connecting to mssql

2001-02-06 Thread Jay H. Lang
you guys need to get a chat room!! sandarbh wrote: PLEASE STOP IT EVERYONE. . IF YOU FEEL THE PROBLEM ASKED IS OFF TOPIC , YOU DONT ANSWER LET ANYONE WHO DOES'NT, ANSWER THAT. REST OF YOU IF SOMEONE OBJECTS LET HIM, STOP CROWDING OUR MAIL BOXES WITH ALL THIS . HOW MANY QUESTIONS HAVE

Re: connecting to mssql

2001-02-06 Thread The Burkes
For the love of god and all that is holy, please make it stop! :) -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Flava Flave Sent: Tuesday, February 06, 2001 11:27 AM To: [EMAIL PROTECTED] Subject:

Re: Autorefresh

2001-02-06 Thread Straight, Christian
Yes (see other reponses), but extremely annoying... give user's notice or alert. Christian Straight Inovant -Original Message- From: Nicholas Larsson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 1:06 AM To: [EMAIL PROTECTED] Subject: Autorefresh Is it possible to

Re: Can anyone tell me how to unsubscribe?

2001-02-06 Thread Gowda, Prasad
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". -Original Message- From: Ganesh MohanRao [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 10:52 AM To: [EMAIL PROTECTED] Subject: Re: Can anyone tell me how to unsubscribe? Ross, I will

Re: comparing date objects

2001-02-06 Thread Martin, Janet
I just did this with a small method loaded into our Base JSP page (see following code) and a bit of trickery with the Calendar class in the JSP (see code below). In our case we needed to get the difference between the two dates returned as an int. If this isn't self explanatory - please ask

TOT: Looking for ..

2001-02-06 Thread Mayuresh Kadu (Aftek Infosys, Pune)
for those who are wondering what TOT means -- it stands for *Totally* Off Topic. I apologize for posting this request here but i am looking for a site(s) which will give me detailed information about building a e-library. I am looking for library standards especially for managing a library of

JSP - SQL question

2001-02-06 Thread Constantinos Giannacoulis
Hi all, I have jsp page displaying a large number of rows (200) returned from a database search. How can i split the resultset into logical pages and let the user choose what page to display? Thanks in advance, Costas ===

Re: A component that generates barcharts.

2001-02-06 Thread Joseph Ottinger
I have no problems with you thinking that. Note, however, that I suggested something quite valid (i.e., that he go to a search engine.) I did; I typed in "free barchart generator java" and got a list of possibilities for evaluation. If I wasn't interested in helping people, I'd have just said

Re: JSP + ResultSets

2001-02-06 Thread Hung Yee
The standard way for Java to connect to any database is with JDBC (Java DataBase Connectivity). If your unfamiliar with JDBC, Sun's website has a very good tutorial on how to use it: http://www.java.sun.com/docs/books/tutorial/jdbc/index.html Sun's homepage on JDBC is located here:

Re: JSP + ResultSets

2001-02-06 Thread Joseph Ottinger
Hi all, I need help with an apllication. I need make a query in an Oracle Table and put the result in a html table. How can I pass the resultset from Oracle to JSP? Does anybody help-me??? You don't "pass the resultset from Oracle to JSP." I don't know what kind of architecture you're using,

Re: A component that generates barcharts.

2001-02-06 Thread Joseph Ottinger
You know, I scanned this and realised that it did, in fact, say something I didn't intend. I didn't mean to imply that the person who wrote "Focus on this:," etc. was a moron, which could easily have been inferred from context and what people apparently think I'm feeling. I apologize for any

Re: A component that generates barcharts

2001-02-06 Thread Joseph Ottinger
Enraged? Who, me? most of these things are making me laugh... hardly "rage." And I'm being constructive, in more ways than one. I'm providing the answer, as well as a sort of grade. Teachers do the same thing. "Frankie, two plus two does not equal five. It equals four; next time, perhaps use

Re: connecting to mssql

2001-02-06 Thread Joseph Ottinger
If they'd ask questions in the right forums, they'd get better help. And you know it for a FACT that I don't speak this way in person? Bah, nonsense. You don't know me. I *do* speak this way in real life; chances are that if you're so think-skinned that this upsets you, we'd not work together

Re: JSP - SQL question

2001-02-06 Thread Angus Mezick
http://jsptags.com/tags/ Look at the first entry. I think that is what you need. --Angus Constantinos Giannacoulis wrote: Hi all, I have jsp page displaying a large number of rows (200) returned from a database search. How can i split the resultset into logical pages and let the user

Re: Off Topic - How to set ur System Time

2001-02-06 Thread Hung Yee
1) Re the statement: "... real time calculations ...". To clarify, I mean any time sensitive calculations using the machine's system clock. 2) Re the statement: "... In such situations these apps may have to be reset first before changing the system clock. " I think I got this backwards! You

Re: JSP - SQL question

2001-02-06 Thread Robert Nelson
You should be able to store the query results in some type of container within the HttpSession object (reference setAttribute), and then retrieve and display the total number of available logical pages to the user (number of results / page size). After the user selects which page to display

Re: connecting to mssql

2001-02-06 Thread Antillon Reyes Rafael Martin - EXT
Hello Everyone. I have a simple question: How Do i send mail with a JSP? If u can give a me pointer or somewhere I can get information ill appreciate it alot. Rafael Antilln Reyes Grupo Vitro Tel. 3-29-17-00 Ext. 2966 [EMAIL PROTECTED] ICQ# 61057293

Re: data indention?

2001-02-06 Thread Sicaud Patrice
Crisalyn: Look into using a table. That would be the easiest way to handle this. HTH -Original Message- From: Crisalyn Ramos [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 1:29 AM To: [EMAIL PROTECTED] Subject: data indention? hi, i am doing a web forum and i would like

Re: connecting to mssql

2001-02-06 Thread Geert Van Damme
Use Javamail. It's not as complicated as it looks. and there are quite some taglibs available that make sending an email very easy. I don't know where I downloaded the taglib I'm using, but I'm sure you can find something on http://jsptags.com/ Geert Van Damme -Original Message- From:

Re: [Re: Exception Unhandled Exceptions Attempt to Flush a buffer already flushed]

2001-02-06 Thread Joseph Ottinger
Without seeing the use case EXACTLY, it sounds like you're obtaining the output stream in the servlet before rerouting to the JSP page. This isn't bad design at all, actually; it's pretty good design. Thank u for ur reply . i have a vector returned from a servlet hich the jsp uses for

Re: connecting to mssql

2001-02-06 Thread Hung Yee
You can use Sun's JavaMail API to do this. Take a look at Sun's documentation on it here: http://www.java.sun.com/products/javamail/index.html Note that this can be done from any Java code, and is not specific to JSP technology. BTW: I hope you realize that your question has nothing to do with

Re: frustration

2001-02-06 Thread Ahmed, Salman
(Change the subject header if your talkign about something else People!) I think its very hard for a newbie coming into JSP since there is so little information out there when comparing it to ASP. That is why you get so many newbie type questions on this list. In ASP, there are so many sites and

Re: connecting to mssql

2001-02-06 Thread Peter Choe
look at the javamail package. Antillon Reyes Rafael Martin - EXT wrote: Hello Everyone. I have a simple question: How Do i send mail with a JSP? If u can give a me pointer or somewhere I can get information ill appreciate it alot. Rafael Antilln Reyes Grupo Vitro Tel. 3-29-17-00 Ext.

Re: JSP + ResultSets

2001-02-06 Thread Walter Priesnitz Filho
I found a code in Java Developer's Journal and I'm trying but I'm not vad success. Could you help-me? Thanks... - Walter Priesnitz Filho Mestrando em Ciencia da Computacao [EMAIL PROTECTED] | [EMAIL PROTECTED] http://www.inf.ufsc.br/~walterp

Re: connecting to mssql

2001-02-06 Thread sreenu pallepati
Hi, down load the classes and API for the JAVA MAIL. Along with that classes, sun gives demo examples, they are very good and well presented. good luck, sreenu --- Peter Choe [EMAIL PROTECTED] wrote: look at the javamail package. Antillon Reyes Rafael Martin - EXT wrote: Hello

Re: JSP + ResultSets

2001-02-06 Thread Hung Yee
You should send us the code that you're having problems with so that we'll know the details of your problem. Please be as specific as possible so that we don't have to 'guess' ;-( -Original Message- From: Walter Priesnitz Filho [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001

Re: JSP + ResultSets

2001-02-06 Thread Walter Priesnitz Filho
Sorry, I'm forgot the code... html title Select * from Esipcidade /title body %@ language="java" import="java.sql.*" % % Connection connection ; Statement statement ; ResultSet rs ; ResultSetMetaData rsmd ; Class.forName("oracle.jdbc.driver.OracleDriver") ; connection =

Restarting Tomcat??

2001-02-06 Thread Jurrius, Mark
I'm using Tomcat 3.2 with Microsoft NT. In my Java Beans I call many Oracle procedures and functions. When I make changes to an Oracle procedure/function do I need to stop-start Tomcat for it to recognize the new changes? It seems to be inconsistent. Thanks in advance. Mark

Re: Autorefresh

2001-02-06 Thread Joseph Ottinger
Humility? Me? MORE humility? Why? I already have a decent evaluation of my skills (they're not that great; I can list a lot of programmers smarter than I in very, very little time). Please please please the sarcasm in all of your posts is so friggin annoying that I cannot read on. People like

Re: JSP + ResultSets

2001-02-06 Thread Walter Priesnitz Filho
Ok... I'm been clouddy... heheheh I'm working with Tomcat 4.01b and I have a database in Oracle. I'd installed tomcat and I know I need use JDBC to do the connection with my database, so I put the file classes12.zip(Oracle 8i jdbc file) in the classpath. But the code I was send to you dont work.

FW: Any views on the Java Web market in the US ???

2001-02-06 Thread M. Simms
Ridiculous... contact a company by the name of "Concrete, Inc" in New York City they cannot take any more projects in Javabooked-up for 2 years in advance. Also, their minimum project size is $100,000. Websites have gone bankrupt from the cost of supporting CGI/BIN code written in Perl.

  1   2   >