dain 2005/06/22 15:39:52
Modified: modules/core/src/java/org/openejb/corba StandardServant.java
Log:
added DynamicStubClassLoader which creates stubs on the fly using cglib
Revision Changes Path
1.2 +3 -3
openejb/modules/core/src/java/org/openejb/corba/StandardServant.java
Index: StandardServant.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/corba/StandardServant.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- StandardServant.java 21 Jun 2005 18:59:30 -0000 1.1
+++ StandardServant.java 22 Jun 2005 19:39:52 -0000 1.2
@@ -113,7 +113,7 @@
for (Iterator iterator =
PortableStubCompiler.getAllInterfaces(type).iterator(); iterator.hasNext();) {
Class superInterface = (Class) iterator.next();
if (Remote.class.isAssignableFrom(superInterface) &&
superInterface != Remote.class) {
- ids.add("\"RMI:" + superInterface.getName() +
":0000000000000000\"");
+ ids.add("RMI:" + superInterface.getName() +
":0000000000000000");
}
}
typeIds = (String[]) ids.toArray(new String[ids.size()]);