1 package test; 2 3 import java.util.logging.Level ; 4 import java.util.logging.Logger ; 5 import javax.ejb.*; 6 import javax.jms.Connection ; 7 import javax.jms.ConnectionFactory ; 8 import javax.jms.Destination ; 9 import javax.jms.JMSException ; 10 import javax.jms.Message ; 11 import javax.jms.MessageProducer ; 12 import javax.jms.Session ; 13 import javax.naming.Context ; 14 import javax.naming.InitialContext ; 15 import javax.naming.NamingException ; 16 import javax.rmi.PortableRemoteObject ; 17 18 23 public class TestingSessionBean implements SessionBean, TestingSessionRemoteBusiness, TestingSessionLocalBusiness { 24 private SessionContext context; 25 26 32 public void setSessionContext(SessionContext aContext) { 33 context = aContext; 34 } 35 36 39 public void ejbActivate() { 40 41 } 42 43 46 public void ejbPassivate() { 47 48 } 49 50 53 public void ejbRemove() { 54 55 } 56 58 62 public void ejbCreate() { 63 } 68 69 70 71 74 public String testBusinessMethod1() { 75 return null; 77 } 78 79 public String testBusinessMethod2(String a, int b) throws Exception { 80 return null; 82 } 83 84 private TestingEntityLocalHome lookupTestingEntityBean() { 85 try { 86 Context c = new InitialContext (); 87 TestingEntityLocalHome rv = (TestingEntityLocalHome) c.lookup("java:comp/env/ejb/TestingEntityBean"); 88 return rv; 89 } 90 catch(NamingException ne) { 91 Logger.getLogger(getClass().getName()).log(Level.SEVERE,"exception caught" ,ne); 92 throw new RuntimeException (ne); 93 } 94 } 95 96 private TestingEntityRemoteHome lookupMyTestingEntityBean() { 97 try { 98 Context c = new InitialContext (); 99 Object remote = c.lookup("java:comp/env/ejb/MyTestingEntityBean"); 100 TestingEntityRemoteHome rv = (TestingEntityRemoteHome) PortableRemoteObject.narrow(remote, TestingEntityRemoteHome.class); 101 return rv; 102 } 103 catch(NamingException ne) { 104 Logger.getLogger(getClass().getName()).log(Level.SEVERE,"exception caught" ,ne); 105 throw new RuntimeException (ne); 106 } 107 } 108 109 private Message createJMSMessageForTestingMessageDestination(Session session, Object messageData) throws JMSException { 110 } 115 116 private void sendJMSMessageToTestingMessageDestination(Object messageData) throws NamingException , JMSException { 117 Context c = new InitialContext (); 118 ConnectionFactory cf = (ConnectionFactory ) c.lookup("java:comp/env/jms/TestingMessageDestinationFactory"); 119 Connection conn = null; 120 Session s = null; 121 try { 122 conn = cf.createConnection(); 123 s = conn.createSession(false,s.AUTO_ACKNOWLEDGE); 124 Destination destination = (Destination ) c.lookup("java:comp/env/jms/TestingMessageDestination"); 125 MessageProducer mp = s.createProducer(destination); 126 mp.send(createJMSMessageForTestingMessageDestination(s,messageData)); 127 } finally { 128 if (s != null) { 129 s.close(); 130 } 131 if (conn != null) { 132 conn.close(); 133 } 134 } 135 } 136 137 138 139 } 140
| Popular Tags
|