Re: How to call a servlet in an htm page ?

2000-05-31 Thread Russell, Richard (DEH)
Aiyah! you call a servlet (or a jsp page) using http. All jsp and servlets do is gernerate HTML pages. You call them with a URL... JSP and Servlets do equivalent jobs -- they are like Win NT and Win 98 ... you don't need both, you just choose the right one for the job. They each do some things

Re: jsp or java is better?

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

Re: FAQ?

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

Re: Suggestion

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

Re: SWING FWATURES IN JSP

2000-05-19 Thread Russell, Richard (DEH)
not possible. Think about it. JSPs serve up HTML. Have you tried putting a JTree in a HTML page without an applet? Kinda hard, eh? JTree is a Java class that runs on the client and displays on the client's display. Therefore, it needs to run on the client's box, and the only two ways to do this

Re: SWING FWATURES IN JSP

2000-05-19 Thread Russell, Richard (DEH)
FWATURES IN JSP Hi Richard, yeah...i forgot about it.. so can u suggest me how to build a Tree in a JSP without using applet?? thanx in advance br marco -Original Message- From: EXT Russell, Richard (DEH) [mailto:[EMAIL PROTECTED]] Sent: 19. May 2000 9:53

Re: JSP Servlet

2000-05-18 Thread Russell, Richard (DEH)
Along similar lines... Is it possible to precompile JSP pages into servlets, and then just use them as servelets? IE: use JSP as a code-generation tool for servlets... This would avoid the first time delay, and enable one to use a Web server than didn't handle JSPs (but did handle servlets). It

Re: Calling a long procedure through JSP

2000-05-18 Thread Russell, Richard (DEH)
depends how long the procedure is taking... you cold have it create a thread to run the procedure, and immediately return a placeholder HTML page that reloads (from the browser) every 30 seconds to see if the procedure ha finished yet or not... Just an idea -- I'm sure there's a better one out

Re: SWING FWATURES IN JSP

2000-05-18 Thread Russell, Richard (DEH)
JSP generates HTML pages, you can embed Java (with Swing) in HTML pages, hence, you can generate a HTML page that embeds a Java applet that contains Swing components. Obviously, you won't be directly mixing the JSP with the HTML, but that would be pointless anyway (Swing is a client-side

Re: A GOOD DEVELOPMENT ENVIRONMENT

2000-05-17 Thread Russell, Richard (DEH)
emacs. rr -Original Message- From: Lamport, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 17, 2000 11:59 PM To: [EMAIL PROTECTED] Subject: A GOOD DEVELOPMENT ENVIRONMENT Hi, I'm looking for a good IDE Dev tool to develop JSP and EJB Applications, so far I've seen

Re: Clarification

2000-05-17 Thread Russell, Richard (DEH)
from my understanding, WAR files are self extracting. once you put the war file in the appropriate directory and it is called by the client it will extract the files and create the appropriate directory. I'm no guru, but I think you are wrong (probably wrong more in you choice of word than

Re: HTML editor

2000-05-16 Thread Russell, Richard (DEH)
emacs mainly, and vi (or rather, vim) on occasions... rr -Original Message- From: Claire Ryan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 16, 2000 11:04 PM To: [EMAIL PROTECTED] Subject: HTML editor Hello all, Could anyone recommend what html editor is the most sutiable to

Re: Need Book on JSP

2000-05-11 Thread Russell, Richard (DEH)
And maybe learning JSP requires learning Java first? That would DEFINITELY be a good start... JSP is pretty much HTML with embedded server-side Java... rr === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff

Re: Rookie Starter Question

2000-05-11 Thread Russell, Richard (DEH)
Try the Java Tutorial at java.sun.com/docs/books/tutorial It will help to learn a little Java before attempting JSP... rr -Original Message- From: Purcell, Scott [mailto:[EMAIL PROTECTED]] Sent: Friday, May 12, 2000 2:51 AM To: [EMAIL PROTECTED] Subject: Rookie Starter Question