Re: OpenVMS Java exports

2002-02-07 Thread John Vanderbrook
Add JDK_HOME/lib/tools.jar to your classpath, where JDK_HOME is the base/home directory of your JDK. Take care, John-Original Message- From: Eunum Listener <[EMAIL PROTECTED]>Date: Fri, 8 Feb 2002 04:31:06 + To: [EMAIL PROTECTED] Subject: OpenVMS Java exports > > > > > > > > Hi,> > Cou

OpenVMS Java exports

2002-02-07 Thread Eunum Listener
Hi, Could someone that has had experience installing the CSWS (Compaq Secure WebServer) based on Apache. and CSWS_JAVA (Tomcat and Jserv and ANT). please e-mail me. I am having problems running user apps that wish to connect to a database and Would live some assistance. My error is and it seem

OpenVMS Java exports

2002-02-07 Thread [Mark Stray]
Hi, Could someone that has had experience installing the CSWS (Compaq Secure WebServer) based on Apache. and CSWS_JAVA (Tomcat and Jserv and ANT). please e-mail me. I am having problems running user apps that wish to connect to a database and Would live some assistance. My error is and it seems

Re: urgent help please - error connecting to the db

2002-02-07 Thread breddy
just check your file name how u saved it as. - Original Message - From: "Shahata, Ashraf" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 08, 2002 12:03 AM Subject: urgent help please - error connecting to the db > I have the following code, which is quite simple and

What's the best way to access my resources ???

2002-02-07 Thread Tony Keshikku
Hi there, I'm currently working on JSP, one of my JSPs get POP3 username and password from my resources(let's say username and password of POP3 is in the file /home/user1/pop3.properties) and use those info to retrieve emails from the POP3... Why I put information of POP3 in properties file is o

Re: Java bean based tree control - collapsable and expandable

2002-02-07 Thread John Vanderbrook
This is really cool... has anybody else of you guys tried this stuff? John -Original Message- From: Borislav Iordanov <[EMAIL PROTECTED]> Date: Thu, 7 Feb 2002 10:40:13 -0800 To: [EMAIL PROTECTED] Subject: Re: Java bean based tree control - collapsable and expandable > The

Re: Sort of OT: Getting data from database to JavaBeans

2002-02-07 Thread Anton Tagunov
Hello Gerry! Not an expert, just my two-penny! I'm a beginner with EJB too! GS> Some topics I have run across while surfing and my thoughts. GS> ** Enterprise Java Beans - no in-house knowledge, so we would be learning GS> from the ground up. Do we need a server? Yup! Here I'm going to write s

Re: Graphic reporting tools for Java/JSP

2002-02-07 Thread M. Simms
http://big.faceless.org/products/pricing.jsp Most packages are $1000 and upthis one is cheap$275 !!! > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Brad Rhoads > Sent: Thursday, February 07

Re: Its very urgent: How can I encrypt a mail using JavaMail!!!!!!

2002-02-07 Thread horwat
You should direct your question to the JavaMail interest list. Better yet, search that interest list's archives and I'm sure your question has already been answered. http://archives.java.sun.com/javamail-interest.html Justy < jsp-interest list moderator > - Original Message - From: "Lor

Re: Its very urgent: How can I encrypt a mail using JavaMail!!!! !!

2002-02-07 Thread Naveen Sharma
Use the JCE (Java Cryptographic Extension), available from Sun (). Remember that after encryption, you will get binary output, so don't forget to base64 encode, otherwise X.25 mailing systems may corrupt the mailed data. I think there are some export restrictions

Its very urgent: How can I encrypt a mail using JavaMail!!!!!!

2002-02-07 Thread Lorena Carlo
Hello, How can I encrypt a mail using JavaMail, help me please thanks in advance Lorena Carlo === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body:

Re: Offtopic: How to gets all local machine IP addresses ?

2002-02-07 Thread horwat
I don't mean to single anyone out but this has gone on for far too long. This topic has nothing to do with JSP or related technologies. Please take the discussion off the list. Thanks! Justy < jsp-interest list moderator >

Re: Catching a 500 error

2002-02-07 Thread horwat
In Tomcat 4.0 you can display specific error pages based on error codes as well as exceptions. You would specify your configuration in the server's web.xml file. Here is an example from the Tomcat 4.0 tester application: 412 /ErrorPage02 org.apache.tester.TesterException

Re: Sort of OT: Getting data from database to JavaBeans

2002-02-07 Thread Joe Cheng
>> The run-time performance of this class is fine, but with multiple developers everyone want to access this file at the same time. :( << If this is the only reason you're abandoning the one-class approach, perhaps you should consider a source control system that will let multiple developers easi

Re: Sort of OT: Getting data from database to JavaBeans

2002-02-07 Thread Hans Bergsten
Gerry Scheetz wrote: > My team is in the process of building a web application. Currently the > Controller Servlet calls the appropriate Action Class. This Action Class > does what ever is necessary (update data, query, validate, etc.) and stores > the information that needs to be displayed in

Re: Graphic reporting tools for Java/JSP

2002-02-07 Thread Brad Rhoads
I just ran across this: http://www.jinfonet.com/index.htm -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Bommakanti, Vamsee Sent: Thursday, February 07, 2002 11:09 AM To: [EMAIL PROTECTED] Subject: Re: Gra

Re: Offtopic: How to gets all local machine IP addresses ?

2002-02-07 Thread Miao, Franco CAWS:EX
This question kind of system admin question, just wondering why you guys don't consider use some handy resource kit application for NT/2K or Unix. Put them in a batch file or script? Franco -Original Message- From: Richard Yee [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 20

Re: Offtopic: How to gets all local machine IP addresses ?

2002-02-07 Thread Richard Yee
Sufi, To improve the performance, try some of the following approaches: 1) Use multiple threads so your program can test several ip addresses at the same time. 2) refactor your code inside the loop and improve its performance 3) Have your program output to a file so it can run at night. 4) Use mul

Re: Java bean based tree control - collapsable and expandable

2002-02-07 Thread Borislav Iordanov
There is a WEB GUI component (a web control) called TreeView in TICL - check it out at http://www.kobrix.com. Same component behaves both like a server-side bean (populate through custom tags or by specifying a javax.swing.tree.TreeModel object) or it generates a DHTML version expandable/collapsab

Sort of OT: Getting data from database to JavaBeans

2002-02-07 Thread Gerry Scheetz
My team is in the process of building a web application. Currently the Controller Servlet calls the appropriate Action Class. This Action Class does what ever is necessary (update data, query, validate, etc.) and stores the information that needs to be displayed in JavaBeans. When completed the

urgent help please - error connecting to the db

2002-02-07 Thread Shahata, Ashraf
I have the following code, which is quite simple and used to connect to the db, but I keep getting the error: Exception in thread "main" java.lang.NoClassDefFoundError: connect (wrong name: Connect) I'm trying to connect to mySQL using the mm.mysql-2.0.4-bin.jar jdbc driver, which I placed in the

Re: Java bean based tree control - collapsable and expandable

2002-02-07 Thread Parmar, Deepak
http://www.coolservlets.com/CSTreeBean/ -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of JOSHY MON M C Sent: Thursday, February 07, 2002 9:19 AM To: [EMAIL PROTECTED] Subject: Java bean based tree control -

Re: Java bean based tree control - collapsable and expandable

2002-02-07 Thread John Vanderbrook
Hi, You can perhaps use the Swing tree control (JTree) if you want to have an applet. Also, there are plenty of JS implementations of a tree some of them faster, some slower. How big is the no of your nodes? John -Original Message- From: JOSHY MON M C <[EMAIL PROTECTED]> Date:

Re: JSP-INTEREST Digest - 5 Feb 2002 to 6 Feb 2002 (#2002-37)

2002-02-07 Thread Anton Tagunov
AT>Now I need cyrillics in the javascrpts. I have carried out tests and AT>here's the result, attached. What a pity, it has stripped out the attach! Okay, the HTML goes inline: