orb icon indicating copy to clipboard operation
orb copied to clipboard

Eclipse ORB is a CORBA orb for use in Jakarta EE and GlassFish and other projects that still need an ORB.

Results 48 orb issues
Sort by recently updated
recently updated
newest added

Looks like the Glassfish Corba Jars does not provide Java 9+ module names. The jars does not contains a `module-info.java` or provide an automatic module name in the MANIFEST. Since...

java.lang.reflect.InvocationTargetException at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) at org.glassfish.rmic.Main.getEnv(Main.java:475) at org.glassfish.rmic.Main.doCompile(Main.java:491) at org.glassfish.rmic.Main.compile(Main.java:156) at sun.rmi.rmic.Main.main(Main.java:33) Caused by: java.lang.IllegalStateException: ASM9_EXPERIMENTAL can only be used by classes compiled with...

If the sender's version of a class has a writeObject method, it is considered to use custom serialization, which adds two bytes at the start of the serialized data; however,...

We are trying to use the Glassfish ORB (version 4.2.0-b003) with SSLSockets, by setting the com.sun.corba.ee.legacy.connection.ORBSocketFactoryClass property to an according custom factory. This leads to a problem on the client...

When an input stream is marked, the underlying `byteBuffer` is duplicated using the `java.nio.ByteBuffer.duplicate()` function which does not replicate the buffer byte order. https://github.com/eclipse-ee4j/orb/blob/8626fd5def9c7452a57aecf69e146c43c14ed039/orbmain/src/main/java/com/sun/corba/ee/impl/encoding/CDRInputStream_1_0.java#L1922 This breaks the processing of little...

orbmain/src/main/java/com/sun/corba/ee/impl/transport/ByteBufferPoolImpl.java The "while"-loop near start of ByteBufferPoolImpl.reAllocate() doubling the size until it is large enough may turn into an infinite loop, if the minimumSize parameter is ever more than 1...

idlj from glassfish-corba-orb 4.2.0-b004 creates wrong repository id. Looks like a regression as it has been fixed (several times) before in openjdk idlj, see https://bugs.openjdk.java.net/browse/JDK-6438259

If "Request Meaaage" that is more than the number of threads in "thread-pool-1" is sent to the IJServer cluster, all pooled threads wait for "Fragment Message" to be processed and...

Priority: Major
Type: Bug

Can this code be fixed [RepositoryId.java#L1000](https://github.com/eclipse-ee4j/orb/blob/master/orbmain/src/main/java/com/sun/corba/ee/impl/util/RepositoryId.java#L1000)? Method convertFromISOLatin1 doesn't correctly decodes id encoded by convertToISOLatin1 in case of multibyte values.

In our application we observe that ORBImpl#destroy does not close the IIOP server socket. To me it looks like in SelectorImpl there should be a listener thread to close the...