Search the web
Sign In
New User? Sign Up
jetty-discuss · Jetty Discussion
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1954 - 1984 of 8501   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1954
Juanco, Can you give a 100 word or less summary of what velicity resource loaders are? ... -- Greg Wilkins<gregw@...> GB Phone:...
Greg Wilkins
gregw@...
Send Email
Oct 1, 2001
9:50 pm
1955
Cheers, Marc, I look forward to these solving all my problems !!! Jules marc fleury wrote: > Julian/greg, > > the scoped class loaders of Jboss will solve...
Julian Gosnell
jules_gosnell@...
Send Email
Oct 1, 2001
10:08 pm
1956
... Geeze!!! I start actually testing/fixing win32 problems and I still stuff up! thanks for the catch. cheers -- Greg Wilkins<gregw@...> GB...
Greg Wilkins
gregw@...
Send Email
Oct 1, 2001
10:09 pm
1957
Which classes are not being found - they wouldn't be involved in parsing XML would they ? Jules Juancarlo Anez wrote: > I'm trying to use Jakarta Velocity...
Julian Gosnell
jules_gosnell@...
Send Email
Oct 1, 2001
10:11 pm
1958
Greg, ... Velocity is an engine that transforms templates with embedded commands in a script language. It's very much like JSP. The resource loaders are...
Juancarlo Anez
juanca-l@...
Send Email
Oct 1, 2001
10:22 pm
1959
... OK - so assuming the resouce loader classes are in the velocity jar which is in the webapps lib and that other things have been loaded from that jar - then...
Greg Wilkins
gregw@...
Send Email
Oct 1, 2001
10:50 pm
1960
Marc, firstly I'm just going to express some concern about any class loader tha does not defer to the parent classloader, as the spec says: "When called upon...
Greg Wilkins
gregw@...
Send Email
Oct 2, 2001
12:03 am
1961
Greg, ... Indeed. The debugger says that in their ResourceLoaderFactory, getClass().getClassLoader() returns the default (Sun) system class loader. ... I did...
Juancarlo Anez
juanca-l@...
Send Email
Oct 2, 2001
12:26 am
1962
... Ouch - sounds suspect to me! ... Hope I'm not telling you to suck eggs here - but better be safe than sorry... Make sure that when they are in the system...
Greg Wilkins
gregw@...
Send Email
Oct 2, 2001
12:52 am
1964
I applaud the effort to address the service issue with a Delphi program and I have a few comments. 1. I agree we need a clean shutdown before it gets added to...
j_t_bell@...
Send Email
Oct 2, 2001
9:46 pm
1965
Just to jump in here... Make sure you use Tomcat 3.x.x (e.g; 3.2.3) to compare and not 4.x. The class loaders and rules for class loaders have changed in the ...
j_t_bell@...
Send Email
Oct 2, 2001
9:50 pm
1966
Yes this bug had been noted. I have now fixed this and have attached the patched ServletHandler (source is in CVS). It will of course be in the next nightly...
Greg Wilkins
gregw@...
Send Email
Oct 2, 2001
11:26 pm
1967
One more necessary feature is rotated logs for service itself and for the output of the jetty to the stdout and the stderr. Otherwise we should restart service...
Vitlay Lipovetsky
vit@...
Send Email
Oct 3, 2001
6:54 am
1968
I'd like someone who knows more about Jetty and these requirements than I do to try to provide an assessment of JavaService, the generic service runner that...
Ed Nixon
ed.nixon@...
Send Email
Oct 3, 2001
12:06 pm
1969
I see no problem with using JavaService.exe (http://www.alexandriasc.com/software/JavaService/documentation.html) to use Jetty as a Windows Service. It seems...
j_t_bell@...
Send Email
Oct 3, 2001
1:13 pm
1970
http://www.onjava.com/pub/a/onjava/2001/09/18/jboss.html Visit our website at http://www.ubswarburg.com This message contains confidential information and is...
Julian.Gosnell@...
Send Email
Oct 3, 2001
1:31 pm
1971
I have just run some simple tests and JavaService does successfully install and execute Jetty as a service. There are some issues that I have not had time to...
j_t_bell@...
Send Email
Oct 3, 2001
9:30 pm
1972
Do we need these hanging around - my /tmp is full of them.... Perhaps we could remove them in the Jetty shutdown sequence ? Jules ...
Julian Gosnell
jules_gosnell@...
Send Email
Oct 3, 2001
9:37 pm
1973
There is an existing class in org.mortbay.jetty.win32.Service that was used with the existing jettysvc.exe: are the methods compatible with JavaService?...
Stephen Stevens
stephenstevens@...
Send Email
Oct 3, 2001
9:45 pm
1974
Well they are removed in a normal shutdown sequence. They are temp files marked as delete on exit. They should get deleted when you exit normally - Even...
Greg Wilkins
gregw@...
Send Email
Oct 3, 2001
9:46 pm
1975
... Greg-- Just curious, how do you catch that? Can you catch any/all signals? (ie, SIGHUP on unix?) -bob...
bob mcwhirter
bob@...
Send Email
Oct 3, 2001
10:20 pm
1976
Hmmmmm........ :-) I guess I'll have to look into that - maybe JBoss is stealing the ^C from Jetty. Does Jetty do it as e.g. the Context they belong to is...
Julian Gosnell
jules_gosnell@...
Send Email
Oct 3, 2001
10:21 pm
1977
Thanks in advance...
Leigh Wanstead
leigh@...
Send Email
Oct 3, 2001
10:32 pm
1978
There has been a bit of traffic about Jetty and Cocoon recently. Unfortunately, it deals with JettyRC9 and CocoonB2. The instructions that were posted don't...
Ed Nixon
ed.nixon@...
Send Email
Oct 4, 2001
12:50 am
1979
It is in the Jetty3Extra package. You can also get it from CVS on the sourceforge site: ...
Greg Wilkins
gregw@...
Send Email
Oct 4, 2001
2:06 am
1980
I do it in o.m.j.Server main I know that jboss catches the ctrl-C, it may be that jetty is not being shutdown properly?? Maybe you stopped it being stopped...
Greg Wilkins
gregw@...
Send Email
Oct 4, 2001
2:08 am
1981
I just use the shutdown hook that is provided by java 1.3. From o.m.j.Server.main(): // Create and add a shutdown hook Thread hook = new Thread() { public void...
Greg Wilkins
gregw@...
Send Email
Oct 4, 2001
2:10 am
1982
I do not have Linux machine, so I have no idea about nbio performance. Is that performance much faster compare to standard Jetty package? By the way, what is...
Leigh Wanstead
leigh@...
Send Email
Oct 4, 2001
2:48 am
1983
... On my machine it is actually slower than the normal way that Jetty works. The idea is that it is meant to scale better - but I don't have access to the...
Greg Wilkins
gregw@...
Send Email
Oct 4, 2001
3:36 am
1984
I've just released JBoss-2.4.3_Jetty-3.1.1-1 on SourceForge : http://prdownloads.sourceforge.net/jboss/JBoss-2.4.3_Jetty-3.1.1-1.zip I shall update the JBoss...
Julian Gosnell
jules_gosnell@...
Send Email
Oct 4, 2001
9:12 am
Messages 1954 - 1984 of 8501   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help