Re: Off topic: Email bounce handler code?

2006-02-11 Thread Kenevel
David Wall wrote: Does anybody know of any good Java/servlet code that handles email bounce processing? When our automated systems send an email that bounces (lots of hotmail bounce if the user has an account but just hasn't logged in the past 30 days), we'd like a somewhat reliable

Re: A question about log rotation

2006-02-11 Thread Rhino
I had a similar issue on a Mandrake system running tomcat 4.1.24 a couple of years back. I resolved it eventually and wrote a bit of documentation for myself and the Linux sysadmin for our system. It was not intended for use by anyone but us so it may not explain things sufficiently clearly but

java.lang.Object cannot be resolved

2006-02-11 Thread Sebastian Funk
Hi, I wrote some servlets a few weeks ago and didn't change them. On the server itself I update serveral things. Now, when I try compile the source-code, I get that error: 1. ERROR in Familie.java (at line 1) import java.lang.Object; ^ The type

Robots cannot read JSP?

2006-02-11 Thread Scott Purcell
Tim, Thanks a lot for the info. I got to thinking, and tried invoking curl from my box on the url, and see exactly what you saw. The js screwing things up. So I decided to run curl on different pages, and I came to the conclusion that only htm, or html pages show up via curl? Does anyone think

RE: Robots cannot read JSP?

2006-02-11 Thread Tim Lucia
It's not html or JSP nature of things. You are returning text/html for the mime type, and a real HTML document. The problem is the content you return does not provide the robots any place to go. Perhaps responding with a redirect (302) will provide them somewhere to go. You can use

configure tomcat 5.x to see index without redirects?

2006-02-11 Thread Scott Purcell
I have created a site http://www.theuniquepear.com using struts over the past couple of months. I am running Tomcat 5x and Struts 1.2x. If you read below, I am doing a couple of redirects to get the user to my real site. I would like to know if I can configure Tomcat to just go to that site? Or

Re: Robots cannot read JSP?

2006-02-11 Thread David Smith
I doubt the problem is with curl not being able to read files other than .htm or .html. The problem is only browsers execute javascript. Think of curl or the search engines as a browser without javascript enabled. What would you get in IE or Firefox if you disabled javascript? -- David

instructions on installing 5.5.7 compatibility package

2006-02-11 Thread Martin Gainty
Hello Everyone Does anyone know where the instructions for installing tc 5.5.7 compatibility package are? Thanks, M-

Re: Robots cannot read JSP?

2006-02-11 Thread Mike Sabroff
Scott, Your assessment is incorrect! First off, curl doesn't read html pages, it does a get or post to a url just as though you clicked it in your browser (and a lot of other things you can do with curl). Second off, it is not the jsp that is the problem, it is the javascript as Tim said,

False Alarm

2006-02-11 Thread Martin Gainty
acquire the J2SE1.42 compat apckage from http://tomcat.apache.org/download-55.cgi This one works The other mirrors have a bad copy Thanks, Martin- - Original Message - From: Martin Gainty To: 'Tomcat Users List' Sent: Saturday, February 11, 2006 10:57 AM Subject: instructions

RE: Access log to see where robots go.

2006-02-11 Thread Ed Bicker
Hello Scott, I have had similar problem. Can you let me know if this is resolved on your end. Sometimes the email response coming back to me gets buried in another folder and I never get to see the resolutions. I can't seem to get search engines to see my site, as well. I do not know how to

Re: Access log to see where robots go.

2006-02-11 Thread Mark Hagger
robots.txt is a standard file that search engines should request before trying to index your site. Its allows you to block the indexer completely, or partially from your site. Try a google search for robots.txt for more details. Not having one is the same as saying feel free to index my

RE: java.lang.Object cannot be resolved

2006-02-11 Thread Caldarale, Charles R
From: Sebastian Funk [mailto:[EMAIL PROTECTED] Subject: java.lang.Object cannot be resolved import java.lang.Object; The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files Don't know why you're suddenly getting this

Re: java.lang.Object cannot be resolved

2006-02-11 Thread Sebastian Funk
On Feb 11, 2006, at 6:30 PM, Caldarale, Charles R wrote: From: Sebastian Funk [mailto:[EMAIL PROTECTED] Subject: java.lang.Object cannot be resolved import java.lang.Object; The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class

RE: java.lang.Object cannot be resolved

2006-02-11 Thread Caldarale, Charles R
From: Sebastian Funk [mailto:[EMAIL PROTECTED] Subject: Re: java.lang.Object cannot be resolved The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files This would imply that javac (or whatever compiler is being used) cannot find rt.jar,

Re: java.lang.Object cannot be resolved

2006-02-11 Thread Len Popp
On 2/11/06, Sebastian Funk [EMAIL PROTECTED] wrote: On Feb 11, 2006, at 6:30 PM, Caldarale, Charles R wrote: From: Sebastian Funk [mailto:[EMAIL PROTECTED] Subject: java.lang.Object cannot be resolved import java.lang.Object; The type java.lang.Object cannot be

Re: java.lang.Object cannot be resolved

2006-02-11 Thread David Smith
Looks like the kind of weirdness that makes me think the JVM has become unstable. Have you tried to restart Tomcat? -- David Sebastian Funk wrote: On Feb 11, 2006, at 6:30 PM, Caldarale, Charles R wrote: From: Sebastian Funk [mailto:[EMAIL PROTECTED] Subject: java.lang.Object cannot be

Re: UserTransaction, JOTM and Tomcat 5.5.x

2006-02-11 Thread Matt Raible
Just to follow up on this, the settings below work - but HSQLDB doesn't seem to support nested transactions. beginning the transaction DBTest javax.transaction.NotSupportedException: Nested transactions not suppo rted at org.objectweb.jotm.Current.begin(Current.java:233) at

Re: UserTransaction, JOTM and Tomcat 5.5.x

2006-02-11 Thread Remy Maucherat
On 2/11/06, Matt Raible [EMAIL PROTECTED] wrote: Just to follow up on this, the settings below work - but HSQLDB doesn't seem to support nested transactions. beginning the transaction DBTest javax.transaction.NotSupportedException: Nested transactions not suppo rted at

Re: java.lang.Object cannot be resolved

2006-02-11 Thread Martin Gainty
Lets start with the easy stuff is $JAVA_HOME\lib\rt.jar on your $CLASSPATH ??? Martin- - Original Message - From: David Smith [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Saturday, February 11, 2006 1:56 PM Subject: Re: java.lang.Object cannot be resolved

Re: java.lang.Object cannot be resolved

2006-02-11 Thread Sebastian Funk
Hi, I never set $CLASSPATH, but when I call rt.jar via javac -cp .../ rt.jar Servlet.java, it works fine. Should I set $CLASSPATH or is that enough? On Feb 11, 2006, at 9:49 PM, Martin Gainty wrote: Lets start with the easy stuff is $JAVA_HOME\lib\rt.jar on your $CLASSPATH ??? Martin-

RE: [OT] java.lang.Object cannot be resolved

2006-02-11 Thread Caldarale, Charles R
From: Martin Gainty [mailto:[EMAIL PROTECTED] Subject: Re: java.lang.Object cannot be resolved Lets start with the easy stuff is $JAVA_HOME\lib\rt.jar on your $CLASSPATH ??? The rt.jar should NOT be on CLASSPATH. CLASSPATH refers to the location of application classes, not ones provided

RE: [OT] java.lang.Object cannot be resolved

2006-02-11 Thread Caldarale, Charles R
From: Sebastian Funk [mailto:[EMAIL PROTECTED] Subject: Re: java.lang.Object cannot be resolved I never set $CLASSPATH, but when I call rt.jar via javac -cp .../ rt.jar Servlet.java, it works fine. Should I set $CLASSPATH or is that enough? No, you don't want to put rt.jar on the -cp

Re: java.lang.Object cannot be resolved

2006-02-11 Thread Martin Gainty
Good Afternoon Sebastian- *usually* the JDK/JRE install is supposed to do that for you But as I found this past week (even webapps that cost alot of money) installs sometimes dont always do the complete task I would re-install the JDK/JRE and let the install configure your initial CLASSPATH for