Tribes Startup Help

2009-01-07 Thread Mike Wannamaker
Hi, We are using 5.5.27 and using tribes, however instead of tomcat initializing and starting tribes we are doing it ourselves. Below is my code. I was just wondering if you see anything wrong with what I'm doing. public synchronized void startup() { if(_tribesChannel == null)

Tribes and IPv6 Support

2008-12-02 Thread Mike Wannamaker
I'm having an issue starting tribes under tomcat 5.5 on Windows 2008 Server, IPv6 only setup. Get the following exception Dec 1, 2008 11:25:07 AM org.apache.catalina.tribes.transport.ReceiverBase bind INFO: Unable to bind server socket to:/fe80:0:0:0:c8cb:7933:1d84:c05d:4099 throwing error.

RE: cluster configuration

2008-11-21 Thread Mike Wannamaker
: } Mike Wannamaker wrote: I'm having an issue with clustering in tomcat and tribes. I get this output, I'm not sure why Tribes can't bind to the multicast address? It then binds to localhost which doesn't allow machines to see each other. Any help is appreciated. 19-Nov-2008 3:30:23 PM

RE: cluster configuration

2008-11-21 Thread Mike Wannamaker
(); Perhaps setBind(); should check the given ip? However, I have fixed my code to not allow this. Cheers Mike -Original Message- From: Mike Wannamaker [mailto:[EMAIL PROTECTED] Sent: November 21, 2008 2:26 PM To: Tomcat Users List Subject: RE: cluster configuration Hi Filip 1. We are using

cluster configuration

2008-11-19 Thread Mike Wannamaker
I'm having an issue with clustering in tomcat and tribes. I get this output, I'm not sure why Tribes can't bind to the multicast address? It then binds to localhost which doesn't allow machines to see each other. Any help is appreciated. 19-Nov-2008 3:30:23 PM

RE: Basic Tribes Questions

2008-10-08 Thread Mike Wannamaker
] Sent: October 7, 2008 5:13 PM To: Tomcat Users List Subject: Re: Basic Tribes Questions hi Mike, that's great. yes, the TCP failure detector could give multiple DISAPPEARED messages, that is something I'm about to fix Filip Mike Wannamaker wrote: Hi Filip, I think I am seeing the message

RE: Basic Tribes Questions

2008-10-08 Thread Mike Wannamaker
- Dev Lists [mailto:[EMAIL PROTECTED] Sent: October 8, 2008 3:09 PM To: Tomcat Users List Subject: Re: Basic Tribes Questions catalina-tribes.jar it depends on tomcat-juli.jar both of them are in the binary distribution for Tomcat Filip Mike Wannamaker wrote: Cool, Is there a repository

RE: Basic Tribes Questions

2008-10-07 Thread Mike Wannamaker
, and help you further. Filip Mike Wannamaker wrote: Hi Filip Thanks for the info. However, I don't see the documentation for the setters/getters you mention below? Also I'm having issues while debugging. When I hit a breakpoint in my code and while stepping thru code, I get DISAPPEARED

RE: Basic Tribes Questions

2008-10-06 Thread Mike Wannamaker
Questions answers inline Mike Wannamaker wrote: Hi, I am currently trying to use Tribes as the clustering layer on our server. My startup code looks like this. if(_tribesChannel == null) { // nothing to do if already running try

Basic Tribes Questions

2008-10-03 Thread Mike Wannamaker
Hi, I am currently trying to use Tribes as the clustering layer on our server. My startup code looks like this. if(_tribesChannel == null) { // nothing to do if already running try { _tribesChannel = new GroupChannel(); //

Need my Protocol to be Seen in Tomcat!!

2007-11-16 Thread Mike Wannamaker
Hi I need some help. I have a Handler class for my protocol. Before we embedded tomcat in our own App Server like runtime. This handler class could be loaded. But now we were forced to change to install into tomcat. So now we put classes into commons/lib/... and we add a global resource to

RE: Need my Protocol to be Seen in Tomcat!!

2007-11-16 Thread Mike Wannamaker
!! -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mike, Version numbers? Mike Wannamaker wrote: So now we put classes into commons/lib/... Er... common/lib ? and we add a global resource to server.xml that starts our services. [snip] have debugged into the URL code and it can't find my class

Filter Like behaviour within Tomcat Itself?

2006-09-22 Thread Mike Wannamaker
What I would like to do is have something registered with Tomcat so that all requests that come to all contexts, or configured per context, will first go through this class before even getting to the applications servlets/filtes. This itself would act much like a Filter does, but I don't want to

URIEncoding and POSTS

2006-09-12 Thread Mike Wannamaker
still greets Mr. ç”°ä¸ instead of Mr. 田中. Not good. Why is this so? Can I get the POST to behave the same as the GET?? Mike Wannamaker Senior Software Developer - To start a new topic, e-mail: users@tomcat.apache.org

RE: BOOBIES!

2006-07-21 Thread Mike Wannamaker
/tomcat/basefiles, which is outside of any web app context. Is this what you want to do? Mike Wannamaker -Original Message- From: Mead, Jennifer L - VSCM [mailto:[EMAIL PROTECTED] Sent: July 21, 2006 2:01 PM To: Tomcat Users List Subject: RE: BOOBIES! Could this person (inject other

RE: Shared code but different pages on different virtual hosts? W AS: RE: BOOBIES!

2006-07-21 Thread Mike Wannamaker
Can't you just put the jar files into tomcat/shared/lib Mike Wannamaker Senior Software Developer Hummingbird Ltd. 552 Princess St, Kingston, ON, K7L 1C7 Tel: (613) 548-4355 x4535 Fax (613) 548-7801 E-Mail: Mike Wannamaker www.hummingbird.com IMPORTANT NOTICE: This communication

Loading TLD from JAR file?

2006-07-20 Thread Mike Wannamaker
Is it possible to have your tld files inside your jar file and then have them loaded by tomcat? Example: WEB-INF/lib/my.jar contains meta-inf/my.tld Could I add an entry to my jsp or web.xml to load it from inside the jar file on Tomcat 5.5.x? Mike Wannamaker

RE: Tomcat Not An App Server

2006-07-18 Thread Mike Wannamaker
???TomcatSomethingOrOther { public void start() { RealCoreServices.start(); } public void stop(); { RealCoreServices.stop(); } } I hope this clarifies things. Mike Wannamaker -Original Message- From: Timothy Collett [mailto

RE: Tomcat Not An App Server

2006-07-18 Thread Mike Wannamaker
suggestion with LifecycleListener interface. This could be the easiest way for now. Thanks Mike Wannamaker -Original Message- From: Avi Deitcher [mailto:[EMAIL PROTECTED] Sent: July 18, 2006 10:19 AM To: Tomcat Users List Subject: Re: Tomcat Not An App Server Mike, Have you thought

RE: Tomcat Not An App Server

2006-07-17 Thread Mike Wannamaker
and perhaps they would like to utilize that instead of installing another app server. So I would like to be able to somehow have Tomcat start our core services, much the way that JBoss would, before loading any web apps. Does anyone have any ideas on how that could be accomplished. Mike Wannamaker

RE: Tomcat Not An App Server

2006-07-17 Thread Mike Wannamaker
it be possible for me to have a Valve to do this? Forgive me for my ignorance, but I don't know the tomcat architecture that well yet, just what little I've read. As long as it starts before the web apps that is all I need. Mike Wannamaker -Original Message- From: Timothy Collett [mailto:[EMAIL

RE: Tomcat Not An App Server

2006-07-17 Thread Mike Wannamaker
/common/lib? Mike Wannamaker -Original Message- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: July 17, 2006 12:39 PM To: Tomcat Users List Subject: Re: Tomcat Not An App Server Mike, What I've done is ripped out our core services from our internal app server and provided

Tomcat Not An App Server

2006-07-13 Thread Mike Wannamaker
and would I need to implement some Tomcat interface to do it? TIA Mike Wannamaker - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Tomcat Not An App Server

2006-07-13 Thread Mike Wannamaker
anything into the web apps themselves to try and start it. TIA Mike Wannamaker -Original Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: July 13, 2006 4:05 PM To: Tomcat Users List Subject: Re: Tomcat Not An App Server Tomcat's not really an app server? Geee really, I feel so

RE: Running Tomcat Embedded

2006-07-11 Thread Mike Wannamaker
to work like starting Tomcat manually. I want it to read the server.xml and context.xml files for web apps. Is this possible? Mike Wannamaker Senior Software Developer Hummingbird Ltd. 552 Princess St, Kingston, ON, K7L 1C7 Tel: (613) 548-4355 x4535 Fax (613) 548-7801 E-Mail: Mike Wannamaker

Installing My Own DirContext

2006-07-11 Thread Mike Wannamaker
:\tomcat\webres\login\login.jsp and return it if found. Mike Wannamaker - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Installing My Own DirContext

2006-07-10 Thread Mike Wannamaker
doing this? Mike Wannamaker Senior Software Developer Hummingbird Ltd. 552 Princess St, Kingston, ON, K7L 1C7 Tel: (613) 548-4355 x4535 Fax (613) 548-7801 E-Mail: Mike Wannamaker www.hummingbird.com IMPORTANT NOTICE: This communication is privileged and contains confidential information

RE: Installing My Own DirContext

2006-07-10 Thread Mike Wannamaker
class and I'll look for c:\tomcat\webres\login\login.jsp and return it if found. Mike Wannamaker Senior Software Developer Hummingbird Ltd. 552 Princess St, Kingston, ON, K7L 1C7 Tel: (613) 548-4355 x4535 Fax (613) 548-7801 E-Mail: Mike Wannamaker www.hummingbird.com IMPORTANT NOTICE

Running Tomcat Embedded

2006-07-10 Thread Mike Wannamaker
an instance of Tomcat/Catalina and setProperties(...); and then call start(); Any help is appreciated. Mike Wannamaker Senior Software Developer Hummingbird Ltd. 552 Princess St, Kingston, ON, K7L 1C7 Tel: (613) 548-4355 x4535 Fax (613) 548-7801 E-Mail: Mike Wannamaker www.hummingbird.com