Re: Simple Howto: Follow up

2007-12-20 Thread Mary Joseph
Cuco, Following Abel's hints would help you with the $JAVA_HOME issue. Export is also a good option but it works only for that particular terminal in which you export. Whenever you open a new terminal, you would need to export again. >>> cuco2772 <[EMAIL PROTECTED]> 12/21/07 3:40 AM >>> Ma

[Announce] Enhanced ISAPI Redirector + Tomcat Connector Binaries

2007-12-20 Thread Tim Whittington
Hi all We've been using Tomcat and Tomcat Connectors in our company products for almost 10 years now, and it's a very important part of our technology stack. Over those years we've contributed some enhancements and fixes to the IIS connector/ISAPI Redirector, and most of these have been accepted

Re: Simple Howto: Follow up

2007-12-20 Thread Alan Chaney
The path separator character in linux is : not ; which is why you couldn't find any standard utilities. In linux the ; is a *command* separator character eg [EMAIL PROTECTED]:~$ cd somedir ; ls excutes the cd and then the ls Also, it is much better practice to go PATH=$PATH:$JAVA_HOME - your

Re: Simple Howto: Follow up

2007-12-20 Thread cuco2772
Mary, When I did something similar to this PATH=$JAVA_HOME/bin;$PATH, editing my my .bashrc file for my root account and my username account (ubuntu feisty) the bash shell couldn't find basic programs such as ls or vim. The only thing that saved this from being a real nightmare was that I had mul

Re: Where to store classpath resources outside of WAR

2007-12-20 Thread lightbulb432
Similar to how you can specify an mycontext.xml in conf/Catalina/localhost to specify the context without having to modify prepackaged WAR files, can you so something like place files in context-specific folders (i.e. conf/Catalina/localhost/mycontext/resource1.properties) that would be accessible

Re: Is compress working? No Content-Encoding header

2007-12-20 Thread Martin Gainty
John- did your browser request Accept-Encoding: * ? http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html get fiddler for determining values of HTTP Headers http://www.fiddlertool.com/fiddler/ If possible can you publish the service to the outside world so we can see this malady is specific to

RE: Tomcat 6.0 - org.apache.tomcat.jni.Registry

2007-12-20 Thread Sreedhar Tatavarthi
I am looking at the following method : open(int root, java.lang.String name, int sam, long pool) I understand root & name parameters. (i.e Registry.HKEY_LOCAL_MACHINE & \SOFTWARE\\Microsoft) What are some valid values for int sam & long pool?? (3rd and 4th parameters). I actually need to enum

Re: Tomcat 6.0 - org.apache.tomcat.jni.Registry

2007-12-20 Thread Martin Gainty
A class to look into windows registry http://jsourcery.com/api/apache/jakarta/tomcat/6.0.10/org/apache/tomcat/jni/ Registry.html Are you looking for anything specific? M-- - Original Message - From: "Sreedhar Tatavarthi" <[EMAIL PROTECTED]> To: Sent: Thursday, December 20, 2007 2:26 PM Su

Re: Webdav Infinite Depth

2007-12-20 Thread Mark Thomas
[EMAIL PROTECTED] wrote: > Is there any parameter (I could not find one in the source of WebdavServlet > :-/ ) or possibility to change this? You can just remove the check and compile your own webdav servlet. Mark - To start a

Re: Is compress working? No Content-Encoding header

2007-12-20 Thread John Caron
It seems bizarre, but it appears that the "Accept-Encoding" header is being lost somewhere on route from my home computer. running this test on my work computer works fine. sorry for the noise. Caldarale, Charles R wrote: >> From: John Caron [mailto:[EMAIL PROTECTED] >> Subject: Is compress worki

Re: Help with java Lists - followup

2007-12-20 Thread David kerber
Steve Ochani wrote: On 20 Dec 2007 at 13:01, David kerber wrote: Thanks for all the suggestions! Thanks to you guys and gals, a report that had been taking 4 to 5 minutes to process is now taking less than 10 seconds to generate! Hi, What was the basic overall solution you ended

Re: Help with java Lists - followup

2007-12-20 Thread Steve Ochani
On 20 Dec 2007 at 13:01, David kerber wrote: > Thanks for all the suggestions! Thanks to you guys and gals, a > report > that had been taking 4 to 5 minutes to process is now taking less > than > 10 seconds to generate! > Hi, What was the basic overall solution you ended up with? -Steve O.

Tomcat 6.0 - org.apache.tomcat.jni.Registry

2007-12-20 Thread Sreedhar Tatavarthi
Can some one shed some light on how to use the org.apache.tomcat.jni.Registry class? A sample code will be very helpful. Especially on how to open & enumerate, there is not much documentation on what each parameter means for the open method. Thanks Sreedhar -

Re: error number 500

2007-12-20 Thread Joly M
well, all packages are already mapped. I have even used classes without any package and I still get the same error message... cheers 2007/12/16, Martin Gainty <[EMAIL PROTECTED]>: > > Hello Dave Developer > in your jsp adjust your class to the package.className as with > type="cal.JspCalendar

Re: Help with java Lists - followup

2007-12-20 Thread David kerber
Thanks for all the suggestions! Thanks to you guys and gals, a report that had been taking 4 to 5 minutes to process is now taking less than 10 seconds to generate! D David kerber wrote: I'm running this app in a tomcat 5.5.x container,I am trying to figure out which form of a list is the b

Tagging mod_jk 1.2.26

2007-12-20 Thread Rainer Jung
I'm planning to tag JK 1.2.26 tomorrow, Friday, after 2 p.m. There was one problem report. I think we fixed this and I expect, that we get some feedback before that time. In case there are more problem reports outstanding please let me know. Regards, Rainer -

RE: Clsutering problem

2007-12-20 Thread Petteri Heinonen
Hi, server.xml is rather long, and I'm not sure if attachments are allowed to be used in lists like this. But here is the part related to clustering configuration (it is identical in both nodes): Also this is configured

Re: ActionErrors.validate()

2007-12-20 Thread David Smith
Additionally when posting to the struts list, definitely mention what version you are working with. A cursory look at the struts website shows version 1.3.x is significantly different from version 2.0.x. I will say the class you are trying to extend should probably be ActionForm if using Stru

Re: Clsutering problem

2007-12-20 Thread Giancarlo Frison
Hi, Could you add server.xml and context.xml please? Bye Giancarlo Frison Petteri Heinonen ha scritto: > Hello all. I'm trying to setup my first Tomcat cluster here. After some > tuning I have reached the point where I think that cluster is formed > fine upon startup, and sessions are also replic

Webdav Infinite Depth

2007-12-20 Thread rj
Hi, [Tomcat 5.5 with standard WebdavServlet] I am currently developing a tool which synchronizes files via webdav. I wanted to get a full directory tree via webdav-request by setting "depth: infinity" in my http-request. I only get 3 levels of directories back. When looking at the source code f

Re: ActionErrors.validate()

2007-12-20 Thread Pid
AbelMacAdam wrote: > Hi all, > > I just started reading a book about Struts, and are now learning about Error > Handling. To validate the input of the user in the forum, you need to write > your own implementation of org.apache.struts.action.ActionErrors. The class > ActionErrors has its own metho

Clsutering problem

2007-12-20 Thread Petteri Heinonen
Hello all. I'm trying to setup my first Tomcat cluster here. After some tuning I have reached the point where I think that cluster is formed fine upon startup, and sessions are also replicated as expected. My test scenario is the simplest possible: 1) Send first request of the session to node 1 (n

Re: JSP to HTML

2007-12-20 Thread Luo Yong
On Dec 19, 2007 12:43 AM, Hassan Schroeder <[EMAIL PROTECTED]> wrote: > On Dec 18, 2007 8:27 AM, Luo Yong <[EMAIL PROTECTED]> wrote: > > In fact, I'm implementing a new web development framework. JSP tag > > must not be supported in the framework and the web page cannot contain > > any java code. s

Re: Quality check mod_jk 1.2.26-dev

2007-12-20 Thread Rainer Jung
The download files on people.apache.org for IIS have been updated. Rainer Jung wrote: Hi Travis, I think we found the problem. I already committed a fix and Mladen or I will provide a new isapi_redirector build soon. The problem is only IIS specific and it only shows up, when using vhost mo

Re: Quality check mod_jk 1.2.26-dev

2007-12-20 Thread Rainer Jung
Hi Travis, I think we found the problem. I already committed a fix and Mladen or I will provide a new isapi_redirector build soon. The problem is only IIS specific and it only shows up, when using vhost mounts. We rearranged this part slightly, because up to 1.2.25 there was a logic incons

ActionErrors.validate()

2007-12-20 Thread AbelMacAdam
Hi all, I just started reading a book about Struts, and are now learning about Error Handling. To validate the input of the user in the forum, you need to write your own implementation of org.apache.struts.action.ActionErrors. The class ActionErrors has its own method validate. This method I can