KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > recover > bean > RemoteDummyRecoverableService


1 /*
2   * JBoss, Home of Professional Open Source
3   * Copyright 2005, JBoss Inc., and individual contributors as indicated
4   * by the @authors tag. See the copyright.txt in the distribution for a
5   * full listing of individual contributors.
6   *
7   * This is free software; you can redistribute it and/or modify it
8   * under the terms of the GNU Lesser General Public License as
9   * published by the Free Software Foundation; either version 2.1 of
10   * the License, or (at your option) any later version.
11   *
12   * This software is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * Lesser General Public License for more details.
16   *
17   * You should have received a copy of the GNU Lesser General Public
18   * License along with this software; if not, write to the Free
19   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21   */

22 package org.jboss.test.recover.bean;
23
24 import javax.naming.Context JavaDoc;
25 import javax.naming.InitialContext JavaDoc;
26
27 import org.jboss.aop.Dispatcher;
28 import org.jboss.aspects.remoting.Remoting;
29 import org.jboss.naming.Util;
30 import org.jboss.system.ServiceMBeanSupport;
31 import org.jboss.test.recover.interfaces.RemoteDummyRecoverable;
32 import org.jboss.tm.recovery.Recoverable;
33
34 /**
35  * Service MBean that makes a a DummyRecoverable accessible to other VMs.
36  *
37  * @author <a HREF="reverbel@ime.usp.br">Francisco Reverbel</a>
38  * @version $Revision: 37406 $
39  */

40 public class RemoteDummyRecoverableService
41       extends ServiceMBeanSupport
42       implements RemoteDummyRecoverableServiceMBean
43 {
44    private String JavaDoc id;
45    
46    public String JavaDoc getId()
47    {
48       return id;
49    }
50
51    public void setId(String JavaDoc id)
52    {
53       this.id = id;
54    }
55
56    public void startService() throws Exception JavaDoc
57    {
58       Recoverable target = new RemoteDummyRecoverable(id);
59
60       Dispatcher.singleton.registerTarget("Recoverable/" + id, target);
61       Recoverable proxy =
62          (Recoverable)Remoting.createRemoteProxy(
63                                                 "Recoverable/" + id,
64                                                 RemoteDummyRecoverable.class,
65                                                 "socket://0.0.0.0:5150");
66       
67       String JavaDoc jndiName = "RemoteDummyRecoverable/" + id;
68       Context JavaDoc iniCtx = new InitialContext JavaDoc();
69       Util.bind(iniCtx, jndiName, proxy);
70       log.debug("Bound proxy under jndiName=" + jndiName);
71    }
72
73    public void stopService() throws Exception JavaDoc
74    {
75       String JavaDoc jndiName = "RemoteDummyRecoverable/" + id;
76       Context JavaDoc iniCtx = new InitialContext JavaDoc();
77       Util.unbind(iniCtx, jndiName);
78    }
79
80 }
81
Popular Tags