Restriction:  This topic applies only when the Enterprise Server feature is enabled. 
               	 
            
 
            	 
             
               		
               - Starting with 
                  		  Visual COBOL version 2.2 Update 2, HotFix 9, 
                  		  Micro Focus ECI programs that use 
                  		  mfccl.jar raise an error exception, EXCIRespException, if exciResp1 and exciResp2 are not both equal to zero. To ensure your ECI program
                  captures all errors, you must catch this exception in your code. Please add the following code snippet, which enables your
                  program to compile and execute properly: 
                  		  try {
                …
        } catch(ExciRespException e) {
               String rcMsg = e.getRcMsg();
        }If an error occurs, 
                     			 rcMsg captures the appropriate error message. 
                     		  
                   
-  When using XA transactions with EJB 3.0 on Websphere 7 with the EJB 3 Feature Pack, if there are two resource managers and
                  one of them is ES and the other is using JDBC, if the JDBC update fails, the Transaction Manager in Websphere does not receive
                  the failure message and hence does not send a rollback to the other resource manager or managers (Enterprise Server included).
                  Instead, it sends a commit which is incorrect. This issue is being investigated.