CORBA 2.3.3 Getting Started Guide (NonStop CORBA 2.3.7+)
POA _default_POA()
needs to be moved into the object implementation.
If an IDL contained a "const" declaration located within an "interface," then the generated constant
identifier and its value have moved from:
<interface>Package.<const-id>.value
to
<interface>.<const-id>
An application needs to change its references to the constant. If the following IDL example were
followed:
interface Stack {
const long StackSize = 10;
};
an old reference would be:
int size = StackPackage.StackSize.value;
a new reference would be:
int size = Stack.StackSize;
7.
The IDL compiler generated files are changes:
NonStop JORB 1.0 NonStop CORBA 2.3
POA_<interface>.java <interface>POA.java
_<interface>ServantRef.java <not generated>
8.
Prev Up Next
Chapter 3. Installing NonStop CORBA
Home
Chapter 5. Running the C++ Stack
Example