JavaMail Example !

2001-02-06 Thread Mayuresh Kadu
I believe someone was looking for a "Java Mail" example. I have one that i had downloaded quite some time back from i-dont-remember-where. I still have the Zip file. Its about JSP with Java Mail. Interested person could mail me off the list and i could send him/her/them the zip file ! Mayuresh

Re: Please tell me about Registering Database driver

2001-02-06 Thread Mayuresh Kadu
Have u tried looking at the "Question of the Week" at jdc (Java Developer Connection) at http://www.javasoft.com ? I believe one of the questions of the week is about Class.forName . Try also looking at the archives for some interesting tips. Mayuresh - I have done JDBC prog

Re: connecting to mssql

2001-02-06 Thread Surya Prakash
why dont u people understand the problems faced by a newbie in jsp and assist him in a way he can improve his skills and do better instead mud slinging alll over here and there - Original Message - From: Salian, Santosh (GXS, TCS) <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday,

Please tell me about Registering Database driver

2001-02-06 Thread Srinivas K. R.
Hi I have done JDBC programming. I want to know what does Class.forName exactly do. Theorytically they say the Database Drivers are registered in Driver Manager. Is it possible to see all the entries or all the registerd drivers in the Driver Manager. cheers Srini =

Re: WebLogic and Beans

2001-02-06 Thread Tushar Sarmah
No, you do not need Tom cat. Check out the file startweblogic.cmd in NT or startweblogic.sh in Unix You need to update the following two env. variable JAVA_HOME & WL_HOME Tushar > -- > From: Frank Mancini[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server

Re: Does "Class.forName("sun.jdbc.odbc.JdbcOdbcDriver")" work for SQL 7?

2001-02-06 Thread David Nguyen
Hi, Your JDBC code looks fine. I guess you are connected to another schema, not the one containing Employees. You may want to verify that when you created the ODBC data source for "jdbc:odbc:Northwind" you did check "SQL Server authentification using login ID and password entered by user" (instea

Re: Autorefresh

2001-02-06 Thread Joseph Ottinger
Okay. It wasn't obvious to me, because I can think of a few cases that fit the term "autorefresh a JSP file." *shrug* My suggestion is no different than others' here: use the META tag (or the header) to tell the browser to re-request the page every so often. >>What do you mean by "autorefresh a

JSP web host

2001-02-06 Thread Ravi Prashanth
Does anyone know of any good JSP web host ? I would really appreciate it if you can spell out some/any past experiences with any such host. Thanks, Ravi - Please post pictures of 5-year-old JSP wiz-kids online at http://BabyNamesIndia.com

Re: a$$holes in the forum

2001-02-06 Thread Ravi Prashanth
I think the easiest way to block out such a$$holes from this unfortunately-unmoderated-forum is for everyone to block this guy's email id and send all his freakin' emails directly to where they came from & where they deserve to be - the Trash can!! >At 08:37 AM 2/6/01 -0600, you wrote: >>Why ar

Does "Class.forName("sun.jdbc.odbc.JdbcOdbcDriver")" work for SQL 7?

2001-02-06 Thread The Burkes
Can someone shed some light on this JDBC issue for me? I am using the default Northwind database in SQL Server 7. I am using the dbo user with full access. The problem is that when I run a query on the Employees table I get the following error: [Microsoft][ODBC SQL Server Driver][SQL Server]Inv

Re: A component that generates barcharts.

2001-02-06 Thread Ravi Prashanth
I have noticed a trend in this forum. There are a coupla guys (thats one too many) here who are more interested in flaming and criticizing and degrading everyone else, rather than solving their problems. I wish such guys get the message and simply _shut_up. If they think somebody's post is stup

Re: Moderated JSP Focused Lists?

2001-02-06 Thread Anil John
Greetings, My reason for asking the question below is very simple and very selfish. I need a resource that I can go to get questions answered in a timely fashion from people who are experts in their field. I am a newbie to JSP but not to web applications development. I have been doing ASP/COM de

Re: Autorefresh

2001-02-06 Thread Ravi Prashanth
>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, Well...I think its meaning is very obvious : Its a JSP page which reloads (refreshes, autorefreshes, whatever) itself every so-many fixed minute

Re: problem in using out.println in method

2001-02-06 Thread Shawn Zhu
No need to do that, Wayne. =) Just redefine your public method to include the (JspWriter out) <%! void aF(JspWriter out){ out.println("testing"); } %> ... <% aF(out); %> > -Original Message- > From: Ravi Prashanth [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 06, 2001

Re: problem in using out.println in method

2001-02-06 Thread Ravi Prashanth
Cut'n'paste and email me your code and I will have a look at it. Its mostly a syntax problem. Ravi Are you an XPERT in what you do ? Write articles for us in return for some free Publicity. Click the link below :- http://CyberConneXions.com/Articles -

Re: How to secure a page?

2001-02-06 Thread Ravi Prashanth
I dont understand your question. What do u mean' duplicate _at_ the second page ?' There is nothing to duplicate. If he has entered his username/pword correctly on the first page, *only then* does he get access to the second one. Otherwise there's no chance of his getting to the second page at a

Re: Can anyone tell me how to unsubscribe?

2001-02-06 Thread Shawn Zhu
lol, Ross, go to archives.java.sun.com, and search for "how to unsubscribe jsp-interest group" Actually better yet, just do a search on this email and find all occurrances of "unsubscribe", you'll find your answer. =D > -Original Message- > From: Ganesh MohanRao [mailto:[EMAIL PROTECTED]

Re: Problem running JSP using bean in JRun

2001-02-06 Thread Hans Bergsten
"Gowda, Prasad" wrote: > > Hi All, > > I have a jsp page which uses a bean, it is a simple jsp page which > initializes > the bean with default values as shown below. > > > > > > > > But the problem is the jsp page(.java created by the JSP Engine) is unable > to instanstiate the bean. >

Weblogic and Beans

2001-02-06 Thread Frank Mancini
I'm using Weblogic 5.1 as my servlet engine and I'm trying to compile a Bean and it imports the:   import javax.servlet.*;import javax.servlet.http.*;   packages. As you can tell, I get a class not found error since I'm using Weblogic as my servlet and jsp engine...How do I get around this? If I n

Re: Java mail

2001-02-06 Thread Joseph Ottinger
It's easier to use a tag than it is to write a scriptlet, anyway. Tags for sending email are readily available: see http://jsptags.com for a set (it's not responding for me right now, but hey!), Sourceforge has the jsptags project (which I'm part of) which has one, and I'm sure there are more. >

Re: connecting to mssql

2001-02-06 Thread Dawei Jiang
The problem is people at junior level are most needed for answers from people at expert level. To denies their access to the whole community is also not the best approach. Even a simple question can be an 100% block for someone who's don't know the answer. My suggstion is if we can have a FAQ site

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

2001-02-06 Thread Saravanan
thanks guys we thought that java is gone because we got a mail that the jsp,xml and ejb are gonna be obsolete and pnly microsoft .net rule the world for the next generation. And what about the consultants in U.S. It seems they are having a lot of bench period ..Ist it So? Saravanan Java Pro

Moderated JSP Focused Lists?

2001-02-06 Thread Anil John
Greetings, I am new to JSP/Java development and am looking for moderated lists that focus on the topic in addition to this one. I have seen the list of lists at: http://www.jspin.com/home/community/emaillis http://www.cafeaulait.org/mailinglists.html But other than this, there seems to be a la

Re: connecting to mssql

2001-02-06 Thread Salian, Santosh (GXS, TCS)
Hi , I have some experience in such mailing lists. After some time and experience, one may feel some questions asked are so simple; why did the other person in the list had raised that . May be in future these forums should be categorized by level of experience like i) Entry-level ii) Intermedia

Re: Problem running JSP using bean in JRun

2001-02-06 Thread Gowda, Prasad
Thank you. It's working now. > -Original Message- > From: Duc Nguyen [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, February 06, 2001 4:14 PM > To: [EMAIL PROTECTED] > Subject: Re: Problem running JSP using bean in JRun > > I think bean class have to be in Classes directory. > > good lu

Re: Problem running JSP using bean in JRun

2001-02-06 Thread Duc Nguyen
I think bean class have to be in Classes directory. good luck Duc >From: "Gowda, Prasad" <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Problem running JSP using bean in JRun >Date: Tue, 6 Feb

Problem running JSP using bean in JRun

2001-02-06 Thread Gowda, Prasad
Hi All, I have a jsp page which uses a bean, it is a simple jsp page which initializes the bean with default values as shown below. But the problem is the jsp page(.java created by the JSP Engine) is unable to instanstiate the bean. The .java file is created in the dir C:\JRun\jsm-de

Re: A component that generates barcharts.

2001-02-06 Thread Sicaud Patrice
I would have to second that. I have gotten upwards of thirty messages from Joseph Ottinger alone today. My inbox had more than 100 messages in it this morning as opposed to the usual 30-45. THIS HAS GOT TO STOP... -Original Message- From: Jeff Schindler [mailto:[EMAIL PROTECTED]] Sent: T

Re: connecting to mssql

2001-02-06 Thread Julia Reynolds
If you don't think a post on this list is pertinent or interesting, can't you just delete it? Similar to the way we all delete your posts, for example. By the way, does anyone know where I can find a good C++ compiler? Joseph Ottinger wrote: > I suppose the better alternative is to say nothing,

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

2001-02-06 Thread Jim Rueschhoff
The company I work for has been looking for mid level Java/JSP programmer for 6 weeks now and we haven't even found one to interview yet. The market here in Phoenix certainly doesn't know that Java is having problems in the marketplace. > -Original Message- > From: A mailing list about

Re: connecting to mssql

2001-02-06 Thread Jay H. Lang
Please get a chat room and quit this!! Joseph Ottinger wrote: > Nah, I don't think I have to be a jerk to get things done efficiently. > THAT's just my personality - I don't play politics to assuage those who need > such things. I just don't care about how you feel... if I present a garment > an

Re: A component that generates barcharts.

2001-02-06 Thread Jeff Schindler
OK, now this is beyond absurd. I monitor this list, but have never posted or replied. Usually when threads go on like this I watch in somewhat morbid amusement. But Joseph here must be having a bad day. First off, the original "off-topic" (whatever that means) post is much more innocent than t

.war files not expanded wher tomcat started

2001-02-06 Thread William Wu
Hi guys, I created my own web directory "webdev", and configured sever.xml and web.xml for it, for some reason .war files I put under /webdev were not expanded when tomcat started, but they were if put under /tomcat/webapps. I am wondering what's wrong with my web directory webdev? Thanks, Wi

Re: connecting to mssql

2001-02-06 Thread Joseph Ottinger
Nah, I don't think I have to be a jerk to get things done efficiently. THAT's just my personality - I don't play politics to assuage those who need such things. I just don't care about how you feel... if I present a garment and you decide it's cut to your fit, it's STILL YOUR DECISION. (And yes,

Re: Java mail

2001-02-06 Thread Hung Yee
You have to download the JavaMail API to see the demo examples because it's part of the download. The link to download the JavaMail API is here: http://www.java.sun.com/products/javamail/index.html Also, I suggest you click on the README link to see exactly what is contained in the latest versio

Re: connecting to mssql

2001-02-06 Thread Michael Normington
What's funny - and I'll steal a line from Robin Williams on this one - is that you think you have to be an a$$hole to get things done "efficiently." What's pathetic is that you seem to think that's a new idea. I thought that way too when I was young and stupid. Most people grow out of it.

Re: A component that generates barcharts.

2001-02-06 Thread Hines, Bill
In Joseph's mind, he is performing a service. He is taking the role of the curmudgeon here that lets people know when they do things that degradate the list, in order to make the list better. In that role, he is taking the heat on himself from people like you that will be upset because he isn't be

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

2001-02-06 Thread fumitada
How silly... >Obviously a rumor started by some org like ZDNet..an M$ ass-kisser. $oftbank, suck your yellow behind...damn it. Yah*o will be effected real soon. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "si

Java mail

2001-02-06 Thread Boda, Ramakrishna Rao (Ramakrishna)
Hi Srinivas ! I looked for the Demo Examples realted to JSP /Java Mail at Sun site . But could not get them . Can you send the URL please Thanks Boda -Original Message- From: sreenu pallepati [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 2:40 PM To: [EMAIL PROTECTED] Subje

Re: JSP + ResultSets

2001-02-06 Thread Hung Yee
What 'errors' are you getting, exactly? I think you should email them to us EXACTLY AS IS - don't try to paraphrase them or interpret them for us. -Original Message- From: Walter Priesnitz Filho [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 12:15 PM To: [EMAIL PROTECTED] Su

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

2001-02-06 Thread JSP Insider
Not true, JSP is alive and well, As both JSP Trainers and the operators of JSPInsider web site we are seeing increasing demand for JSP and Java on the web. In fact I am also happy to say the interest in JSP is evenly distributed around the world and it has become very much an international tool o

Re: connecting to mssql

2001-02-06 Thread John Owen
Yes, but off-topic questions aren't personal attacks, which is where some of these posts are heading. I've only been an observer so far, and I agree that a lot of the recent posts have been silly. I just delete them, since we have no moderator. If you have a moderated list, that would be fantastic

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.

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. A

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

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: JSP + ResultSets

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

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 1

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: > > > > He

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 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 i´ll appreciate it alot. > > Rafael Antillón Reyes > Grupo Vitro > Tel. 3-

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 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: [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 popula

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: 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 to

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 i´ll appreciate it alot. Rafael Antillón Reyes Grupo Vitro Tel. 3-29-17-00 Ext. 2966 [EMAIL PROTECTED] ICQ# 61057293 ==

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 (possi

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 w

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 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 for

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 you

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 insu

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: 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: http://www.ja

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 "Yo

JSP + ResultSets

2001-02-06 Thread Walter Priesnitz Filho
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??? Thanks - Walter Priesnitz Filho Mestrando em Ciencia da Computacao [

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 ===

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 e-re

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 furth

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,

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 autore

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: R

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 HAV

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 MoZill

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 06

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 I

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 prob

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

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

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 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 GI

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 l

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

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: Stefán F. Stefánsson [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
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 afrai

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 -

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:

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 h

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, "

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 l

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 I'

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. t

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: 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 need

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] w

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 th

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 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: Jo

Re: connecting to mssql

2001-02-06 Thread Michael Normington
<> This is totally uncalled for. What are you thinking? -Original Message- From: Ahmed, Salman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 8:37 AM To: [EMAIL PROTECTED] Subject: Re: connecting to mssql My email has nothing to do with Wayne's email, that's why I changed

  1   2   >