<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-17464</id>
	<title>Nabble - tc-users</title>
	<updated>2009-10-30T15:43:41Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/tc-users-f17464.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/tc-users-f17464.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26137922</id>
	<title>Terracotta Master Worker + Guice</title>
	<published>2009-10-30T15:43:41Z</published>
	<updated>2009-10-30T15:43:41Z</updated>
	<author>
		<name>adamatmagpie</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;Greetings,&lt;br&gt;&lt;br&gt;I have been trying to get a Terracotta Master Worker project going with Guice but I seem to have run into a problem with Guice's Provider class. Every time I try to inject a class with a Provider i.e&lt;br&gt;&lt;br&gt;@Inject&lt;br&gt;public void &amp;nbsp;MyAppService(Provider&amp;lt;DAOService&amp;gt; daoProvider)&lt;br&gt;{&lt;br&gt;...&lt;br&gt;}&lt;br&gt;&lt;br&gt;I am getting a class not found exception on the class that is bound as the provider, even if I instrument the class explicitly.&lt;br&gt;&lt;br&gt;In terms of code I have the following&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Provider ------&lt;br&gt;public class DAOServiceProvider implements Provider&amp;lt;DAOService&amp;gt;&lt;br&gt;{&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;public DAOService get()&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;{&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;return new DAOServiceImpl();&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;}&lt;br&gt;}&lt;br&gt;&lt;br&gt;&lt;br&gt;---- Master -------&lt;br&gt;&lt;br&gt;public class WorkMaster&lt;br&gt;{&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;public void run()&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;{&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;nbsp;Injector injector = Guice.createInjector(new AbstractModule() {&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;@Override&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;protected void configure()&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;{&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;bind(DAOService.class).toProvider(DAOServiceProvider.class);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;}&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;});&lt;br&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;Work work = injector.getInstance(Work.class);&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;}&lt;br&gt;}&lt;br&gt;&lt;br&gt;---- Worker ----&lt;br&gt;&lt;br&gt;public class Work implements Callable&amp;lt;int&amp;gt;&lt;br&gt;{&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;private Provider&amp;lt;DAOService&amp;gt; serviceProvider;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;@Inject&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;public Work(Provider&amp;lt;DAOService&amp;gt; serviceProvider)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;{&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;this.serviceProvider = serviceProvider;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;}&lt;br&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;public int call() throws Exception&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;{&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;return serviceProvider.get().getUserCount();&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;}&lt;br&gt;}&lt;br&gt;&lt;br&gt;&lt;br&gt;---- tc-config.xml -----&lt;br&gt;&lt;br&gt;&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;&lt;br&gt;&amp;lt;con:tc-config xmlns:con=&quot;&lt;a href=&quot;http://www.terracotta.org/config&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/config&lt;/a&gt;&quot;&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;servers&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;server host=&quot;%i&quot; name=&quot;localhost&quot;&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;dso-port&amp;gt;9510&amp;lt;/dso-port&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;jmx-port&amp;gt;9520&amp;lt;/jmx-port&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;data&amp;gt;terracotta/server-data&amp;lt;/data&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;logs&amp;gt;terracotta/server-logs&amp;lt;/logs&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;statistics&amp;gt;terracotta/cluster-statistics&amp;lt;/statistics&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/server&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/servers&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;clients&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;logs&amp;gt;terracotta/client-logs&amp;lt;/logs&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;modules&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;module name=&quot;tim-masterworker&quot; version=&quot;2.1.1&quot; /&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;module name=&quot;tim-guice-1.0&quot; version=&quot;1.2.1&quot; /&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/modules&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/clients&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;application&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;dso&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;instrumented-classes&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;class-expression&amp;gt;com.magpieti.terraguice.*&amp;lt;/class-expression&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;class-expression&amp;gt;c com.magpieti.terraguice.DAOServiceProvider$$FastClassByGuice&amp;lt;/class-expression&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;class-expression&amp;gt;com.google.inject.*&amp;lt;/class-expression&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/instrumented-classes&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;additional-boot-jar-classes&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;sun.reflect.generics.reflectiveObjects.ParameterizedTypeImpl&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;sun.reflect.annotation.AnnotationInvocationHandler&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;sun.reflect.generics.repository.ConstructorRepository&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;sun.reflect.generics.factory.CoreReflectionFactory&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;sun.reflect.generics.tree.MethodTypeSignature&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;sun.reflect.generics.scope.ConstructorScope&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;sun.reflect.generics.tree.ClassTypeSignature&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;sun.reflect.generics.tree.VoidDescriptor&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;include&amp;gt;sun.reflect.generics.tree.SimpleClassTypeSignature&amp;lt;/include&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/additional-boot-jar-classes&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/dso&amp;gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;&amp;lt;/application&amp;gt;&lt;br&gt;&amp;lt;/con:tc-config&amp;gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Currently, when the &quot;serviceProvider.get().getUserCount()' is executed I get the following stack trace&lt;br&gt;&lt;br&gt;&lt;br&gt;com.tc.exception.TCClassNotFoundException: java.lang.ClassNotFoundException: com.magpieti.terraguice.DAOServiceProvider $$FastClassByGuice$$4081c943&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.tc.object.TCObjectPhysical.resolveReference(TCObjectPhysical.java:151)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.google.inject.cglib.reflect.FastMember.__tc_getfc(FastMember.java)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.google.inject.cglib.reflect.FastConstructor.newInstance(FastConstructor.java:40)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.google.inject.DefaultConstructionProxyFactory$2.newInstance(DefaultConstructionProxyFactory.java:67)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.google.inject.ConstructorInjector.construct(ConstructorInjector.java:142)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.google.inject.InjectorImpl$ImplicitBinding.get(InjectorImpl.java:1006)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.google.inject.BoundProviderFactory.get(BoundProviderFactory.java:60)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.google.inject.InjectorImpl$9$1.call(InjectorImpl.java:708)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.google.inject.InjectorImpl.callInContext(InjectorImpl.java:747)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.google.inject.InjectorImpl$9.get(InjectorImpl.java:702)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.magpieti.terraguice.Work.call(SimpleWork.java:24)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.magpieti.terraguice.Work.call(SimpleWork.java:1)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:270)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.util.concurrent.FutureTask.run(FutureTask.java:55)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at org.terracotta.executor.support.DefaultDistributedWork.run(DefaultDistributedWork.java:25)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at org.terracotta.executor.DistributedWorkerService.doExecute(DistributedWorkerService.java:92)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at org.terracotta.masterworker.AbstractWorker$WorkPipeListener$1.run(AbstractWorker.java:131)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:270)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.util.concurrent.FutureTask.run(FutureTask.java:55)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.lang.Thread.run(Thread.java:637)&lt;br&gt;Caused by: java.lang.ClassNotFoundException: com.magpieti.terraguice.DAOServiceProvider$$FastClassByGuice$$4081c943&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.net.URLClassLoader$1.run(URLClassLoader.java:200)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.security.AccessController.doPrivileged(Native Method)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.net.URLClassLoader.findClass(URLClassLoader.java:188)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at sun.misc.Launcher$AppClassLoader.findClass(Launcher.java)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.lang.ClassLoader.loadClass(ClassLoader.java:319)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:330)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.lang.ClassLoader.loadClass(ClassLoader.java:254)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:399)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.lang.Class.forName0(Native Method)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at java.lang.Class.forName(Class.java:247)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.tc.object.loaders.StandardClassProvider.getClassFor(StandardClassProvider.java:88)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.tc.object.ClientObjectManagerImpl.lookup(ClientObjectManagerImpl.java:539)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.tc.object.ClientObjectManagerImpl.lookupObject(ClientObjectManagerImpl.java:442)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.tc.object.ClientObjectManagerImpl.lookupObject(ClientObjectManagerImpl.java:430)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;at com.tc.object.TCObjectPhysical.resolveReference(TCObjectPhysical.java:149)&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt;	&lt;/span&gt;... 22 more&lt;br&gt;&lt;br&gt;&lt;br&gt;Is it immediately obvious anyone why this would be a problem? Why is the Terracotta class loader unable to find this particular class?&lt;br&gt;&lt;br&gt;As a side note, if I inject the class that the Provider is providing instead of the whole provider it seems to work.&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Adam&lt;br&gt;&lt;br&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26137922&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Terracotta-Master-Worker-%2B-Guice-tp26137922p26137922.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25588295</id>
	<title>Re: welcome script not available</title>
	<published>2009-09-23T19:10:34Z</published>
	<updated>2009-09-23T19:10:34Z</updated>
	<author>
		<name>Dominick Accattato</name>
	</author>
	<content type="html">Ah yes, that worked perfectly!  I had watched the screencasts, but they all started from the welcome app.  Thanks for pointing this out.&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Wed, Sep 23, 2009 at 9:58 PM, Gary Keim &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gkeim@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;








&lt;div link=&quot;blue&quot; vlink=&quot;purple&quot; lang=&quot;EN-US&quot;&gt;

&lt;div&gt;

&lt;p&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;Steve was referring to tools/pojo/samples{sh,bat}.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0in 0in;&quot;&gt;

&lt;p&gt;&lt;b&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users-bounces@...&lt;/a&gt;
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users-bounces@...&lt;/a&gt;] &lt;b&gt;On Behalf Of &lt;/b&gt;Dominick
Accattato&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Wednesday, September 23, 2009 6:57 PM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [tc-users] welcome script not available&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p style=&quot;margin-bottom: 12pt;&quot;&gt;@Alex, Thanks for clearing that
up, but wouldn&amp;#39;t a welcome app still be useful even for the integration
products?  &lt;br&gt;
&lt;br&gt;
@Steven, are you referring to the &amp;quot;start-demo-server.sh&amp;quot; that&amp;#39;s
located in [TC_HOME]/samples ?&lt;/p&gt;

&lt;div&gt;

&lt;p&gt;On Wed, Sep 23, 2009 at 9:45 PM, Steven Harris &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steve@...&lt;/a&gt;&amp;gt; wrote:&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p&gt;The sample launcher still exists if that&amp;#39;s the part you
need.&lt;br&gt;
&lt;br&gt;
Cheers,&lt;/p&gt;

&lt;div&gt;

&lt;p&gt;Steve&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p style=&quot;margin-bottom: 12pt;&quot;&gt;&lt;br&gt;
On Sep 23, 2009, at 6:10 PM, Alex Miller &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amiller@...&lt;/a&gt;&amp;gt;
wrote:&lt;/p&gt;

&lt;/div&gt;

&lt;blockquote style=&quot;margin-top: 5pt; margin-bottom: 5pt;&quot;&gt;

&lt;div&gt;

&lt;p&gt;Yes, the welcome scripts were removed to reflect a new focus
on our integration products like sessions, Hibernate second level cache, and
(soon) Ehcache.&lt;/p&gt;

&lt;div&gt;

&lt;p&gt; &lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p&gt; &lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p&gt;On Sep 23, 2009, at 6:08 PM, Dominick Accattato wrote:&lt;/p&gt;

&lt;/div&gt;

&lt;p&gt;&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Hi,&lt;br&gt;
&lt;br&gt;
I just downloaded the latest tar release of Terracotta ES 3.1.0 here (&lt;a href=&quot;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&lt;/a&gt;). 
It downloaded and unpacked fine, however I do not see the welcome.sh script in
any of the directories including the bin.  Here are other places I&amp;#39;ve
searched to find more information:&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li&gt;I&amp;#39;ve searched the forums&lt;/li&gt;
 &lt;li&gt;read the text files that accompany the download&lt;/li&gt;
 &lt;li&gt;checked the release_notes (&lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Release+Notes&lt;/a&gt;). 
     &lt;/li&gt;
 &lt;li&gt;searched the wiki&lt;/li&gt;
 &lt;li&gt;tried searching the mailing list&lt;/li&gt;
 &lt;li&gt;google search&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That said, I am able to run the samples individually from
the command line.  However, I was wondering if that welcome script has
been removed.  If so, why?  Thanks in advance for any information you
can shed on the subject... and thanks for all the hard work!&lt;br&gt;
_______________________________________________&lt;br&gt;
tc-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p&gt; &lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/blockquote&gt;

&lt;blockquote style=&quot;margin-top: 5pt; margin-bottom: 5pt;&quot;&gt;

&lt;div&gt;

&lt;p&gt;_______________________________________________&lt;br&gt;
tc-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/blockquote&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p style=&quot;margin-bottom: 12pt;&quot;&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
tc-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;/div&gt;&lt;/div&gt;&lt;p&gt;__________ Information from ESET NOD32 Antivirus, version of virus signature
database 4451 (20090923) __________&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;The message was checked by ESET NOD32 Antivirus.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.eset.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.eset.com&lt;/a&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;


&lt;br&gt;_______________________________________________&lt;br&gt;
tc-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588295&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/welcome-script-not-available-tp25587797p25588295.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25588199</id>
	<title>Re: welcome script not available</title>
	<published>2009-09-23T18:58:43Z</published>
	<updated>2009-09-23T18:58:43Z</updated>
	<author>
		<name>Gary Keim</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Steve was referring to tools/pojo/samples{sh,bat}.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588199&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users-bounces@...&lt;/a&gt;
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588199&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users-bounces@...&lt;/a&gt;] &lt;b&gt;On Behalf Of &lt;/b&gt;Dominick
Accattato&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Wednesday, September 23, 2009 6:57 PM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588199&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [tc-users] welcome script not available&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;@Alex, Thanks for clearing that
up, but wouldn't a welcome app still be useful even for the integration
products?&amp;nbsp; &lt;br&gt;
&lt;br&gt;
@Steven, are you referring to the &amp;quot;start-demo-server.sh&amp;quot; that's
located in [TC_HOME]/samples ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;On Wed, Sep 23, 2009 at 9:45 PM, Steven Harris &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588199&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steve@...&lt;/a&gt;&amp;gt; wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;The sample launcher still exists if that's the part you
need.&lt;br&gt;
&lt;br&gt;
Cheers,&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;Steve&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;&lt;br&gt;
On Sep 23, 2009, at 6:10 PM, Alex Miller &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588199&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amiller@...&lt;/a&gt;&amp;gt;
wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;Yes, the welcome scripts were removed to reflect a new focus
on our integration products like sessions, Hibernate second level cache, and
(soon) Ehcache.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;On Sep 23, 2009, at 6:08 PM, Dominick Accattato wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;br&gt;
&lt;br&gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Hi,&lt;br&gt;
&lt;br&gt;
I just downloaded the latest tar release of Terracotta ES 3.1.0 here (&lt;a href=&quot;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&lt;/a&gt;).&amp;nbsp;
It downloaded and unpacked fine, however I do not see the welcome.sh script in
any of the directories including the bin.&amp;nbsp; Here are other places I've
searched to find more information:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;ul type=disc&gt;
 &lt;li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     mso-list:l0 level1 lfo1'&gt;I've searched the forums&lt;o:p&gt;&lt;/o:p&gt;&lt;/li&gt;
 &lt;li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     mso-list:l0 level1 lfo1'&gt;read the text files that accompany the download&lt;o:p&gt;&lt;/o:p&gt;&lt;/li&gt;
 &lt;li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     mso-list:l0 level1 lfo1'&gt;checked the release_notes (&lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Release+Notes&lt;/a&gt;).&amp;nbsp;
     &lt;o:p&gt;&lt;/o:p&gt;&lt;/li&gt;
 &lt;li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     mso-list:l0 level1 lfo1'&gt;searched the wiki&lt;o:p&gt;&lt;/o:p&gt;&lt;/li&gt;
 &lt;li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     mso-list:l0 level1 lfo1'&gt;tried searching the mailing list&lt;o:p&gt;&lt;/o:p&gt;&lt;/li&gt;
 &lt;li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     mso-list:l0 level1 lfo1'&gt;google search&lt;o:p&gt;&lt;/o:p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=MsoNormal&gt;That said, I am able to run the samples individually from
the command line.&amp;nbsp; However, I was wondering if that welcome script has
been removed.&amp;nbsp; If so, why?&amp;nbsp; Thanks in advance for any information you
can shed on the subject... and thanks for all the hard work!&lt;br&gt;
_______________________________________________&lt;br&gt;
tc-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588199&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/blockquote&gt;

&lt;blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;_______________________________________________&lt;br&gt;
tc-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588199&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/blockquote&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
tc-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588199&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p&gt;__________ Information from ESET NOD32 Antivirus, version of virus signature
database 4451 (20090923) __________&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p&gt;The message was checked by ESET NOD32 Antivirus.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p&gt;http://www.eset.com&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588199&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/welcome-script-not-available-tp25587797p25588199.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25588181</id>
	<title>Re: welcome script not available</title>
	<published>2009-09-23T18:56:33Z</published>
	<updated>2009-09-23T18:56:33Z</updated>
	<author>
		<name>Dominick Accattato</name>
	</author>
	<content type="html">@Alex, Thanks for clearing that up, but wouldn&amp;#39;t a welcome app still be useful even for the integration products?  &lt;br&gt;&lt;br&gt;@Steven, are you referring to the &amp;quot;start-demo-server.sh&amp;quot; that&amp;#39;s located in [TC_HOME]/samples ?&lt;br&gt;
&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Wed, Sep 23, 2009 at 9:45 PM, Steven Harris &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588181&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steve@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div bgcolor=&quot;#FFFFFF&quot;&gt;&lt;div&gt;The sample launcher still exists if that&amp;#39;s the part you need.&lt;br&gt;&lt;br&gt;Cheers,&lt;div&gt;Steve&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;div&gt;&lt;br&gt;On Sep 23, 2009, at 6:10 PM, Alex Miller &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588181&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amiller@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div&gt;Yes, the welcome scripts were removed to reflect a new focus on our integration products like sessions, Hibernate second level cache, and (soon) Ehcache.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;
&lt;br&gt;&lt;div&gt;&lt;div&gt;On Sep 23, 2009, at 6:08 PM, Dominick Accattato wrote:&lt;/div&gt;&lt;br&gt;&lt;blockquote type=&quot;cite&quot;&gt;Hi,&lt;br&gt;&lt;br&gt;I just downloaded the latest tar release of Terracotta ES 3.1.0 here (&lt;a href=&quot;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&lt;/a&gt;).  It downloaded and unpacked fine, however I do not see the welcome.sh script in any of the directories including the bin.  Here are other places I&amp;#39;ve searched to find more information:&lt;br&gt;
 &lt;ul&gt;&lt;li&gt;I&amp;#39;ve searched the forums&lt;/li&gt;&lt;li&gt;read the text files that accompany the download&lt;/li&gt;&lt;li&gt;checked the release_notes (&lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Release+Notes&lt;/a&gt;).  &lt;/li&gt;
 &lt;li&gt;searched the wiki&lt;/li&gt;&lt;li&gt;tried searching the mailing list&lt;/li&gt;&lt;li&gt;google search&lt;/li&gt;&lt;/ul&gt;That said, I am able to run the samples individually from the command line.  However, I was wondering if that welcome script has been removed.  If so, why?  Thanks in advance for any information you can shed on the subject... and thanks for all the hard work!&lt;br&gt;
 _______________________________________________&lt;br&gt;tc-users mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588181&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588181&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div&gt;&lt;span&gt;_______________________________________________&lt;/span&gt;&lt;br&gt;
&lt;span&gt;tc-users mailing list&lt;/span&gt;&lt;br&gt;&lt;span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588181&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;/span&gt;&lt;br&gt;&lt;span&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________&lt;br&gt;
tc-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588181&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588181&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/welcome-script-not-available-tp25587797p25588181.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25588072</id>
	<title>Re: welcome script not available</title>
	<published>2009-09-23T18:45:57Z</published>
	<updated>2009-09-23T18:45:57Z</updated>
	<author>
		<name>sharrissf</name>
	</author>
	<content type="html">&lt;html&gt;&lt;body bgcolor=&quot;#FFFFFF&quot;&gt;&lt;div&gt;The sample launcher still exists if that's the part you need.&lt;br&gt;&lt;br&gt;Cheers,&lt;div&gt;Steve&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;On Sep 23, 2009, at 6:10 PM, Alex Miller &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588072&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amiller@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div&gt;Yes, the welcome scripts were removed to reflect a new focus on our integration products like sessions, Hibernate second level cache, and (soon) Ehcache.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Sep 23, 2009, at 6:08 PM, Dominick Accattato wrote:&lt;/div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;blockquote type=&quot;cite&quot;&gt;Hi,&lt;br&gt;&lt;br&gt;I just downloaded the latest tar release of Terracotta ES 3.1.0 here (&lt;a href=&quot;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;a href=&quot;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&lt;/a&gt;&lt;/a&gt;).&amp;nbsp; It downloaded and unpacked fine, however I do not see the welcome.sh script in any of the directories including the bin.&amp;nbsp; Here are other places I've searched to find more information:&lt;br&gt; &lt;ul&gt;&lt;li&gt;I've searched the forums&lt;/li&gt;&lt;li&gt;read the text files that accompany the download&lt;/li&gt;&lt;li&gt;checked the release_notes (&lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Release+Notes&lt;/a&gt;&lt;/a&gt;).&amp;nbsp; &lt;/li&gt; &lt;li&gt;searched the wiki&lt;/li&gt;&lt;li&gt;tried searching the mailing list&lt;/li&gt;&lt;li&gt;google search&lt;/li&gt;&lt;/ul&gt;That said, I am able to run the samples individually from the command line.&amp;nbsp; However, I was wondering if that welcome script has been removed.&amp;nbsp; If so, why?&amp;nbsp; Thanks in advance for any information you can shed on the subject... and thanks for all the hard work!&lt;br&gt; _______________________________________________&lt;br&gt;tc-users mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588072&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div&gt;&lt;span&gt;_______________________________________________&lt;/span&gt;&lt;br&gt;&lt;span&gt;tc-users mailing list&lt;/span&gt;&lt;br&gt;&lt;span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588072&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;/span&gt;&lt;br&gt;&lt;span&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25588072&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/welcome-script-not-available-tp25587797p25588072.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25587809</id>
	<title>Re: welcome script not available</title>
	<published>2009-09-23T18:10:47Z</published>
	<updated>2009-09-23T18:10:47Z</updated>
	<author>
		<name>Alex Miller-8</name>
	</author>
	<content type="html">&lt;html&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;Yes, the welcome scripts were removed to reflect a new focus on our integration products like sessions, Hibernate second level cache, and (soon) Ehcache.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Sep 23, 2009, at 6:08 PM, Dominick Accattato wrote:&lt;/div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;blockquote type=&quot;cite&quot;&gt;Hi,&lt;br&gt;&lt;br&gt;I just downloaded the latest tar release of Terracotta ES 3.1.0 here (&lt;a href=&quot;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&lt;/a&gt;).&amp;nbsp; It downloaded and unpacked fine, however I do not see the welcome.sh script in any of the directories including the bin.&amp;nbsp; Here are other places I've searched to find more information:&lt;br&gt; &lt;ul&gt;&lt;li&gt;I've searched the forums&lt;/li&gt;&lt;li&gt;read the text files that accompany the download&lt;/li&gt;&lt;li&gt;checked the release_notes (&lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Release+Notes&lt;/a&gt;).&amp;nbsp; &lt;/li&gt; &lt;li&gt;searched the wiki&lt;/li&gt;&lt;li&gt;tried searching the mailing list&lt;/li&gt;&lt;li&gt;google search&lt;/li&gt;&lt;/ul&gt;That said, I am able to run the samples individually from the command line.&amp;nbsp; However, I was wondering if that welcome script has been removed.&amp;nbsp; If so, why?&amp;nbsp; Thanks in advance for any information you can shed on the subject... and thanks for all the hard work!&lt;br&gt; _______________________________________________&lt;br&gt;tc-users mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25587809&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25587809&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/welcome-script-not-available-tp25587797p25587809.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25587797</id>
	<title>welcome script not available</title>
	<published>2009-09-23T18:08:58Z</published>
	<updated>2009-09-23T18:08:58Z</updated>
	<author>
		<name>Dominick Accattato</name>
	</author>
	<content type="html">Hi,&lt;br&gt;&lt;br&gt;I just downloaded the latest tar release of Terracotta ES 3.1.0 here (&lt;a href=&quot;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/orgsite/DownloadCatalog&lt;/a&gt;).  It downloaded and unpacked fine, however I do not see the welcome.sh script in any of the directories including the bin.  Here are other places I&amp;#39;ve searched to find more information:&lt;br&gt;
&lt;ul&gt;&lt;li&gt;I&amp;#39;ve searched the forums&lt;/li&gt;&lt;li&gt;read the text files that accompany the download&lt;/li&gt;&lt;li&gt;checked the release_notes (&lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Release+Notes&lt;/a&gt;).  &lt;/li&gt;
&lt;li&gt;searched the wiki&lt;/li&gt;&lt;li&gt;tried searching the mailing list&lt;/li&gt;&lt;li&gt;google search&lt;/li&gt;&lt;/ul&gt;That said, I am able to run the samples individually from the command line.  However, I was wondering if that welcome script has been removed.  If so, why?  Thanks in advance for any information you can shed on the subject... and thanks for all the hard work!&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25587797&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/welcome-script-not-available-tp25587797p25587797.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25467786</id>
	<title>Re: error using masterworker tim - 2.1.0 in multiple war project</title>
	<published>2009-09-16T01:07:19Z</published>
	<updated>2009-09-16T01:07:19Z</updated>
	<author>
		<name>Sergio Bossa</name>
	</author>
	<content type="html">Hi Artie.
&lt;br&gt;&lt;br&gt;&amp;gt; i am having an issue using tim-masterworker 2.1.0 with tc 3.1 and having
&lt;br&gt;&amp;gt; multiple wars.  I currently have one war as the master and another war as
&lt;br&gt;&amp;gt; the worker.  The master loads fine but when i try to load the worker i get
&lt;br&gt;&amp;gt; this error:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Caused by: java.lang.ClassCastException:
&lt;br&gt;&lt;br&gt;If you're sharing the same terracotta root (the topology instance)
&lt;br&gt;between different web applications (the master and the worker), you
&lt;br&gt;have to enable such a behavior in your terracotta configuration, just
&lt;br&gt;take a look here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.terracotta.org/web/display/docs/Configuration+Guide+and+Reference#ConfigurationGuideandReference-appgroups&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Configuration+Guide+and+Reference#ConfigurationGuideandReference-appgroups&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt; when they are in the same tomcat instance  and this error:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; com.tc.exception.TCClassNotFoundException: java.lang.ClassNotFoundException:
&lt;br&gt;&amp;gt; No registered loader for description: %%Tomcat.Catalina:localhost:/master,
&lt;br&gt;&amp;gt; trying to load org.terracotta.message.topology.TopologyManager
&lt;br&gt;&lt;br&gt;Did you install the terracotta integration module for Tomcat?
&lt;br&gt;Just issue the following command from inside the terracotta bin directory:
&lt;br&gt;&lt;br&gt;$ sh tim-get.sh install tim-tomcat-6.0
&lt;br&gt;&lt;br&gt;&amp;gt; is the intent to have one war with both the master and work in it then push
&lt;br&gt;&amp;gt; that war to all the servers?
&lt;br&gt;&lt;br&gt;There's no restriction on your deployment type: you can deploy one war
&lt;br&gt;containing the master + another war for the worker, as well as a
&lt;br&gt;single war containing both master and worker.
&lt;br&gt;You just have to properly configure your application by following the
&lt;br&gt;instructions above.
&lt;br&gt;&lt;br&gt;Let us know.
&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Sergio B.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sergio Bossa
&lt;br&gt;Software Passionate and Open Source Enthusiast.
&lt;br&gt;URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25467786&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/error-using-masterworker-tim---2.1.0-in-multiple-war-project-tp25461776p25467786.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25461776</id>
	<title>error using masterworker tim - 2.1.0 in multiple war project</title>
	<published>2009-09-15T14:03:56Z</published>
	<updated>2009-09-15T14:03:56Z</updated>
	<author>
		<name>Artie Copeland</name>
	</author>
	<content type="html">i am having an issue using tim-masterworker 2.1.0 with tc 3.1 and &amp;nbsp;
&lt;br&gt;having multiple wars. &amp;nbsp;I currently have one war as the master and &amp;nbsp;
&lt;br&gt;another war as the worker. &amp;nbsp;The master loads fine but when i try to &amp;nbsp;
&lt;br&gt;load the worker i get this error:
&lt;br&gt;&lt;br&gt;Caused by: java.lang.ClassCastException: The field 'instance' with &amp;nbsp;
&lt;br&gt;root name 'org.terracotta.message.topology.TopologyManager.instance' &amp;nbsp;
&lt;br&gt;cannot be assigned to a variable of type org/terracotta/message/ 
&lt;br&gt;topology/TopologyManager. This root has a type &amp;nbsp;
&lt;br&gt;org.terracotta.message.topology.TopologyManager. Perhaps you have the &amp;nbsp;
&lt;br&gt;same root name assigned more than once to variables of different types.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.terracotta.message.topology.TopologyManager.__tc_setinstance 
&lt;br&gt;(TopologyManager.java)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.terracotta.message.topology.TopologyManager.&amp;lt;clinit&amp;gt; 
&lt;br&gt;(TopologyManager.java:29)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 52 more
&lt;br&gt;&lt;br&gt;when they are in the same tomcat instance &amp;nbsp;and this error:
&lt;br&gt;&lt;br&gt;com.tc.exception.TCClassNotFoundException: &amp;nbsp;
&lt;br&gt;java.lang.ClassNotFoundException: No registered loader for &amp;nbsp;
&lt;br&gt;description: %%Tomcat.Catalina:localhost:/master, trying to load &amp;nbsp;
&lt;br&gt;org.terracotta.message.topology.TopologyManager
&lt;br&gt;&lt;br&gt;then they are in different tomcat instances.
&lt;br&gt;&lt;br&gt;is the intent to have one war with both the master and work in it then &amp;nbsp;
&lt;br&gt;push that war to all the servers? &amp;nbsp;i did notice that there were a few &amp;nbsp;
&lt;br&gt;master object roots. &amp;nbsp;is that normal?
&lt;br&gt;&lt;br&gt;please help
&lt;br&gt;&lt;br&gt;thanx
&lt;br&gt;&lt;br&gt;artie
&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25461776&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/error-using-masterworker-tim---2.1.0-in-multiple-war-project-tp25461776p25461776.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25295841</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-09-04T07:52:10Z</published>
	<updated>2009-09-04T07:52:10Z</updated>
	<author>
		<name>Sergio Bossa</name>
	</author>
	<content type="html">On Thu, Sep 3, 2009 at 3:57 AM, Taylor
&lt;br&gt;Gautier&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25295841&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tgautier@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Sounds great.  Just make sure on the serialization part - what you are
&lt;br&gt;&amp;gt; trying to optimize is the object count in Terracotta.  So a simple test
&lt;br&gt;&amp;gt; would be to run say 10,000 objects through TC and observe the object created
&lt;br&gt;&amp;gt; count in the console and make sure it is constant.
&lt;br&gt;&lt;br&gt;It works just like that, now: live objects count is kept constant.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sergio Bossa
&lt;br&gt;Software Passionate and Open Source Enthusiast.
&lt;br&gt;URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25295841&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p25295841.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25268653</id>
	<title>Re: New features for next Tim-Messaging releases</title>
	<published>2009-09-02T18:57:29Z</published>
	<updated>2009-09-02T18:57:29Z</updated>
	<author>
		<name>Taylor Gautier</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style='font-family: Times New Roman; font-size: 12pt; color: #000000'&gt;Sounds great. &amp;nbsp;Just make sure on the serialization part - what you are trying to optimize is the object count in Terracotta. &amp;nbsp;So a simple test would be to run say 10,000 objects through TC and observe the object created count in the console and make sure it is constant. &amp;nbsp;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Anything else indicates clustered objects (wrappers etc) that you must optimize out because the entire point is to ensure that message puts do not add to the object count.&lt;div&gt;&lt;br&gt;----- Original Message -----&lt;br&gt;From: &quot;Sergio Bossa&quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25268653&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sergio.bossa@...&lt;/a&gt;&amp;gt;&lt;br&gt;To: &quot;tc-forge-dev&quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25268653&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-forge-dev@...&lt;/a&gt;&amp;gt;, &quot;tc-users&quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25268653&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&amp;gt;&lt;br&gt;Sent: Tuesday, September 1, 2009 3:11:59 AM GMT -08:00 US/Canada Pacific&lt;br&gt;Subject: Re: [tc-users] New features for next Tim-Messaging releases&lt;br&gt;&lt;br&gt;Hi guys,&lt;br&gt;&lt;br&gt;first of all: thanks everyone for your feedback!&lt;br&gt;&lt;br&gt;FYI, I've planned the following new features for the next release,&lt;br&gt;which I'd like to cut in a few weeks:&lt;br&gt;&lt;br&gt;https://jira.terracotta.org/jira/browse/FORGE-549 (message&lt;br&gt;serialization support)&lt;br&gt;https://jira.terracotta.org/jira/browse/FORGE-548 (selective consumer support)&lt;br&gt;https://jira.terracotta.org/jira/browse/FORGE-518 (message expiration support)&lt;br&gt;&lt;br&gt;I'm currently working on message serialization, which is almost&lt;br&gt;finished and supports Java Serialization, Json, XML and GoogleProtoBuf&lt;br&gt;encoding.&lt;br&gt;&lt;br&gt;Feedback is as always welcome.&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;Sergio B.&lt;br&gt;&lt;br&gt;-- &lt;br&gt;Sergio Bossa&lt;br&gt;Software Passionate and Open Source Enthusiast.&lt;br&gt;URL: http://www.linkedin.com/in/sergiob&lt;br&gt;_______________________________________________&lt;br&gt;tc-users mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25268653&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;br&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25268653&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p25268653.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25237708</id>
	<title>Re: New features for next Tim-Messaging releases</title>
	<published>2009-09-01T03:11:59Z</published>
	<updated>2009-09-01T03:11:59Z</updated>
	<author>
		<name>Sergio Bossa</name>
	</author>
	<content type="html">Hi guys,
&lt;br&gt;&lt;br&gt;first of all: thanks everyone for your feedback!
&lt;br&gt;&lt;br&gt;FYI, I've planned the following new features for the next release,
&lt;br&gt;which I'd like to cut in a few weeks:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://jira.terracotta.org/jira/browse/FORGE-549&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://jira.terracotta.org/jira/browse/FORGE-549&lt;/a&gt;&amp;nbsp;(message
&lt;br&gt;serialization support)
&lt;br&gt;&lt;a href=&quot;https://jira.terracotta.org/jira/browse/FORGE-548&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://jira.terracotta.org/jira/browse/FORGE-548&lt;/a&gt;&amp;nbsp;(selective consumer support)
&lt;br&gt;&lt;a href=&quot;https://jira.terracotta.org/jira/browse/FORGE-518&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://jira.terracotta.org/jira/browse/FORGE-518&lt;/a&gt;&amp;nbsp;(message expiration support)
&lt;br&gt;&lt;br&gt;I'm currently working on message serialization, which is almost
&lt;br&gt;finished and supports Java Serialization, Json, XML and GoogleProtoBuf
&lt;br&gt;encoding.
&lt;br&gt;&lt;br&gt;Feedback is as always welcome.
&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Sergio B.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sergio Bossa
&lt;br&gt;Software Passionate and Open Source Enthusiast.
&lt;br&gt;URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25237708&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p25237708.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25133865</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-08-25T06:04:09Z</published>
	<updated>2009-08-25T06:04:09Z</updated>
	<author>
		<name>Sergio Bossa</name>
	</author>
	<content type="html">On Mon, Aug 24, 2009 at 4:50 PM, Jason
&lt;br&gt;Voegele&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25133865&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jvoegele@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I definitely think this could be useful.  Would there be some way of mapping a
&lt;br&gt;&amp;gt; work item to the data that it uses in some way?
&lt;br&gt;&lt;br&gt;Isn't that somewhat accomplished by using Terracotta Cluster Events?
&lt;br&gt;Or did I miss your point?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; We have actually built something like this on top of tim-messaging, which we
&lt;br&gt;&amp;gt; use to build and publish artifacts and web sites for the Terracotta Forge
&lt;br&gt;&amp;gt; projects.  If you are interested in taking a look you can check out the
&lt;br&gt;&amp;gt; project from here:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://svn.terracotta.org/repo/forge/projects/DistributedWorkQueue/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://svn.terracotta.org/repo/forge/projects/DistributedWorkQueue/trunk&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cool, I didn't know that: glad to see terracotta eats its own food :)
&lt;br&gt;&lt;br&gt;&amp;gt; Having a RESTful interface built-in to tim-messaging itself would of course be
&lt;br&gt;&amp;gt; very helpful to build systems such as that.
&lt;br&gt;&lt;br&gt;Agree: it will definitely be in the todo-list.
&lt;br&gt;&lt;br&gt;Thanks for your feedback,
&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Sergio B.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sergio Bossa
&lt;br&gt;Software Passionate and Open Source Enthusiast.
&lt;br&gt;URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25133865&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p25133865.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25117463</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-08-24T07:50:29Z</published>
	<updated>2009-08-24T07:50:29Z</updated>
	<author>
		<name>Jason Voegele-2</name>
	</author>
	<content type="html">On Friday 14 August 2009 01:04:24 pm Sergio Bossa wrote:
&lt;br&gt;&amp;gt; some time has passed since the latest Tim-Messaging 2.0 release, and
&lt;br&gt;&amp;gt; I'm now starting to think about new features for next releases.
&lt;br&gt;&amp;gt; Here are a few new features I was thinking at:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1) Given that data-affinity is more and more import, it may be good to
&lt;br&gt;&amp;gt; improve affinity-routing for tim-masterworker.
&lt;br&gt;&lt;br&gt;I definitely think this could be useful. &amp;nbsp;Would there be some way of mapping a 
&lt;br&gt;work item to the data that it uses in some way?
&lt;br&gt;&lt;br&gt;&amp;gt; 2) It may be cool to add a json-over-http interface to tim-pipes,
&lt;br&gt;&amp;gt; providing restful access to topologies and pipes.
&lt;br&gt;&amp;gt; 3) It may be even cooler to add a restful interface to
&lt;br&gt;&amp;gt; tim-masterworker, implementing a scalable, fault-tolerant, rest-based
&lt;br&gt;&amp;gt; master/worker server.
&lt;br&gt;&lt;br&gt;We have actually built something like this on top of tim-messaging, which we 
&lt;br&gt;use to build and publish artifacts and web sites for the Terracotta Forge 
&lt;br&gt;projects. &amp;nbsp;If you are interested in taking a look you can check out the 
&lt;br&gt;project from here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://svn.terracotta.org/repo/forge/projects/DistributedWorkQueue/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://svn.terracotta.org/repo/forge/projects/DistributedWorkQueue/trunk&lt;/a&gt;&lt;br&gt;&lt;br&gt;Having a RESTful interface built-in to tim-messaging itself would of course be 
&lt;br&gt;very helpful to build systems such as that.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jason Voegele
&lt;br&gt;It is always the best policy to tell the truth, unless, of course,
&lt;br&gt;you are an exceptionally good liar.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -- Jerome K. Jerome
&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25117463&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p25117463.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25111986</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-08-24T00:56:40Z</published>
	<updated>2009-08-24T00:56:40Z</updated>
	<author>
		<name>Sergio Bossa</name>
	</author>
	<content type="html">On Sat, Aug 22, 2009 at 4:36 PM, Hung Huynh&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25111986&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hhuynh@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Is there a way to let a rouge worker timeout if it gets stuck?
&lt;br&gt;&lt;br&gt;Thanks for your input, Hung.
&lt;br&gt;Do you mind making a more detailed description of your use case and
&lt;br&gt;feature request?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sergio Bossa
&lt;br&gt;Software Passionate and Open Source Enthusiast.
&lt;br&gt;URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25111986&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p25111986.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25094371</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-08-22T07:36:52Z</published>
	<updated>2009-08-22T07:36:52Z</updated>
	<author>
		<name>Hung Huynh-3</name>
	</author>
	<content type="html">Is there a way to let a rouge worker timeout if it gets stuck?
&lt;br&gt;&lt;br&gt;I've scanned the javadocs but couldn't find anything like that.
&lt;br&gt;&lt;br&gt;Sergio Bossa wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi guys,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; some time has passed since the latest Tim-Messaging 2.0 release, and
&lt;br&gt;&amp;gt; I'm now starting to think about new features for next releases.
&lt;br&gt;&amp;gt; Here are a few new features I was thinking at:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1) Given that data-affinity is more and more import, it may be good to
&lt;br&gt;&amp;gt; improve affinity-routing for tim-masterworker.
&lt;br&gt;&amp;gt; 2) It may be cool to add a json-over-http interface to tim-pipes,
&lt;br&gt;&amp;gt; providing restful access to topologies and pipes.
&lt;br&gt;&amp;gt; 3) It may be even cooler to add a restful interface to
&lt;br&gt;&amp;gt; tim-masterworker, implementing a scalable, fault-tolerant, rest-based
&lt;br&gt;&amp;gt; master/worker server.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What do you think?
&lt;br&gt;&amp;gt; Do you have any other particular idea/feature/suggestion?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Cheers!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sergio B.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25094371&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p25094371.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24986106</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-08-15T09:34:40Z</published>
	<updated>2009-08-15T09:34:40Z</updated>
	<author>
		<name>Taylor Gautier</name>
	</author>
	<content type="html">Strings should be best.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Aug 15, 2009, at 5:58 AM, Sergio Bossa &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24986106&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sergio.bossa@...&lt;/a&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Sat, Aug 15, 2009 at 1:58 AM, Taylor
&lt;br&gt;&amp;gt; Gautier&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24986106&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tgautier@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I would add serialization of messages to the list. Serializing should
&lt;br&gt;&amp;gt;&amp;gt; provide big improvements to throughput and messages behave more like
&lt;br&gt;&amp;gt;&amp;gt; messages and not distributed memory.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That's definitely a great idea: I'll put it on top of my list.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Talking about the serialized object, would it be better (for
&lt;br&gt;&amp;gt; increasing throughput) to serialize and share it in terracotta as a
&lt;br&gt;&amp;gt; string, or as a byte array?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Sergio Bossa
&lt;br&gt;&amp;gt; Software Passionate and Open Source Enthusiast.
&lt;br&gt;&amp;gt; URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;/div&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24986106&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p24986106.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24985759</id>
	<title>Re: New features for next Tim-Messaging releases</title>
	<published>2009-08-15T08:54:45Z</published>
	<updated>2009-08-15T08:54:45Z</updated>
	<author>
		<name>photon</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 3.2//EN&quot;&gt;
&lt;HTML&gt;
&lt;HEAD&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;META NAME=&quot;Generator&quot; CONTENT=&quot;MS Exchange Server version 08.00.0681.000&quot;&gt;
&lt;TITLE&gt;RE: [tc-users] New features for next Tim-Messaging releases&lt;/TITLE&gt;
&lt;/HEAD&gt;
&lt;BODY&gt;
&lt;!-- Converted from text/plain format --&gt;

&lt;P&gt;&lt;FONT SIZE=2&gt;Yeah the rest-based interfaces sound real useful. We did something similar with the Authinator for a distributed cache at &lt;A HREF=&quot;https://svn.terracotta.org/repo/forge/projects/authinator/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://svn.terracotta.org/repo/forge/projects/authinator/trunk&lt;/A&gt;&lt;BR&gt;
&lt;BR&gt;
The serialization based framework also sounds real useful.&lt;BR&gt;
Cheers&lt;BR&gt;
&lt;BR&gt;
&lt;BR&gt;
-----Original Message-----&lt;BR&gt;
From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24985759&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users-bounces@...&lt;/a&gt; [&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24985759&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users-bounces@...&lt;/a&gt;] On Behalf Of Sergio Bossa&lt;BR&gt;
Sent: Friday, August 14, 2009 10:04 AM&lt;BR&gt;
To: tc-forge-dev; tc-users&lt;BR&gt;
Subject: [tc-users] New features for next Tim-Messaging releases&lt;BR&gt;
&lt;BR&gt;
Hi guys,&lt;BR&gt;
&lt;BR&gt;
some time has passed since the latest Tim-Messaging 2.0 release, and&lt;BR&gt;
I'm now starting to think about new features for next releases.&lt;BR&gt;
Here are a few new features I was thinking at:&lt;BR&gt;
&lt;BR&gt;
1) Given that data-affinity is more and more import, it may be good to&lt;BR&gt;
improve affinity-routing for tim-masterworker.&lt;BR&gt;
2) It may be cool to add a json-over-http interface to tim-pipes,&lt;BR&gt;
providing restful access to topologies and pipes.&lt;BR&gt;
3) It may be even cooler to add a restful interface to&lt;BR&gt;
tim-masterworker, implementing a scalable, fault-tolerant, rest-based&lt;BR&gt;
master/worker server.&lt;BR&gt;
&lt;BR&gt;
What do you think?&lt;BR&gt;
Do you have any other particular idea/feature/suggestion?&lt;BR&gt;
&lt;BR&gt;
Thanks,&lt;BR&gt;
Cheers!&lt;BR&gt;
&lt;BR&gt;
Sergio B.&lt;BR&gt;
&lt;BR&gt;
--&lt;BR&gt;
Sergio Bossa&lt;BR&gt;
Software Passionate and Open Source Enthusiast.&lt;BR&gt;
URL: &lt;A HREF=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/A&gt;&lt;BR&gt;
_______________________________________________&lt;BR&gt;
tc-users mailing list&lt;BR&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24985759&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;&lt;BR&gt;
&lt;A HREF=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/A&gt;&lt;BR&gt;
&lt;/FONT&gt;
&lt;/P&gt;

&lt;/BODY&gt;
&lt;/HTML&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24985759&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p24985759.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24984430</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-08-15T06:00:31Z</published>
	<updated>2009-08-15T06:00:31Z</updated>
	<author>
		<name>Sergio Bossa</name>
	</author>
	<content type="html">On Fri, Aug 14, 2009 at 7:13 PM, Alex Miller&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24984430&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amiller@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Sergio, maybe it would be good to put
&lt;br&gt;&amp;gt; these ideas up where people could discuss?  Like your blog or our forums.
&lt;br&gt;&amp;gt;  I'm sure we could point a little traffic your way somehow.
&lt;br&gt;&lt;br&gt;Thanks Alex.
&lt;br&gt;I'll write a short blog post about it as soon as possible, and let you know.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Sergio B.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sergio Bossa
&lt;br&gt;Software Passionate and Open Source Enthusiast.
&lt;br&gt;URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24984430&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p24984430.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24984415</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-08-15T05:58:20Z</published>
	<updated>2009-08-15T05:58:20Z</updated>
	<author>
		<name>Sergio Bossa</name>
	</author>
	<content type="html">On Sat, Aug 15, 2009 at 1:58 AM, Taylor
&lt;br&gt;Gautier&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24984415&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tgautier@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I would add serialization of messages to the list. Serializing should
&lt;br&gt;&amp;gt; provide big improvements to throughput and messages behave more like
&lt;br&gt;&amp;gt; messages and not distributed memory.
&lt;br&gt;&lt;br&gt;That's definitely a great idea: I'll put it on top of my list.
&lt;br&gt;&lt;br&gt;Talking about the serialized object, would it be better (for
&lt;br&gt;increasing throughput) to serialize and share it in terracotta as a
&lt;br&gt;string, or as a byte array?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sergio Bossa
&lt;br&gt;Software Passionate and Open Source Enthusiast.
&lt;br&gt;URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24984415&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p24984415.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24980368</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-08-14T17:00:34Z</published>
	<updated>2009-08-14T17:00:34Z</updated>
	<author>
		<name>Ari Zilka</name>
	</author>
	<content type="html">yeah
&lt;br&gt;&lt;br&gt;2 modes. &amp;nbsp;serialization-based vs. identity-based.
&lt;br&gt;&lt;br&gt;--Ari
&lt;br&gt;&lt;br&gt;On Aug 14, 2009, at 4:58 PM, Taylor Gautier wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I would add serialization of messages to the list. Serializing &amp;nbsp;
&lt;br&gt;&amp;gt; should provide big improvements to throughput and messages behave &amp;nbsp;
&lt;br&gt;&amp;gt; more like messages and not distributed memory. I think the latter is &amp;nbsp;
&lt;br&gt;&amp;gt; useful of course but I think there's also a use for the former.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Aug 14, 2009, at 10:13 AM, Alex Miller &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24980368&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amiller@...&lt;/a&gt;&amp;gt; &amp;nbsp;wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Those all sound like cool features to me although I have little feel
&lt;br&gt;&amp;gt;&amp;gt; for which of them are actually most in need.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm cc'ing some folks that might have a better feel on the needs of
&lt;br&gt;&amp;gt;&amp;gt; actual tim-messaging and tim-pipes users. &amp;nbsp;Sergio, maybe it would be
&lt;br&gt;&amp;gt;&amp;gt; good to put these ideas up where people could discuss? &amp;nbsp;Like your &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; blog
&lt;br&gt;&amp;gt;&amp;gt; or our forums. &amp;nbsp;I'm sure we could point a little traffic your way
&lt;br&gt;&amp;gt;&amp;gt; somehow.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Aug 14, 2009, at 12:04 PM, Sergio Bossa wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi guys,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; some time has passed since the latest Tim-Messaging 2.0 release, and
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I'm now starting to think about new features for next releases.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Here are a few new features I was thinking at:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 1) Given that data-affinity is more and more import, it may be &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; good to
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; improve affinity-routing for tim-masterworker.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 2) It may be cool to add a json-over-http interface to tim-pipes,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; providing restful access to topologies and pipes.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 3) It may be even cooler to add a restful interface to
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; tim-masterworker, implementing a scalable, fault-tolerant, rest- 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; based
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; master/worker server.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; What do you think?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Do you have any other particular idea/feature/suggestion?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Cheers!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Sergio B.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -- 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Sergio Bossa
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Software Passionate and Open Source Enthusiast.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; tc-forge-dev mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24980368&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-forge-dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-forge-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-forge-dev&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; tc-forge-dev mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24980368&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-forge-dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-forge-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-forge-dev&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24980368&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p24980368.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24980354</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-08-14T16:58:26Z</published>
	<updated>2009-08-14T16:58:26Z</updated>
	<author>
		<name>Taylor Gautier</name>
	</author>
	<content type="html">I would add serialization of messages to the list. Serializing should &amp;nbsp;
&lt;br&gt;provide big improvements to throughput and messages behave more like &amp;nbsp;
&lt;br&gt;messages and not distributed memory. I think the latter is useful of &amp;nbsp;
&lt;br&gt;course but I think there's also a use for the former.
&lt;br&gt;&lt;br&gt;On Aug 14, 2009, at 10:13 AM, Alex Miller &amp;nbsp;
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24980354&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amiller@...&lt;/a&gt;&amp;gt; &amp;nbsp;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Those all sound like cool features to me although I have little feel
&lt;br&gt;&amp;gt; for which of them are actually most in need.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm cc'ing some folks that might have a better feel on the needs of
&lt;br&gt;&amp;gt; actual tim-messaging and tim-pipes users. &amp;nbsp;Sergio, maybe it would be
&lt;br&gt;&amp;gt; good to put these ideas up where people could discuss? &amp;nbsp;Like your blog
&lt;br&gt;&amp;gt; or our forums. &amp;nbsp;I'm sure we could point a little traffic your way
&lt;br&gt;&amp;gt; somehow.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Aug 14, 2009, at 12:04 PM, Sergio Bossa wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi guys,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; some time has passed since the latest Tim-Messaging 2.0 release, and
&lt;br&gt;&amp;gt;&amp;gt; I'm now starting to think about new features for next releases.
&lt;br&gt;&amp;gt;&amp;gt; Here are a few new features I was thinking at:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 1) Given that data-affinity is more and more import, it may be good &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; to
&lt;br&gt;&amp;gt;&amp;gt; improve affinity-routing for tim-masterworker.
&lt;br&gt;&amp;gt;&amp;gt; 2) It may be cool to add a json-over-http interface to tim-pipes,
&lt;br&gt;&amp;gt;&amp;gt; providing restful access to topologies and pipes.
&lt;br&gt;&amp;gt;&amp;gt; 3) It may be even cooler to add a restful interface to
&lt;br&gt;&amp;gt;&amp;gt; tim-masterworker, implementing a scalable, fault-tolerant, rest-based
&lt;br&gt;&amp;gt;&amp;gt; master/worker server.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; What do you think?
&lt;br&gt;&amp;gt;&amp;gt; Do you have any other particular idea/feature/suggestion?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;&amp;gt; Cheers!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Sergio B.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -- 
&lt;br&gt;&amp;gt;&amp;gt; Sergio Bossa
&lt;br&gt;&amp;gt;&amp;gt; Software Passionate and Open Source Enthusiast.
&lt;br&gt;&amp;gt;&amp;gt; URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; tc-forge-dev mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24980354&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-forge-dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-forge-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-forge-dev&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; tc-forge-dev mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24980354&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-forge-dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-forge-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-forge-dev&lt;/a&gt;&lt;/div&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24980354&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p24980354.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24975349</id>
	<title>Re: [tc-forge-dev] New features for next Tim-Messaging releases</title>
	<published>2009-08-14T10:13:55Z</published>
	<updated>2009-08-14T10:13:55Z</updated>
	<author>
		<name>Alex Miller-8</name>
	</author>
	<content type="html">Those all sound like cool features to me although I have little feel &amp;nbsp;
&lt;br&gt;for which of them are actually most in need.
&lt;br&gt;&lt;br&gt;I'm cc'ing some folks that might have a better feel on the needs of &amp;nbsp;
&lt;br&gt;actual tim-messaging and tim-pipes users. &amp;nbsp;Sergio, maybe it would be &amp;nbsp;
&lt;br&gt;good to put these ideas up where people could discuss? &amp;nbsp;Like your blog &amp;nbsp;
&lt;br&gt;or our forums. &amp;nbsp;I'm sure we could point a little traffic your way &amp;nbsp;
&lt;br&gt;somehow.
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Aug 14, 2009, at 12:04 PM, Sergio Bossa wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi guys,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; some time has passed since the latest Tim-Messaging 2.0 release, and
&lt;br&gt;&amp;gt; I'm now starting to think about new features for next releases.
&lt;br&gt;&amp;gt; Here are a few new features I was thinking at:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1) Given that data-affinity is more and more import, it may be good to
&lt;br&gt;&amp;gt; improve affinity-routing for tim-masterworker.
&lt;br&gt;&amp;gt; 2) It may be cool to add a json-over-http interface to tim-pipes,
&lt;br&gt;&amp;gt; providing restful access to topologies and pipes.
&lt;br&gt;&amp;gt; 3) It may be even cooler to add a restful interface to
&lt;br&gt;&amp;gt; tim-masterworker, implementing a scalable, fault-tolerant, rest-based
&lt;br&gt;&amp;gt; master/worker server.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What do you think?
&lt;br&gt;&amp;gt; Do you have any other particular idea/feature/suggestion?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Cheers!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sergio B.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Sergio Bossa
&lt;br&gt;&amp;gt; Software Passionate and Open Source Enthusiast.
&lt;br&gt;&amp;gt; URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; tc-forge-dev mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24975349&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-forge-dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-forge-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-forge-dev&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24975349&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p24975349.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24975272</id>
	<title>New features for next Tim-Messaging releases</title>
	<published>2009-08-14T10:04:24Z</published>
	<updated>2009-08-14T10:04:24Z</updated>
	<author>
		<name>Sergio Bossa</name>
	</author>
	<content type="html">Hi guys,
&lt;br&gt;&lt;br&gt;some time has passed since the latest Tim-Messaging 2.0 release, and
&lt;br&gt;I'm now starting to think about new features for next releases.
&lt;br&gt;Here are a few new features I was thinking at:
&lt;br&gt;&lt;br&gt;1) Given that data-affinity is more and more import, it may be good to
&lt;br&gt;improve affinity-routing for tim-masterworker.
&lt;br&gt;2) It may be cool to add a json-over-http interface to tim-pipes,
&lt;br&gt;providing restful access to topologies and pipes.
&lt;br&gt;3) It may be even cooler to add a restful interface to
&lt;br&gt;tim-masterworker, implementing a scalable, fault-tolerant, rest-based
&lt;br&gt;master/worker server.
&lt;br&gt;&lt;br&gt;What do you think?
&lt;br&gt;Do you have any other particular idea/feature/suggestion?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Cheers!
&lt;br&gt;&lt;br&gt;Sergio B.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sergio Bossa
&lt;br&gt;Software Passionate and Open Source Enthusiast.
&lt;br&gt;URL: &lt;a href=&quot;http://www.linkedin.com/in/sergiob&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/sergiob&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24975272&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-features-for-next-Tim-Messaging-releases-tp24975272p24975272.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24507005</id>
	<title>Changes in some common TIMs for 3.1</title>
	<published>2009-07-15T15:19:13Z</published>
	<updated>2009-07-15T15:19:13Z</updated>
	<author>
		<name>Alex Miller-8</name>
	</author>
	<content type="html">As a part of our upcoming 3.1 release, I wanted to mention that we &amp;nbsp;
&lt;br&gt;have renamed a bunch of TIMs on the Terracotta Forge. &amp;nbsp;We'll be &amp;nbsp;
&lt;br&gt;talking more about these in the release notes and in the docs when 3.1 &amp;nbsp;
&lt;br&gt;comes out but consider this a preview if you're on the bleeding edge.
&lt;br&gt;&lt;br&gt;tim-concurrent-collections
&lt;br&gt;====================
&lt;br&gt;&lt;br&gt;This TIM is basically a holder for the ConcurrentStringMap we've had &amp;nbsp;
&lt;br&gt;since 2.7.2 or so. &amp;nbsp;This data structure continues to be a key focus &amp;nbsp;
&lt;br&gt;for us as the cornerstone of map-based components and has been &amp;nbsp;
&lt;br&gt;substantially updated in 3.1 to improve performance, reduce memory, &amp;nbsp;
&lt;br&gt;and make it more generic. &amp;nbsp;In particular, this data structure is no &amp;nbsp;
&lt;br&gt;longer limited to String keys.
&lt;br&gt;&lt;br&gt;The new and improved version has been renamed and put in a new package:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; org.terracotta.collections.ConcurrentDistributedMap
&lt;br&gt;&lt;br&gt;The prior class &amp;nbsp;
&lt;br&gt;(org.terracotta.modules.concurrent.collections.ConcurrentStringMap) &amp;nbsp;
&lt;br&gt;still exists and is just a shell subclassing &amp;nbsp;
&lt;br&gt;ConcurrentDistributedMap. &amp;nbsp;This class will still exist in 3.1 but is &amp;nbsp;
&lt;br&gt;now deprecated. &amp;nbsp;We intend to remove it in the next major release.
&lt;br&gt;&lt;br&gt;&lt;br&gt;tim-map-evictor
&lt;br&gt;============
&lt;br&gt;&lt;br&gt;This TIM used to use a clustered ConcurrentHashMap and added a simple &amp;nbsp;
&lt;br&gt;evictor that could provide cache-like functionality and eviction for &amp;nbsp;
&lt;br&gt;TTI or TTL. &amp;nbsp;This code has also been substantially rewritten and &amp;nbsp;
&lt;br&gt;upgraded to serve as the backing data structure for the Terracotta &amp;nbsp;
&lt;br&gt;Second Level Cache for Hibernate.
&lt;br&gt;&lt;br&gt;The TIM itself has been renamed to:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tim-distributed-cache
&lt;br&gt;&lt;br&gt;The interface (DistributedMap) and builder (DistributedMapBuilder) &amp;nbsp;
&lt;br&gt;have been moved to a new package and renamed:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; org.terracotta.cache.DistributedCache
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; org.terracotta.cache.DistributedCacheBuilder
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;tim-hibernate
&lt;br&gt;==========
&lt;br&gt;&lt;br&gt;For a long time we have had a Hibernate TIM that provided support for &amp;nbsp;
&lt;br&gt;a) clustered detached Hibernate entities and b) supporting clustered &amp;nbsp;
&lt;br&gt;second level cache providers such as Ehcache. &amp;nbsp;Due to our Hibernate &amp;nbsp;
&lt;br&gt;focus in this release and the new Hibernate second level cache, we &amp;nbsp;
&lt;br&gt;have killed the old name and there are now a number of forge top-level &amp;nbsp;
&lt;br&gt;project Hibernate TIMs. &amp;nbsp;Many of these are actually containers for TIM &amp;nbsp;
&lt;br&gt;flavors supporting Hibernate 3.2 or 3.3.
&lt;br&gt;&lt;br&gt;- tim-hibernate-concurrency - an *internal* TIM holding Hibernate &amp;nbsp;
&lt;br&gt;concurrency fixes used by the other tims - you should never need to &amp;nbsp;
&lt;br&gt;specify this directly
&lt;br&gt;- tim-hibernate-entity - prior support for Hibernate clustered &amp;nbsp;
&lt;br&gt;detached entities
&lt;br&gt;- tim-hibernate-cache-deprecated - prior support for Hibernate with &amp;nbsp;
&lt;br&gt;clustered ehcache second level cache.
&lt;br&gt;- tim-hibernate-cache - the brand new better than nachos Terracotta &amp;nbsp;
&lt;br&gt;Hibernate second level cache!
&lt;br&gt;&lt;br&gt;There is much more to say about the new cache and a new deployment &amp;nbsp;
&lt;br&gt;mode that does not require a boot jar but I'll leave that for the &amp;nbsp;
&lt;br&gt;release!
&lt;br&gt;&lt;br&gt;Hope this is useful for some of you out there in user land...we're &amp;nbsp;
&lt;br&gt;shooting for the first stable version of 3.1 around the end of the &amp;nbsp;
&lt;br&gt;month. &amp;nbsp;All of the forge changes above are there now in the 3.1 &amp;nbsp;
&lt;br&gt;snapshots.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24507005&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Changes-in-some-common-TIMs-for-3.1-tp24507005p24507005.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24335274</id>
	<title>Re: Tim-Messaging 2.0.0 released!</title>
	<published>2009-07-04T07:55:59Z</published>
	<updated>2009-07-04T07:55:59Z</updated>
	<author>
		<name>Orion Letizi</name>
	</author>
	<content type="html">Awesome, Sergio. &amp;nbsp;I just added it to the community highlights page and &amp;nbsp;
&lt;br&gt;on the homepage. &amp;nbsp;It'll get pushed out on Wednesday or Friday.
&lt;br&gt;&lt;br&gt;In addition to crediting you in the description, do you want me to &amp;nbsp;
&lt;br&gt;provide a link to your website?
&lt;br&gt;&lt;br&gt;--Orion
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Jul 4, 2009, at 3:47 AM, Sergio Bossa wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; - Announcing Tim-Messaging 2.0.0 -
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Tim-Messaging 2.0.0 has been released, providing to Terracotta 3.0.x
&lt;br&gt;&amp;gt; users several fixes, important new features and improved documentation
&lt;br&gt;&amp;gt; and samples.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - How to get and know more -
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; See Tim-Messaging web site on Terracotta Forge at:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://forge.terracotta.org/releases/projects/tim-messaging&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forge.terracotta.org/releases/projects/tim-messaging&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - What's new -
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here's a list of the most important features for the two Tim-Messaging
&lt;br&gt;&amp;gt; sub-modules:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Tim-Pipes 2.0.0
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; * Simplified Router APIs.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Tim-MasterWorker 2.0.0
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; * Completely dynamic, transparent, management of master/worker
&lt;br&gt;&amp;gt; instances for both WorkManager and Executor APIs.
&lt;br&gt;&amp;gt; * Master-to-Master fail-over.
&lt;br&gt;&amp;gt; * Worker fail-over, with automatic work re-scheduling.
&lt;br&gt;&amp;gt; * Advanced APIs for implementing data-affinity routing.
&lt;br&gt;&amp;gt; * Improved documentation and samples.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ... enjoy!
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24335274&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24335274&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tim-Messaging-2.0.0-released%21-tp24333466p24335274.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24333466</id>
	<title>Tim-Messaging 2.0.0 released!</title>
	<published>2009-07-04T03:47:55Z</published>
	<updated>2009-07-04T03:47:55Z</updated>
	<author>
		<name>Sergio Bossa</name>
	</author>
	<content type="html">- Announcing Tim-Messaging 2.0.0 -
&lt;br&gt;&lt;br&gt;Tim-Messaging 2.0.0 has been released, providing to Terracotta 3.0.x
&lt;br&gt;users several fixes, important new features and improved documentation
&lt;br&gt;and samples.
&lt;br&gt;&lt;br&gt;- How to get and know more -
&lt;br&gt;&lt;br&gt;See Tim-Messaging web site on Terracotta Forge at:
&lt;br&gt;&lt;a href=&quot;http://forge.terracotta.org/releases/projects/tim-messaging&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forge.terracotta.org/releases/projects/tim-messaging&lt;/a&gt;&lt;br&gt;&lt;br&gt;- What's new -
&lt;br&gt;&lt;br&gt;Here's a list of the most important features for the two Tim-Messaging
&lt;br&gt;sub-modules:
&lt;br&gt;&lt;br&gt;Tim-Pipes 2.0.0
&lt;br&gt;&lt;br&gt;* Simplified Router APIs.
&lt;br&gt;&lt;br&gt;Tim-MasterWorker 2.0.0
&lt;br&gt;&lt;br&gt;* Completely dynamic, transparent, management of master/worker
&lt;br&gt;instances for both WorkManager and Executor APIs.
&lt;br&gt;* Master-to-Master fail-over.
&lt;br&gt;* Worker fail-over, with automatic work re-scheduling.
&lt;br&gt;* Advanced APIs for implementing data-affinity routing.
&lt;br&gt;* Improved documentation and samples.
&lt;br&gt;&lt;br&gt;... enjoy!
&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24333466&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tim-Messaging-2.0.0-released%21-tp24333466p24333466.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24290878</id>
	<title>Just an early heads up for 3.1 on api jar</title>
	<published>2009-07-01T07:34:19Z</published>
	<updated>2009-07-01T07:34:19Z</updated>
	<author>
		<name>Alex Miller-8</name>
	</author>
	<content type="html">Some background is in this jira:
&lt;br&gt;&lt;a href=&quot;http://jira.terracotta.org/jira/browse/FORGE-456&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.terracotta.org/jira/browse/FORGE-456&lt;/a&gt;&lt;br&gt;&lt;br&gt;In 3.0, we have an artifact with coordinates org.terracotta.api:api &amp;nbsp;
&lt;br&gt;that contains the cluster event and data locality apis for &amp;nbsp;
&lt;br&gt;Terracotta. &amp;nbsp;We put the same jar with the same name in the kit. &amp;nbsp;Due &amp;nbsp;
&lt;br&gt;to Maven naming conventions, the name is something like &amp;nbsp;
&lt;br&gt;api-1.0.0.jar. &amp;nbsp;Users may be using this jar to get access to these &amp;nbsp;
&lt;br&gt;apis in their classpath, but it's been noted that just naming a jar &amp;nbsp;
&lt;br&gt;&amp;quot;api&amp;quot; is not particularly helpful or unique.
&lt;br&gt;&lt;br&gt;So the coordinates changed yesterday to &amp;nbsp;org.terracotta.api:terracotta- 
&lt;br&gt;api and the jar will now called terracotta-api-1.1.0.jar for 3.1. &amp;nbsp;At &amp;nbsp;
&lt;br&gt;this point the kit and (I think) all forge projects that depended on &amp;nbsp;
&lt;br&gt;it (tim-async, tim-map-evictor, tim-messaging) have been updated.
&lt;br&gt;&lt;br&gt;Let me know if you have any questions...
&lt;br&gt;&lt;br&gt;Alex
&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24290878&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Just-an-early-heads-up-for-3.1-on-api-jar-tp24290878p24290878.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23847443</id>
	<title>Re: Max server object count</title>
	<published>2009-06-03T01:22:29Z</published>
	<updated>2009-06-03T01:22:29Z</updated>
	<author>
		<name>Saravanan Subbiah</name>
	</author>
	<content type="html">Since we dont share anything between the L2s other than control data, it should be able to handle 4 billion objects. But 
&lt;br&gt;there are some gotchas, like you cant have 1 shared collection in the system with more than 2 billion entries, which is 
&lt;br&gt;anyway not possible with current java collections. Also the L1s connect to both the L2s and fault the shared graph as 
&lt;br&gt;needed. We dont restrict the size of the faulted graph, its a function of available memory at the L1. So as long as the 
&lt;br&gt;&amp;nbsp; L1 doesnt try to fault more than 2 billion objects at the same time, it should be fine.
&lt;br&gt;&lt;br&gt;All this is theoretical limit though, not sure if I am overlooking something.
&lt;br&gt;&lt;br&gt;Artyom Sokolov wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; What about 2 active L2 with striping enabled? Would be there 4 billion
&lt;br&gt;&amp;gt; objects or still 2 billions?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Tue, Jun 2, 2009 at 2:06 PM, Saravanan Subbiah
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23847443&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssubbiah@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Currently at various places in our code base we use java collections to store/operate on the list of shared objects in
&lt;br&gt;&amp;gt;&amp;gt; the system. As you know java collections return an int for getSize() (and many uses int for internal index pointers
&lt;br&gt;&amp;gt;&amp;gt; too). So theoretically it can only handle Integer.MAX_VALUE elements in the collection. This is ok for java collections
&lt;br&gt;&amp;gt;&amp;gt; as this is already a high number (2 Billion) and there is probably not enough memory to hold that many elements in the
&lt;br&gt;&amp;gt;&amp;gt; collection anyways. (This is becoming untrue fast with 64bit VMs)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; But since TC can page objects in/out from disk, it is possible for us to handle 2+ billion objects, if we fix certain
&lt;br&gt;&amp;gt;&amp;gt; areas of our code base to not use java collections and use some special datastructures or fix the code logic to operate
&lt;br&gt;&amp;gt;&amp;gt; on the list in chunks. Anyways this is not yet done, so the word of warning in the release note.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; That being said, this limit is for the current live objects in the system and the limit is 2 billion. So its unlikely
&lt;br&gt;&amp;gt;&amp;gt; that most people will ever hit that limit.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Artyom Sokolov wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Release+Notes&lt;/a&gt;&amp;nbsp;says that
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;Max server object count capped by int. There could be some unexpected
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; behavior if the database has more than max int/2 objects in it.&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; It would be appreciated if someone describes what can happen in this
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; case and why.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23847443&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23847443&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23847443&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;/div&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23847443&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Max-server-object-count-tp23807390p23847443.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23829253</id>
	<title>Re: Max server object count</title>
	<published>2009-06-02T02:27:42Z</published>
	<updated>2009-06-02T02:27:42Z</updated>
	<author>
		<name>Artyom Sokolov</name>
	</author>
	<content type="html">What about 2 active L2 with striping enabled? Would be there 4 billion
&lt;br&gt;objects or still 2 billions?
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;On Tue, Jun 2, 2009 at 2:06 PM, Saravanan Subbiah
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23829253&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssubbiah@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Currently at various places in our code base we use java collections to store/operate on the list of shared objects in
&lt;br&gt;&amp;gt; the system. As you know java collections return an int for getSize() (and many uses int for internal index pointers
&lt;br&gt;&amp;gt; too). So theoretically it can only handle Integer.MAX_VALUE elements in the collection. This is ok for java collections
&lt;br&gt;&amp;gt; as this is already a high number (2 Billion) and there is probably not enough memory to hold that many elements in the
&lt;br&gt;&amp;gt; collection anyways. (This is becoming untrue fast with 64bit VMs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But since TC can page objects in/out from disk, it is possible for us to handle 2+ billion objects, if we fix certain
&lt;br&gt;&amp;gt; areas of our code base to not use java collections and use some special datastructures or fix the code logic to operate
&lt;br&gt;&amp;gt; on the list in chunks. Anyways this is not yet done, so the word of warning in the release note.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That being said, this limit is for the current live objects in the system and the limit is 2 billion. So its unlikely
&lt;br&gt;&amp;gt; that most people will ever hit that limit.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Artyom Sokolov wrote:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Release+Notes&lt;/a&gt;&amp;nbsp;says that
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;Max server object count capped by int. There could be some unexpected
&lt;br&gt;&amp;gt;&amp;gt; behavior if the database has more than max int/2 objects in it.&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It would be appreciated if someone describes what can happen in this
&lt;br&gt;&amp;gt;&amp;gt; case and why.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23829253&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23829253&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23829253&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Max-server-object-count-tp23807390p23829253.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23829015</id>
	<title>Re: Max server object count</title>
	<published>2009-06-02T02:06:15Z</published>
	<updated>2009-06-02T02:06:15Z</updated>
	<author>
		<name>Saravanan Subbiah</name>
	</author>
	<content type="html">Currently at various places in our code base we use java collections to store/operate on the list of shared objects in 
&lt;br&gt;the system. As you know java collections return an int for getSize() (and many uses int for internal index pointers 
&lt;br&gt;too). So theoretically it can only handle Integer.MAX_VALUE elements in the collection. This is ok for java collections 
&lt;br&gt;as this is already a high number (2 Billion) and there is probably not enough memory to hold that many elements in the 
&lt;br&gt;collection anyways. (This is becoming untrue fast with 64bit VMs)
&lt;br&gt;&lt;br&gt;But since TC can page objects in/out from disk, it is possible for us to handle 2+ billion objects, if we fix certain 
&lt;br&gt;areas of our code base to not use java collections and use some special datastructures or fix the code logic to operate 
&lt;br&gt;on the list in chunks. Anyways this is not yet done, so the word of warning in the release note.
&lt;br&gt;&lt;br&gt;That being said, this limit is for the current live objects in the system and the limit is 2 billion. So its unlikely 
&lt;br&gt;that most people will ever hit that limit.
&lt;br&gt;&lt;br&gt;Artyom Sokolov wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Release+Notes&lt;/a&gt;&amp;nbsp;says that
&lt;br&gt;&amp;gt; &amp;quot;Max server object count capped by int. There could be some unexpected
&lt;br&gt;&amp;gt; behavior if the database has more than max int/2 objects in it.&amp;quot;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It would be appreciated if someone describes what can happen in this
&lt;br&gt;&amp;gt; case and why.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23829015&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;/div&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23829015&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Max-server-object-count-tp23807390p23829015.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23807390</id>
	<title>Max server object count</title>
	<published>2009-05-31T15:02:11Z</published>
	<updated>2009-05-31T15:02:11Z</updated>
	<author>
		<name>Artyom Sokolov</name>
	</author>
	<content type="html">&lt;a href=&quot;http://www.terracotta.org/web/display/docs/Release+Notes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/web/display/docs/Release+Notes&lt;/a&gt;&amp;nbsp;says that
&lt;br&gt;&amp;quot;Max server object count capped by int. There could be some unexpected
&lt;br&gt;behavior if the database has more than max int/2 objects in it.&amp;quot;
&lt;br&gt;&lt;br&gt;It would be appreciated if someone describes what can happen in this
&lt;br&gt;case and why.
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23807390&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Max-server-object-count-tp23807390p23807390.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23676113</id>
	<title>Re: Active/Passive w/two active servers</title>
	<published>2009-05-22T11:51:50Z</published>
	<updated>2009-05-22T11:51:50Z</updated>
	<author>
		<name>Robert Hanson-4</name>
	</author>
	<content type="html">Yes, the servers are currently in sync, I just check to verify this.
&lt;br&gt;One of the boxes is new, and was out of sync last week, but I believe
&lt;br&gt;that was resolved prior to Monday. &amp;nbsp;I will check with the team that
&lt;br&gt;handles that to make sure they didn't do anything yesterday.
&lt;br&gt;&lt;br&gt;RE the logs, I was too clever for my own good. &amp;nbsp;What I sent weren't
&lt;br&gt;the latest logs. &amp;nbsp;I restarted one of the servers and clients this
&lt;br&gt;morning when I saw the problem, so I think I sent Galileo's &amp;quot;.3&amp;quot; log
&lt;br&gt;file, and Pasteur's &amp;quot;.1&amp;quot; because those were the ones for that time.
&lt;br&gt;&lt;br&gt;So this time I am resending all of the logs back to 5/20, with the
&lt;br&gt;original file names.
&lt;br&gt;&lt;br&gt;Rob
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Fri, May 22, 2009 at 1:55 PM, Manoj Govindassamy
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23676113&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mgovinda@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Rob,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Do the servers galileo and pasteur have same system time
&lt;br&gt;&amp;gt; synchronization. The server logs are 2 minutes apart. If they are in
&lt;br&gt;&amp;gt; time sync, please send us the older version (.1) of server logs too.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks,
&lt;br&gt;&amp;gt; Manoj
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On May 22, 2009, at 10:02 PM, Robert Hanson wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks, logs are attached.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This isn't in production yet, so you will see a lot of restarts around
&lt;br&gt;&amp;gt;&amp;gt; 6pm-6:30 while I tweaked the configuration.  I believe the error
&lt;br&gt;&amp;gt;&amp;gt; occurred around 9pm.  And like I said, this isn't in production, so
&lt;br&gt;&amp;gt;&amp;gt; there was likely no activity on the clients.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; P.S. - I already talked to a TC sales rep, it is beginning to look
&lt;br&gt;&amp;gt;&amp;gt; like a support contract will be a good thing to have :)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks again.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Rob
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Fri, May 22, 2009 at 11:43 AM, Steven Harris
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23676113&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steve@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; We could take a look if you attach the logs from all the clients and
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; servers.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Steve Harris
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;Terracotta.  It's ten pounds of awesome in a five pound sack.&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On May 22, 2009, at 8:39 AM, Robert Hanson wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; So... I think I have everything set up right, but I hope I am missing
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; something.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; The cluster has 2 servers (active/passive) and two clients
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; (tomcat6/spring-security tims).  The servers are located a couple
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; thousand miles from each other, and the clients are co-located on the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; same boxes as the servers.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; This morning I checked out the TC Dev Console and both servers were
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; active and only one client was appearing.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; How can I avoid this situation?  And I missing something in the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; config?  I wouldn't be so worried, but it has happened twice in 2
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; days... and this is a new install, so 2-days basically means every
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; day.  And that worries me a bit.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Any/all help would be appreciated.  Thanks.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;tc:tc-config xmlns:tc=&amp;quot;&lt;a href=&quot;http://www.terracotta.org/config&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/config&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        xsi:schemaLocation=&amp;quot;&lt;a href=&quot;http://www.terracotta.org/schema/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/schema/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; terracotta-4.xsd&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        &amp;lt;tc-properties&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;property name=&amp;quot;l2.l1reconnect.enabled&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;property name=&amp;quot;l2.l1reconnect.timeout.millis&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; value=&amp;quot;10000&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;property
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; name=&amp;quot;l2.objectmanager.fault.logging.enabled&amp;quot; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;property name=&amp;quot;l2.nha.tcgroupcomm.reconnect.enabled&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;property name=&amp;quot;l2.nha.tcgroupcomm.reconnect.timeout&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; value=&amp;quot;10000&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        &amp;lt;/tc-properties&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        &amp;lt;servers&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;server host=&amp;quot;1.1.1.1&amp;quot; name=&amp;quot;galileo&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;data&amp;gt;/usr/local/terracotta/data/galileo&amp;lt;/
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; data&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;logs&amp;gt;/usr/local/terracotta/logs/galileo&amp;lt;/
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; logs&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;l2-group-port&amp;gt;9530&amp;lt;/l2-group-port&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;dso-port&amp;gt;9510&amp;lt;/dso-port&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;persistence&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                        &amp;lt;mode&amp;gt;permanent-store&amp;lt;/mode&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;/persistence&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;/dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;/server&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;server host=&amp;quot;2.2.2.2&amp;quot; name=&amp;quot;pasteur&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;data&amp;gt;/usr/local/terracotta/data/pasteur&amp;lt;/
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; data&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;logs&amp;gt;/usr/local/terracotta/logs/pasteur&amp;lt;/
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; logs&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;l2-group-port&amp;gt;9530&amp;lt;/l2-group-port&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;dso-port&amp;gt;9510&amp;lt;/dso-port&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;persistence&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                        &amp;lt;mode&amp;gt;permanent-store&amp;lt;/mode&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;/persistence&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;/dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;/server&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;ha&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;mode&amp;gt;networked-active-passive&amp;lt;/mode&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;networked-active-passive&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;election-time&amp;gt;5&amp;lt;/election-time&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;/networked-active-passive&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;/ha&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;update-check&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;enabled&amp;gt;true&amp;lt;/enabled&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;/update-check&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        &amp;lt;/servers&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        &amp;lt;clients&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;logs&amp;gt;/usr/local/terracotta/logs/client-logs&amp;lt;/logs&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;statistics&amp;gt;/usr/local/terracotta/data/%(tc.node-name)/client-
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; statistics&amp;lt;/statistics&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;modules&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;module name=&amp;quot;tim-tomcat-6.0&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; version=&amp;quot;1.0.1&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;module name=&amp;quot;tim-spring-security-2.0&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; version=&amp;quot;1.1.1&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;/modules&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        &amp;lt;/clients&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        &amp;lt;application&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;instrumented-classes&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;class-expression&amp;gt;com.company.sensor.remoting.model.*&amp;lt;/class-
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; expression&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;/include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;class-expression&amp;gt;com.company.calendar.model.*&amp;lt;/class-expression&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;/include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;class-expression&amp;gt;com.company..shared..*&amp;lt;/class-expression&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;/include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;/instrumented-classes&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;web-applications&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                                &amp;lt;web-application&amp;gt;ROOT&amp;lt;/web-
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; application&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                        &amp;lt;/web-applications&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                &amp;lt;/dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        &amp;lt;/application&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;/tc:tc-config&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23676113&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23676113&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;logs.zip&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23676113&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23676113&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23676113&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;tc-logs.zip&lt;/strong&gt; (319K) &lt;a href=&quot;http://old.nabble.com/attachment/23676113/0/tc-logs.zip&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Active-Passive-w-two-active-servers-tp23673088p23676113.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23675320</id>
	<title>Re: Active/Passive w/two active servers</title>
	<published>2009-05-22T10:55:54Z</published>
	<updated>2009-05-22T10:55:54Z</updated>
	<author>
		<name>Manoj Govindassamy</name>
	</author>
	<content type="html">Hi Rob,
&lt;br&gt;&lt;br&gt;Do the servers galileo and pasteur have same system time &amp;nbsp;
&lt;br&gt;synchronization. The server logs are 2 minutes apart. If they are in &amp;nbsp;
&lt;br&gt;time sync, please send us the older version (.1) of server logs too.
&lt;br&gt;&lt;br&gt;thanks,
&lt;br&gt;Manoj
&lt;br&gt;&lt;br&gt;&lt;br&gt;On May 22, 2009, at 10:02 PM, Robert Hanson wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thanks, logs are attached.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This isn't in production yet, so you will see a lot of restarts around
&lt;br&gt;&amp;gt; 6pm-6:30 while I tweaked the configuration. &amp;nbsp;I believe the error
&lt;br&gt;&amp;gt; occurred around 9pm. &amp;nbsp;And like I said, this isn't in production, so
&lt;br&gt;&amp;gt; there was likely no activity on the clients.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; P.S. - I already talked to a TC sales rep, it is beginning to look
&lt;br&gt;&amp;gt; like a support contract will be a good thing to have :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks again.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Rob
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Fri, May 22, 2009 at 11:43 AM, Steven Harris
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23675320&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steve@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt; We could take a look if you attach the logs from all the clients and
&lt;br&gt;&amp;gt;&amp;gt; servers.
&lt;br&gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt; Steve Harris
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;Terracotta. &amp;nbsp;It's ten pounds of awesome in a five pound sack.&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On May 22, 2009, at 8:39 AM, Robert Hanson wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; So... I think I have everything set up right, but I hope I am missing
&lt;br&gt;&amp;gt;&amp;gt; something.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The cluster has 2 servers (active/passive) and two clients
&lt;br&gt;&amp;gt;&amp;gt; (tomcat6/spring-security tims). &amp;nbsp;The servers are located a couple
&lt;br&gt;&amp;gt;&amp;gt; thousand miles from each other, and the clients are co-located on the
&lt;br&gt;&amp;gt;&amp;gt; same boxes as the servers.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This morning I checked out the TC Dev Console and both servers were
&lt;br&gt;&amp;gt;&amp;gt; active and only one client was appearing.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; How can I avoid this situation? &amp;nbsp;And I missing something in the
&lt;br&gt;&amp;gt;&amp;gt; config? &amp;nbsp;I wouldn't be so worried, but it has happened twice in 2
&lt;br&gt;&amp;gt;&amp;gt; days... and this is a new install, so 2-days basically means every
&lt;br&gt;&amp;gt;&amp;gt; day. &amp;nbsp;And that worries me a bit.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Any/all help would be appreciated. &amp;nbsp;Thanks.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;tc:tc-config xmlns:tc=&amp;quot;&lt;a href=&quot;http://www.terracotta.org/config&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/config&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xsi:schemaLocation=&amp;quot;&lt;a href=&quot;http://www.terracotta.org/schema/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/schema/&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; terracotta-4.xsd&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;tc-properties&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;l2.l1reconnect.enabled&amp;quot; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;l2.l1reconnect.timeout.millis&amp;quot; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; value=&amp;quot;10000&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property
&lt;br&gt;&amp;gt;&amp;gt; name=&amp;quot;l2.objectmanager.fault.logging.enabled&amp;quot; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;l2.nha.tcgroupcomm.reconnect.enabled&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;l2.nha.tcgroupcomm.reconnect.timeout&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; value=&amp;quot;10000&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/tc-properties&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;servers&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;server host=&amp;quot;1.1.1.1&amp;quot; name=&amp;quot;galileo&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;data&amp;gt;/usr/local/terracotta/data/galileo&amp;lt;/ 
&lt;br&gt;&amp;gt;&amp;gt; data&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;logs&amp;gt;/usr/local/terracotta/logs/galileo&amp;lt;/ 
&lt;br&gt;&amp;gt;&amp;gt; logs&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;l2-group-port&amp;gt;9530&amp;lt;/l2-group-port&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;dso-port&amp;gt;9510&amp;lt;/dso-port&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;persistence&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;mode&amp;gt;permanent-store&amp;lt;/mode&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/persistence&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/server&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;server host=&amp;quot;2.2.2.2&amp;quot; name=&amp;quot;pasteur&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;data&amp;gt;/usr/local/terracotta/data/pasteur&amp;lt;/ 
&lt;br&gt;&amp;gt;&amp;gt; data&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;logs&amp;gt;/usr/local/terracotta/logs/pasteur&amp;lt;/ 
&lt;br&gt;&amp;gt;&amp;gt; logs&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;l2-group-port&amp;gt;9530&amp;lt;/l2-group-port&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;dso-port&amp;gt;9510&amp;lt;/dso-port&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;persistence&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;mode&amp;gt;permanent-store&amp;lt;/mode&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/persistence&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/server&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ha&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;mode&amp;gt;networked-active-passive&amp;lt;/mode&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;networked-active-passive&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;election-time&amp;gt;5&amp;lt;/election-time&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/networked-active-passive&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/ha&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;update-check&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;enabled&amp;gt;true&amp;lt;/enabled&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/update-check&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/servers&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;clients&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;logs&amp;gt;/usr/local/terracotta/logs/client-logs&amp;lt;/logs&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;statistics&amp;gt;/usr/local/terracotta/data/%(tc.node-name)/client- 
&lt;br&gt;&amp;gt;&amp;gt; statistics&amp;lt;/statistics&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;modules&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;module name=&amp;quot;tim-tomcat-6.0&amp;quot; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; version=&amp;quot;1.0.1&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;module name=&amp;quot;tim-spring-security-2.0&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; version=&amp;quot;1.1.1&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/modules&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/clients&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;application&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;instrumented-classes&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;class-expression&amp;gt;com.company.sensor.remoting.model.*&amp;lt;/class- 
&lt;br&gt;&amp;gt;&amp;gt; expression&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;class-expression&amp;gt;com.company.calendar.model.*&amp;lt;/class-expression&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;class-expression&amp;gt;com.company..shared..*&amp;lt;/class-expression&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/include&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/instrumented-classes&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;web-applications&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;web-application&amp;gt;ROOT&amp;lt;/web- 
&lt;br&gt;&amp;gt;&amp;gt; application&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/web-applications&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/dso&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/application&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;/tc:tc-config&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23675320&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23675320&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;logs.zip&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23675320&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23675320&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Active-Passive-w-two-active-servers-tp23673088p23675320.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23674090</id>
	<title>Re: Active/Passive w/two active servers</title>
	<published>2009-05-22T09:32:45Z</published>
	<updated>2009-05-22T09:32:45Z</updated>
	<author>
		<name>Robert Hanson-4</name>
	</author>
	<content type="html">Thanks, logs are attached.
&lt;br&gt;&lt;br&gt;This isn't in production yet, so you will see a lot of restarts around
&lt;br&gt;6pm-6:30 while I tweaked the configuration. &amp;nbsp;I believe the error
&lt;br&gt;occurred around 9pm. &amp;nbsp;And like I said, this isn't in production, so
&lt;br&gt;there was likely no activity on the clients.
&lt;br&gt;&lt;br&gt;P.S. - I already talked to a TC sales rep, it is beginning to look
&lt;br&gt;like a support contract will be a good thing to have :)
&lt;br&gt;&lt;br&gt;Thanks again.
&lt;br&gt;&lt;br&gt;Rob
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Fri, May 22, 2009 at 11:43 AM, Steven Harris
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23674090&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steve@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; We could take a look if you attach the logs from all the clients and
&lt;br&gt;&amp;gt; servers.
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Steve Harris
&lt;br&gt;&amp;gt; &amp;quot;Terracotta.  It's ten pounds of awesome in a five pound sack.&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On May 22, 2009, at 8:39 AM, Robert Hanson wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So... I think I have everything set up right, but I hope I am missing
&lt;br&gt;&amp;gt; something.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The cluster has 2 servers (active/passive) and two clients
&lt;br&gt;&amp;gt; (tomcat6/spring-security tims).  The servers are located a couple
&lt;br&gt;&amp;gt; thousand miles from each other, and the clients are co-located on the
&lt;br&gt;&amp;gt; same boxes as the servers.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This morning I checked out the TC Dev Console and both servers were
&lt;br&gt;&amp;gt; active and only one client was appearing.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; How can I avoid this situation?  And I missing something in the
&lt;br&gt;&amp;gt; config?  I wouldn't be so worried, but it has happened twice in 2
&lt;br&gt;&amp;gt; days... and this is a new install, so 2-days basically means every
&lt;br&gt;&amp;gt; day.  And that worries me a bit.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any/all help would be appreciated.  Thanks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;tc:tc-config xmlns:tc=&amp;quot;&lt;a href=&quot;http://www.terracotta.org/config&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/config&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;        xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;        xsi:schemaLocation=&amp;quot;&lt;a href=&quot;http://www.terracotta.org/schema/terracotta-4.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.terracotta.org/schema/terracotta-4.xsd&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;tc-properties&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;property name=&amp;quot;l2.l1reconnect.enabled&amp;quot; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;property name=&amp;quot;l2.l1reconnect.timeout.millis&amp;quot; value=&amp;quot;10000&amp;quot;
&lt;br&gt;&amp;gt; /&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;property
&lt;br&gt;&amp;gt; name=&amp;quot;l2.objectmanager.fault.logging.enabled&amp;quot; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;property name=&amp;quot;l2.nha.tcgroupcomm.reconnect.enabled&amp;quot;
&lt;br&gt;&amp;gt; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;property name=&amp;quot;l2.nha.tcgroupcomm.reconnect.timeout&amp;quot;
&lt;br&gt;&amp;gt; value=&amp;quot;10000&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;/tc-properties&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;servers&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;server host=&amp;quot;1.1.1.1&amp;quot; name=&amp;quot;galileo&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;data&amp;gt;/usr/local/terracotta/data/galileo&amp;lt;/data&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;logs&amp;gt;/usr/local/terracotta/logs/galileo&amp;lt;/logs&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;l2-group-port&amp;gt;9530&amp;lt;/l2-group-port&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;dso-port&amp;gt;9510&amp;lt;/dso-port&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;dso&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;persistence&amp;gt;
&lt;br&gt;&amp;gt;                                        &amp;lt;mode&amp;gt;permanent-store&amp;lt;/mode&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;/persistence&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;/dso&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;/server&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;server host=&amp;quot;2.2.2.2&amp;quot; name=&amp;quot;pasteur&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;data&amp;gt;/usr/local/terracotta/data/pasteur&amp;lt;/data&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;logs&amp;gt;/usr/local/terracotta/logs/pasteur&amp;lt;/logs&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;l2-group-port&amp;gt;9530&amp;lt;/l2-group-port&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;dso-port&amp;gt;9510&amp;lt;/dso-port&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;dso&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;persistence&amp;gt;
&lt;br&gt;&amp;gt;                                        &amp;lt;mode&amp;gt;permanent-store&amp;lt;/mode&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;/persistence&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;/dso&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;/server&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;ha&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;mode&amp;gt;networked-active-passive&amp;lt;/mode&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;networked-active-passive&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;election-time&amp;gt;5&amp;lt;/election-time&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;/networked-active-passive&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;/ha&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;update-check&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;enabled&amp;gt;true&amp;lt;/enabled&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;/update-check&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;/servers&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;clients&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;logs&amp;gt;/usr/local/terracotta/logs/client-logs&amp;lt;/logs&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;statistics&amp;gt;/usr/local/terracotta/data/%(tc.node-name)/client-statistics&amp;lt;/statistics&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;modules&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;module name=&amp;quot;tim-tomcat-6.0&amp;quot; version=&amp;quot;1.0.1&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;module name=&amp;quot;tim-spring-security-2.0&amp;quot;
&lt;br&gt;&amp;gt; version=&amp;quot;1.1.1&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;/modules&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;/clients&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;application&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;dso&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;instrumented-classes&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;include&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;class-expression&amp;gt;com.company.sensor.remoting.model.*&amp;lt;/class-expression&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;/include&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;include&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;class-expression&amp;gt;com.company.calendar.model.*&amp;lt;/class-expression&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;/include&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;include&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;class-expression&amp;gt;com.company..shared..*&amp;lt;/class-expression&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;/include&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;/instrumented-classes&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;web-applications&amp;gt;
&lt;br&gt;&amp;gt;                                &amp;lt;web-application&amp;gt;ROOT&amp;lt;/web-application&amp;gt;
&lt;br&gt;&amp;gt;                        &amp;lt;/web-applications&amp;gt;
&lt;br&gt;&amp;gt;                &amp;lt;/dso&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;/application&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/tc:tc-config&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23674090&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; tc-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23674090&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;tc-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23674090&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tc-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.terracotta.org/mailman/listinfo/tc-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.terracotta.org/mailman/listinfo/tc-users&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;logs.zip&lt;/strong&gt; (95K) &lt;a href=&quot;http://old.nabble.com/attachment/23674090/0/logs.zip&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Active-Passive-w-two-active-servers-tp23673088p23674090.html" />
</entry>

</feed>
