Re: UML Tutorial Pointers

2000-08-10 Thread Khem Chand Sachdeva
I think the people who r on this list r real experienced and if they have done some work then why should i reinvent the wheel again. That was the whole idea. "Hines, Bill" wrote: "Could anybody tell me how should i go abt learning UML. I want some site where i can find meaning of all the

Re: UML Tutorial Pointers

2000-08-10 Thread Khem Chand Sachdeva
I fully agree with what Daryani Santosh wrote. Daryani Santosh wrote: I don't think asking for a reference site or pointers on the web is always being lazy and inconsiderate of others , its very much true that there are serach engines , but for a given topic a serach engine could come up

Re: RequestDispatcher.forward() with Tomcat: Problems

2000-08-10 Thread Hans Bergsten
Larry Seabrook wrote: Hello Everybody, Is anybody successfully using the RequestDispatcher.forward() method with Tomcat to pass control from a servlet to a jsp? I am having nothing but problems. There are 3 ways that I know of to obtain a RequestDispatcher object for a resource, in this

retaining info

2000-08-10 Thread Deepak Arora
Hi friends, i am calling a jsp page say B from a jsp page say A and along with i am passing some parameters to page B now my jsp page B is calling another page C where depending upon some database validation i am i am redirecting that page to a error page where i have the error message and a

Re: Out of Office AutoReply: UML Tutorial Pointers

2000-08-10 Thread Romel
mail to [EMAIL PROTECTED] with body: "signoff JSP-INTEREST" regards Khem Chand Sachdeva [EMAIL PROTECTED] on 10/08/2000 02:40:15 PM Please respond to A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:

Re: retaining info

2000-08-10 Thread VV SATYA
For your problem there are two solutions. 1. Use some front end scripting like javascript instead of link to page B, link some javascript which takes back in history. For your case use following hyperlink for going to page B a href="javascript:History.go(-2)"Page B/a 2. Second solution is

Re: UML Tutorial Pointers

2000-08-10 Thread Maurice Coyle - Sun ireland - Software Products and Platforms - Internationalization Engineer
i don't know if this is the one someone else gave you, but it has a pretty comprehensive list of sites for all levels of experience. someone posted this link a couple of days ago. http://www.cetus-links.de/oo_uml.html#oo_uml_examples maurice. X-Accept-Language: en,pdf

Re: Session ID HELP!!

2000-08-10 Thread Krishna
Not at all. u can use the session object in ur program(JSP or Servlet). make the session start after the login is succeded by calling request.getSession(true); after that check for the session validity by checking whether session.getId() value is null or not, in every page wherever reqd.

Web server Servlet registration

2000-08-10 Thread Pratap Dinesh
Dear Developers, I have a question regarding the servlet registration in Web Servers. In some servers like JSWDK, you got to register your servlets in servlets.properties file. cookie.code=CookieExample cookie.initparams=foo Even if I delete the property files and restart the server the

Java Crashes

2000-08-10 Thread Jaspreet Singh
Hi, I m facing Dr. Watson error on Java.exe while uploading or downloading the file through JSP. I m using Tomcat3.1, Oracle Application Server 4.0.7 and Oracle Database Server 8.0.5. Please tell where is the error? Thanks Jaspreet Singh

Re: Javascript question ...

2000-08-10 Thread Brian D. Holden
I am knew to this thing. I want to have a server of my own. I would like to do development in my windows system and have a linux server. In each case, what software do I need to use jsp? (i.e. server, tomcat, ant, ???, java, etc) thanks

Re: Javascript question ...

2000-08-10 Thread Pratap Dinesh
you can use JSWDK 1.0.1 or Tomcat (JSP 1.1 complaint container). You can use Tomcat as a standalone servlet container or in combination with Apache 1.3.12 -- From: Brian D. Holden[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification and

Re: UML Tutorial Pointers

2000-08-10 Thread Atchutarao Killamsetty
Pretty much for the same reason, I am compiling all Java related links at http://atchutworld.tripod.com/myjava.html Your suggestions and also any links (you think that will be useful for others also) are welcome. With regards, Atchutarao Killamsetty, http://atchutworld.tripod.com/myjava.html

url parameters v/s form posted parameters

2000-08-10 Thread Samir Gharse
How do we know whether the parameter is coming from url or from a posted html form? Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

Re: Java Crashes

2000-08-10 Thread Ritu Kamboj
hi , i faced the same problem.try using higher version of JDK i.e. 1.3. Well from that period i haven't yet encountered this problem. Try your luck. regards ritu.. Jaspreet Singh [EMAIL PROTECTED] on 08/10/2000 10:14:51 AM Please respond to A mailing list about Java Server Pages

Re: Javascript question ...

2000-08-10 Thread SANDIPAN DUTTA
Cutting edge stuff indeed ... Sandipan. "Brian D. Holden" wrote: I am knew to this thing. I want to have a server of my own. I would like to do development in my windows system and have a linux server. In each case, what software do I need to use jsp? (i.e. server, tomcat, ant, ???,

Re: Javascript question ...

2000-08-10 Thread Maurice Coyle - Sun ireland - Software Products and Platforms - Internationalization Engineer
is it good being a genius? X-Accept-Language: en Content-Transfer-Encoding: 7bit Date: Thu, 10 Aug 2000 18:42:36 +0530 From: SANDIPAN DUTTA [EMAIL PROTECTED] Subject: Re: Javascript question ... Comments: To: A mailing list about Java Server Pages specification and reference [EMAIL

JSP Tool

2000-08-10 Thread Duhnasekar X Chandran
HI , Is there any tool availlable for developing JSPs. Thanks in advance. Dhana === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at:

Re: url parameters v/s form posted parameters

2000-08-10 Thread Lance Lavandowska
How do we know whether the parameter is coming from url or from a posted html form? if (request.getQueryString() != null) { // parameters from query string } else { // parameters from post } or else use request.getMethod() which will return "GET" or "POST" (or "PUT"). Lance

Re: JSP Tool

2000-08-10 Thread [Robert Cuperus]
Homesite 4.5.1 from Allaire in one that I am using -- I am newbee so anyone has a better tool I would open to trying anything. Bob -Original Message- From: Duhnasekar X Chandran [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 10, 2000 9:24 AM To: [EMAIL PROTECTED] Subject: JSP Tool

Re: Javascript question ...

2000-08-10 Thread Shari Fletcher
I agree. Everyone has to start somewhere. There's really no need for sarcasm. Shari -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Maurice Coyle - Sun ireland - Software Products and Platforms -

Re: JSP Tool

2000-08-10 Thread Sukalyan
Hi there !! Yes there are... You can try drumbeat 2000, J Builder or various tools from symantech inc. Bye At 09:24 AM 8/10/00 -0500, you wrote: HI , Is there any tool availlable for developing JSPs. Thanks in advance. Dhana

Re: JSP Tool

2000-08-10 Thread Hooman Ahmadi
I think it is the best one From: "[Robert Cuperus]" [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: JSP Tool Date: Thu, 10 Aug 2000 09:41:40 -0500 Homesite 4.5.1 from Allaire in one that I

How To write a JSP file TO DO this ? Please HELP ME

2000-08-10 Thread sufi malak
Hi, to get data from a text file or a database, Flash is expecting strings like this : var0=value0var1=value1.. Could you please help me on how to write a JSP file that when it's called just like this file.jsp return some data from database, for example the employee names in a string like

Re: JSP Tool

2000-08-10 Thread Hiren Dossani
Will you please send the url for that JSP tool website? - Original Message - From: "[Robert Cuperus]" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 10, 2000 10:41 AM Subject: Re: JSP Tool Homesite 4.5.1 from Allaire in one that I am using -- I am newbee so anyone has

Re: How To write a JSP file TO DO this ? Please HELP ME

2000-08-10 Thread Veronique Dupierris
Hi, I don't really understand what you mean by a jsp file which "returns" a string !!! If I well understand what you 'd like to do, you should call your file : file.jsp = then use a bean to connect ti the Db and get all your information in order to construct your string (concatenate

Re: JSP Tool

2000-08-10 Thread [Robert Cuperus]
the url is http://www.allaire.com/products/homesite You will be able to download a trial copy of the software. Bob -Original Message- From: Hiren Dossani [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 10, 2000 10:19 AM To: [EMAIL PROTECTED] Subject: Re: JSP Tool Will you please

Re: Out of Office AutoReply: UML Tutorial Pointers

2000-08-10 Thread Jim Bailey
I fully agree with what Romel wrote. -Original Message- From: Romel [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 10, 2000 3:09 AM To: [EMAIL PROTECTED] Subject: Re: Out of Office AutoReply: UML Tutorial Pointers mail to [EMAIL PROTECTED] with body: "signoff JSP-INTEREST" regards

java.lang.ExceptionInInitializerError when using weblogic.jspc to pre-compile JSP files in weblogic 4.5.1

2000-08-10 Thread Richard Yee
Hi, I am using 4.5.1 and am trying to pre-compile a jsp file. Actually, I eventually want to pre-compile all of the JSP files so that I can test that they compile without having to invoke them using a browser. I am getting the following error when running weblogic.jspc: This is the stack

Re: JSP Tool

2000-08-10 Thread Menard, Demetria
Has anyone tried Dreamweaver 3.0? -Original Message- From: Hooman Ahmadi [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 10, 2000 2:31 PM To: [EMAIL PROTECTED] Subject: Re: JSP Tool I think it is the best one From: "[Robert Cuperus]" [EMAIL PROTECTED] Reply-To: A mailing list about

tomcat and jswdk

2000-08-10 Thread Purak Shah
Hi all , I want to know how to implement ssl in tomcat and jswdk1.0.1 thanx in advanced Puraks __ Do You Yahoo!? Kick off your party with Yahoo! Invites. http://invites.yahoo.com/

help needed from javascript gurus

2000-08-10 Thread Samir Gharse
I have a couple of questions: 1. How to disable tabs for images? 2. How to disable the back buttton of browser? 3. How to implement a modal dialog in javascript? 4. When we put input type=image... in a form the form gets submitted when you click the image. Is there a way to call a javascript

Re: help needed from javascript gurus

2000-08-10 Thread Nathan Revo
Comments to your questions. 1. What do you mean, "tabs for images". 2. You can't disable the back button, you can open your page in a new window with all the toolbars removed. 3. Don't know. 4. In your body tag use the onSubmit function ... body onSubmit="someFunction()" The function will

Re: JSP Tool

2000-08-10 Thread Naresh Thawani
IBM's NetObjects ScriptBuilder is another tool but I think not a free download. Is Forte for free download! -Original Message- From: JSP Insider [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 10, 2000 12:31 PM To: [EMAIL PROTECTED] Subject: Re: JSP Tool I have used both dreamweaver

Re: JSP Tool

2000-08-10 Thread Aaron Prohaska
Don't forget that Allaire also is developing JRun Studio (currently in beta) for developing jsp. I have been using it for a while now and love it. I use it in combination with JBuilder. Since JRun Studio is being designed for jsp's and JBuilder is more suited for Servlets. Though I say JBuilder

Error while forwrding

2000-08-10 Thread Gagan Goel
Hi All, In a JSP page when ever I get some exception I am forwarding the eror message to to an error page but while forwarding I am getting java.lang.IllegalStateException: and Attempt to clear a buffer that is alraedy been flushed. I feel this is buffer problem as before forwarding a page it

Custom tag classes problem

2000-08-10 Thread Anurag Gaur
Hi, I have created a custom tag library to be used in an application running on Tomcat. As per the directions, in 'Web Development with JavaServer Pages' by Fields and Kolb, I have moved the JAR file containing the tag handlers in WEB-INF/lib directory. The deployment descriptor (web.xml) and the

Ending line of code with ;

2000-08-10 Thread Aaron Prohaska
Does anyone know why the ; is not needed when using %= somecode %? I would expect that this line should be %= somecode; % but it works fine without the ; to finish it. Aaron :::..:::...::: Aaron Prohaska :::..:::...::: VerdeSoft Internet Services mailto:[EMAIL PROTECTED]

Re: help needed from javascript gurus

2000-08-10 Thread Naresh Thawani
Reply 4. FORM name="Form" onSubmit="return validate()" method="POST" action="/Servlet" function validate() { var valid = true; if(!validateS()) valid= false; if(!checkC()) valid= false; if(!validateE()) valid= false; return valid; } -Original

Re: Javascript question ...

2000-08-10 Thread Sicaud Patrice
I'll second that. Keep snide remarks off this list. I have seen way too much of it already and it generates more unnecessary traffic than a helpful response. If you need to get back at something go kick your dog. -Original Message- From: Shari Fletcher [mailto:[EMAIL PROTECTED]] Sent:

Re: Error while forwrding

2000-08-10 Thread Doshi, Gunjan
Try setting the autoflush directive to false. %@page autoFlush = "false"% -- From: Gagan Goel[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification and reference Sent: Thursday, August 10, 2000 3:08 PM To: [EMAIL PROTECTED]

Re: JSP Tool

2000-08-10 Thread Doshi, Gunjan
Macromedia's UltraDev tool steals the show with integrated support for HTML, JavaScript, ASP and JSP. They replaced Drumbeat with this comprehensive tool Gunjan -- From: Aaron Prohaska[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification

Re: Ending line of code with ;

2000-08-10 Thread Karau, Joe
because what %= someVariable % is actually doing is: % out.println(somVariable); % therefore all you are doing is passing the argument for the out.println method === To unsubscribe: mailto [EMAIL PROTECTED] with body:

Iplanet and corba

2000-08-10 Thread KJS .
Dear Members, Iam facing a problem in accessing my corba .class files which r generated thru visi broker from servlets running on iplanet. Iam able to excess all other files like helpers,stubs,holders but not operations. I get the followoing error [10/Aug/2000:16:09:51] warning ( 255):

Re: How To write a JSP file TO DO this ? Please HELP ME

2000-08-10 Thread sufi malak
Thanks, I am not sure if I replyed to you or not yet, lot of things in the mind, anyway, where can I find a JSP file and a Bean that do the work, let's say I have a database that has a table called Courses : Table Courses has : Exercise number soundFile Location textFile Location and I want when

Re: Free MSQLS Server JDBC driver

2000-08-10 Thread Murphy, Chris (OTS-EDH)
I have downloaded, but not tried, something called "freetds". Take a look at this and see if it works for you. ftp://ftp.techrev.net/pub/freetds_jdbc.tgz -cm -Original Message- From: Lynch Wu [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 08, 2000 3:46 AM To: [EMAIL PROTECTED]

Re: JSP Tool

2000-08-10 Thread Keven Duffey
Does UltraDev include JavaBean drag/drop capability with building GUI pages? I tried out DreamWeaver and VisualCafe (WebGain Studio) and the integration sucks in my opinion. You have to edit the JSP pages in VisualCafe, but build them in DreamWeaver. On top of that..I can't seem to see any

Re: JSP Tool

2000-08-10 Thread Sicaud Patrice
I am seriously looking for an IDE which can debug javascript as well as JSP/servlet. Is there anything out there? -Original Message- From: Keven Duffey [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 10, 2000 2:16 PM To: [EMAIL PROTECTED] Subject: Re: JSP Tool Does UltraDev include

Re: JavaScripts : Wanna disable viewing source of the page...

2000-08-10 Thread Nathan Revo
Not to revive a dead subject, but you can semi-"hide" the source by building your whole html page with javascript using document.open, document.write, and document.close commands. -Original Message- From: Vivek Vijapure [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 29, 2000 10:33 PM

BUG in WLS ?? java.lang.ArrayIndexOutOfBoundsException: 1

2000-08-10 Thread Nagraj
Hi all, I am using a WLS and I seems to be getting the following exception randomly while accessing the JSP/ Servlets , There seems to be no reason at all..HAs any one encountered it ? or could it be a bug in WLS ? Thu Aug 10 15:54:38 PDT 2000:E ServletContext-Servlets Servlet failed with R

Re: JSP Tool

2000-08-10 Thread JSP Insider
Forte is a free download. located at http://www.sun.com/forte/ffj/ce/download.html Make sure you have a fast machine and its recommended you also use java 1.3 to help speed things up. I run jvm 1.2 on a 300 mhz laptop with NT 4.0 and forte is a bit on the slow side. Casey Kochmer [EMAIL

Behavior of the implicit session object?

2000-08-10 Thread Barry Burd
I thought I understood the JSP session object, but then I observed the following behavior. The code that I'm executing is brAttributes:br %! int count=1; % %= session.getMaxInactiveInterval() % br b%= session.getAttribute("numVisits") %/b % session.setAttribute("numVisits",

Help: referencing one webapp from another with Tomcat?

2000-08-10 Thread Daniel Kirkdorffer
I'm having trouble with a reference from one webapp to another. Basically, when I do RequestDispatcher rd = context.getRequestDispatcher("/xyz/MyPage.jsp"); while I'm in webapps/abc it looks for the file at webapps/abc/xyz/MyPage.jsp instead of at webapps/xyz/MyPage.jsp where I want it to go.

Re: Behavior of the implicit session object?

2000-08-10 Thread JSP Insider
question is, why do I start with null again whenever I close and reopen the Web browser (even though the session keeps track of how many times I had visited the page before newly opening the browser)? Session is NOT specific to a computer but its specific to a browser instance. When you open

Re: Help: referencing one webapp from another with Tomcat?

2000-08-10 Thread Craig R. McClanahan
Daniel Kirkdorffer wrote: I'm having trouble with a reference from one webapp to another. Basically, when I do RequestDispatcher rd = context.getRequestDispatcher("/xyz/MyPage.jsp"); That path you give to getRequestDispatcher(), like nearly every path in the servlet API, is treated as

Invalid Include tag

2000-08-10 Thread Krishnan
Hi all, I am getting invalid include tag as error when i run the following jsp. If i remove the include tag it is working fine. Similarly, if i run the file specified in the include tag separately, it is running fine. I don't know where i am going wrong. Your replies are highly appreciated.

test

2000-08-10 Thread sufi malak
this is a test. Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com === To unsubscribe: mailto [EMAIL PROTECTED] with body:

Re: Custom tag classes problem

2000-08-10 Thread Lynch Wu
Hi Anurag Check the list. 1. In doEndTag(), you should return EVAL_PAGE. 2. In setPageContext(), you should set this.pageContext=pageContext. 3. In setParent(), you should set this.parent=parent. Maybe you could download some tutorial codes before write your own codes. Hope this helps. Lynch

Re: Behavior of the implicit session object?

2000-08-10 Thread Joe Hanink
the session is tied to a browser session. hence, when u close the last browser instance on a machine, ur session ends. that's why closing and opening reinitializes ur variable. as for why two different machines were experiencing the problem u describe, i have no idea -Original

Re: Ending line of code with ;

2000-08-10 Thread Varadharajan.K.V,AMB Chennai
hi Aaron, This is the explanation from a JSP book. "This is because Java's semicolon is a state-ment delimiter. A semicolon has the effect of transforming a Java language expres-sion into a program statement. In Java, statements are evaluated purely for their side effects; they do not return

Re: Behavior of the implicit session object?

2000-08-10 Thread Frédérik Delacourt
I will not add anything on your first question, I think you had already received the right answer. One thing that could be interesting for everybody is to detail your problem a little bit more. What I mean is could you give some detail about the platform and the version of the different product

Re: Custom tag classes problem

2000-08-10 Thread Hans Bergsten
Anurag Gaur wrote: Hi, I have created a custom tag library to be used in an application running on Tomcat. As per the directions, in 'Web Development with JavaServer Pages' by Fields and Kolb, I have moved the JAR file containing the tag handlers in WEB-INF/lib directory. The deployment

About Tomcat

2000-08-10 Thread Lastname Firstname
Do you tell me what is "Tomcat". Thanks === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html

Re: JSP Tool

2000-08-10 Thread Sicaud Patrice
Forte Community Edition is free at http://www.sun.com/forte/ffj/ce/index.html -Original Message- From: Naresh Thawani [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 10, 2000 11:23 AM To: [EMAIL PROTECTED] Subject: Re: JSP Tool IBM's NetObjects ScriptBuilder is another tool but I

Re: Out of Office AutoReply: UML Tutorial Pointers

2000-08-10 Thread Khem Chand Sachdeva
Please somebody stop this everythime i do a post i get a lot of autoreplies. Sandra Min wrote: I am on holiday until 29 August. -- Sandra Min Equant Application Services Tel: +44 (0)1483 414411 Fax: +44 (0)1483 414122 email: [EMAIL PROTECTED] Web

JSP FAQ Resource Information

2000-08-10 Thread Anil K. Vijendran
This is a weekly informative posting to the jsp-interest list. Before asking questions of a general nature, please check out the resources available online to see if your question already has an answer. The best place to start