We are starting a new project which will make extensive use of the Java wrapper and RPC to execute mainframe subprograms from our application server.
When I generate the IDL, it does some basic character substution (eg # to _) so that the generated fields meet the Java rules.
Those names are fairly ugly so we have been editing the IDL file manually to change the names (so #MEMBER-COUNT becomes memberCount instead of _member_count )
The problem is this: if we change the PDA we cannot re-generate the IDL because then all our edits get lost.
Other than manually editing the IDL each time we change a PDA is there a way to make those name mappings without losing the ability to re-generate the IDL?
I tried creating an XMM mapping but the workbench ignores the XMM mappings when generating the Java wrapper.
I am using EntireX workbench 7.1.1.6
Thanks