Problem:
When creating a new mapping for a Web Service from existing COBOL code, you may find in doing so that the case of the COBOL code is lost - for example all converted to lowercase.
This may cause you a problem if you have a requirement for the case to be as in the original code, for example (lower-) CamelCase.
Resolution:
Specify the PRESERVECASE directive in your program program:
$SET PRESERVECASE
This will then ensure that the original case is preserved as required.




