Product: OpenFusion JacORB
Version: ALL
Description:
Is there any limit set in JacOrb on the length of a CORBA message?
Resolution:
There are no hard-coded limits on the size of the message you can send. The only implicit limit exists because a message contains its size encoded as an int. The largest possible message would be Integer.MAX_VALUE (size of the GIOP message header) bytes. Integer.MAX_VALUE is 2147483647.
If you are sending really large messages there will probably be other issues, for example performance degradation and possibly the JVM running out of memory.
#KnowledgeDocs
#OpenFusion