User: reverbel
Date: 01/08/17 16:40:26
Modified: iiop/src/main/org/jboss/ejb/plugins/iiop/server
IIOPContainerInvoker.java
Log:
Initialization of homeMethodInvokerMap was misplaced, should now be correct.
Revision Changes Path
1.4 +4 -2
contrib/iiop/src/main/org/jboss/ejb/plugins/iiop/server/IIOPContainerInvoker.java
Index: IIOPContainerInvoker.java
===================================================================
RCS file:
/cvsroot/jboss/contrib/iiop/src/main/org/jboss/ejb/plugins/iiop/server/IIOPContainerInvoker.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- IIOPContainerInvoker.java 2001/08/17 21:34:40 1.3
+++ IIOPContainerInvoker.java 2001/08/17 23:40:26 1.4
@@ -103,7 +103,7 @@
* CORBA reference for the corresponding <code>EJBObject</code>.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Francisco Reverbel</a>
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
*/
public class IIOPContainerInvoker
extends Servant
@@ -244,10 +244,13 @@
// Create home method mappings for container invoker
System.err.println("Home methods: ---------------------");
+
interfaceAnalysis =
InterfaceAnalysis.getInterfaceAnalysis(
((ContainerInvokerContainer)container).getHomeClass());
+ homeMethodInvokerMap = new HashMap();
+
attrs = interfaceAnalysis.getAttributes();
for (int i = 0; i < attrs.length; i++) {
OperationAnalysis op = attrs[i].getAccessorAnalysis();
@@ -266,7 +269,6 @@
}
ops = interfaceAnalysis.getOperations();
- homeMethodInvokerMap = new HashMap();
for (int i = 0; i < ops.length; i++) {
System.err.println(" " + ops[i].getJavaName());
System.err.println(" " + ops[i].getIDLName());
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development