Re: Code Red

2003-06-11 Thread Tim Funk
Tomcat is unaffected by the code red virus. -Tim Reis, Tom wrote: Is there a update to Tomcat 4.03 to fix a problem with Code Red virus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: Code Red

2003-06-11 Thread Shapira, Yoav
Howdy, Last I checked tomcat wasn't vulnerable, but it's been a couple of years so my memory is fuzzy on this issue... Yoav Shapira Millennium ChemInformatics -Original Message- From: Reis, Tom [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 10:26 AM To: Tomcat Users List

RE: code snipit request: how to get time zone from user'sbrowser .

2003-01-21 Thread Raible, Matt
Since it's only a client-side variable - the only way I know of is to use Javascript and write a hidden field. http://www.google.com/search?hl=enie=UTF-8oe=UTF-8q=get+timezone+javascri pt -Original Message- From: Jason Pyeron [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21,

Re: code snipit request: how to get time zone from user's browser.

2003-01-21 Thread Jacob Kjome
Client locale's are sent by the browser. You could probably figure out the timezone based on the locale, to a certain degree. However, you might just have to ask the user to choose a timezone and then store that in the session or as a permanent cookie. Jake At 05:19 PM 1/21/2003 -0500,

RE: Code works in editor, but not through Tomcat - Please help!

2003-01-02 Thread Denise Mangano
I tried to echo print the value of the PostalCode after it has been picked up by the bean, by calling jsp:getProperty name=FormHandler property=PostalCode/. And I get an error message stating : org.apache.jasper.JasperException: Cannot find any information on property 'PostalCode' in a bean of

RE: Code works in editor, but not through Tomcat - Please help!

2003-01-02 Thread Denise Mangano
I tried to echo print the value of the PostalCode after it has been picked up by the bean, by calling jsp:getProperty name=FormHandler property=PostalCode/. And I get an error message stating : org.apache.jasper.JasperException: Cannot find any information on property 'PostalCode' in a bean of

RE: Code works in editor, but not through Tomcat - Please help!

2003-01-02 Thread Hamilton, Andrew
. Drew -Original Message- From: Denise Mangano [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 02, 2003 2:34 PM To: 'Tomcat Users List' Subject: RE: Code works in editor, but not through Tomcat - Please help! I tried to echo print the value of the PostalCode after it has been picked up

RE: Code works in editor, but not through Tomcat - Please help!

2003-01-02 Thread Denise Mangano
. Denise Mangano Help Desk Analyst Complus Data Innovations, Inc. -Original Message- From: Hamilton, Andrew [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 02, 2003 3:01 PM To: Tomcat Users List Subject: RE: Code works in editor, but not through Tomcat - Please help! Denise, I had

RE: Code works in editor, but not through Tomcat - Please help!

2003-01-02 Thread Denise Mangano
, January 02, 2003 3:54 PM To: Tomcat Users List Subject: RE: Code works in editor, but not through Tomcat - Please help! Denise, The first thing that immediately came to mind is to check your setters and form parameters for the appropriate case usage. Your PostalCode should be postalCode

RE: Code works in editor, but not through Tomcat - Please help!

2003-01-02 Thread Hamilton, Andrew
, 2003 4:37 PM To: 'Tomcat Users List' Subject: RE: Code works in editor, but not through Tomcat - Please help! That seemed to do it. I know of naming conventions when writing Java programs, but have never seen an instance that the naming convention was an absolute rule. Thanks for your help

RE: Code works in editor, but not through Tomcat - Please help!

2003-01-02 Thread Denise Mangano
, January 02, 2003 4:42 PM To: Tomcat Users List Subject: RE: Code works in editor, but not through Tomcat - Please help! I use NetBeans www.netbeans.org. It is a nice java IDE. It is open source so does have its issues. But it does a lot of stuff for you. You just have to take some time to get

Re: Code works in editor, but not through Tomcat - Please help!

2003-01-02 Thread Carl
] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Thursday, January 02, 2003 4:49 PM Subject: RE: Code works in editor, but not through Tomcat - Please help! Thanks Drew - I will definitely check it out because I am NOT happy with JBuilder at all. I would be lost without this list!! Thanks

RE: Code works in editor, but not through Tomcat - Please help!

2003-01-02 Thread Noel J. Bergman
Denise, When dealing with introspection and reflection, conventions become rules. :-) The code has to know how to map property names to methods. My pleasure to help. I know that area pretty well, having worked on the GNUJSP implementation of that code, and written a database layer that works

RE: Code works in editor, but not through Tomcat - Please help!

2003-01-02 Thread Turner, John
eclipse from IBM, also free, I believe. John -Original Message- From: Denise Mangano [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 02, 2003 4:49 PM To: 'Tomcat Users List' Subject: RE: Code works in editor, but not through Tomcat - Please help! Thanks Drew - I will definitely

Re: code separation with apache virtual hosts - tomcat hosts

2002-09-24 Thread Glenn Nielsen
There is a clear separation for the web applications themselves. There isn't when you allow the different virtual hosts to use the manager to deploy web applications. I would configure a different appBase for each Host, that way each host has a separate directory where their webapps are located

RE: Code Sample For -: running JSP with Javabeans

2002-05-17 Thread sbattul
Hi Vishal and Juan, I had the same problem Juan now has. My code worked when I included my class file in a Package and made no other changes. I changed : jsp:useBean id=ClassFileName scope=page class=ClassFileName to : jsp:useBean id=ClassFileName scope=page

RE: code!!

2002-02-21 Thread Dimmick, Bill
I'm not sure if it matters, but have you tried rewriting the code with the following: %@ page import = java.io.*, java.sql.* % in place of the page element defined below? I've never seen anyone split up imports into different statements. Also, as a side note, you don't need

RE: code!!

2002-02-21 Thread Justin Rowles
I'm not sure if it matters, but have you tried rewriting the code with the following: %@ page import = java.io.*, java.sql.* % in place of the page element defined below? I've never seen anyone split up imports into different statements. Those aren't different statements

RE: code!!

2002-02-21 Thread Dimmick, Bill
List Subject: RE: code!! I'm not sure if it matters, but have you tried rewriting the code with the following: %@ page import = java.io.*, java.sql.* % in place of the page element defined below? I've never seen anyone split up imports into different statements. Those

RE: code!!

2002-02-21 Thread Jeff Macomber
PROTECTED]] Sent: Thursday, February 21, 2002 11:38 AM To: 'Tomcat Users List' Subject: RE: code!! From fusterjj's code!!: %@ page import = java.io.* import = java.lang.* import = java.sql.* % These are three distinct import directives, not one import delimited by three newlines

RE: code!!

2002-02-21 Thread Justin Rowles
These are three distinct import directives, not one import delimited by three newlines. I apologise, I see what you mean - and said - three *imports* not three page directives. You are right about only import in a page directive, so I think your diagnosis was correct. I, on the other

RE: Code Red attack on Tomcat

2002-02-18 Thread Dimmick, Bill
I haven't had a Code Red attack crash my Tomcat server at home. However, my configuration may vary from yours. On what class of architecture and type of operating system does your Tomcat server run? Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: Code Red attack on Tomcat

2002-02-18 Thread Edward Elsics
Very unlikely that Code Red could affect Tomcat, although not inconceivable that a variant has hit your system. Are you running on Windows? Code Red requests are very common still, so the presence of them doesn't mean much. I would think you'd have to give very liberal CGI access to be

Re: Code request; Code to reveal a DB schema

2001-12-21 Thread August Detlefsen
What DB are you using? For Oracle, anyway: SELECT table_name FROM all_tables; SELECT trigger_name FROM all_triggers; SELECT view_name FROM all_views; ... -Will give you the lists of all tables, triggers, and views respectively in your DB. For the structure of each table, use: DESC

Re: Code request; Code to reveal a DB schema

2001-12-19 Thread Jim Cheesman
At 06:04 AM 19/12/01, you wrote: I'm looking for some dynamic code that will reveal all libraries, files, fields in a DB Does anyone have an example or can you point me in the right direction? java.sql.DatabaseMetaData is your friend! -- * Jim Cheesman *

RE: Code request; Code to reveal a DB schema

2001-12-19 Thread Justin Rowles
I'm looking for some dynamic code that will reveal all libraries, files, fields in a DB Does anyone have an example or can you point me in the right direction? *Totally* DB specific. For Oracle try searching http://technet.oracle.com; for anything else try asking on a database list? ;-)

RE: Code request; Code to reveal a DB schema

2001-12-19 Thread Justin Rowles
I'm looking for some dynamic code that will reveal all libraries, files, fields in a DB Does anyone have an example or can you point me in the right direction? java.sql.DatabaseMetaData is your friend! Wow! I didn't know that, ta! Apols for the previous wrong answer then. J. --

Re: Code request; Code to reveal a DB schema

2001-12-19 Thread James Chuang
Betreff: Re: Code request; Code to reveal a DB schema At 06:04 AM 19/12/01, you wrote: I'm looking for some dynamic code that will reveal all libraries, files, fields in a DB Does anyone have an example or can you point me in the right direction? java.sql.DatabaseMetaData is your friend

Re: Code request; Code to reveal a DB schema

2001-12-19 Thread Igor Fedulov
*Totally* DB specific. For Oracle try searching http://technet.oracle.com; for anything else try asking on a database list? ;-) For code examples I would poke around Netbeans code they have some cool functionality in Runtime tab of the explorer, i.e. database browser of some kind. Try to

Re: Code Red Worm virus

2001-08-03 Thread Endre Stølsvik
On Thu, 2 Aug 2001, David Domenico wrote: | I am running Tomcat 3.2.1 standalone for development purposes, as a web | server using port 80. Yesterday I noticed the message, see below, on my | Tomcat console window. This is identified as the Code Red virus as noted | in the

RE: Code question?

2001-07-12 Thread smeric
Title: RE: Code question? try this to find out the property to read from System.getProperties() then System.getProperty(the.property.found) Hope this could help -Original Message- From: Robert Upshall [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 12, 2001 1:45 PM To: [EMAIL

Re: Code Q.

2001-04-19 Thread Sam Newman
You kight want to get some decent example code,then edit that to get you started. If you have either of the O'Reilly books (servlet programming or JSP) then download thier example code. The JSP code certainly works just by unpacking under tomcat. You can then just edit/view thier simple examples

RE: Code Q.

2001-04-19 Thread Tim Coultas
Scott - One thing that the Core Servlets book doesn't do well is explain Java basics, like what does extends mean or how do method/class declarations work. It assumes that knowledge. I found Sams "Teach Yourself Java in 21 Days" really helpful; it contains a lot of basic java information that

RE: Code Q.

2001-04-19 Thread Craig O'Brien
PROTECTED] Subject: RE: Code Q. Scott - One thing that the Core Servlets book doesn't do well is explain Java basics, like what does extends mean or how do method/class declarations work. It assumes that knowledge. I found Sams "Teach Yourself Java in 21 Days" really helpful; it con

Re: Code Q.

2001-04-18 Thread eric chacon
Scott, You're asking some straight-forward Java questions that might be better addressed in one of the news groups (comp.lang.java, for example)--if you're not familiar with newsgroups check out www.deja.com (currently held hostage by google, but hopefully working soon). In the code, you're