-
SOA using CICS and J2EE Services (2 messages)
- Posted by: Jaise George
- Posted on: August 07 2006 07:39 EDT
Hi All, Greetings. I have a query regarding SOA. I have a business service hosted on a mainframe system and is accessed using SOAP for CICS. This business service consists of 3 services that are implemented in COBOL and the transaction is managed by CICS. Is there a way by which I can include a J2EE service to this Business Service and the transaction will still be managed by CICS. To state in more elaborate terms, let my services are SERVCOB1, SERVCOB2, SERVCOB3 and SERVJ2EE1, I need to invoke these services in the order SERVCOB1, SERVCOB2, SERVJ2EE1 and SERVCOB3. Assume the transaction is managed by CICS. In that case if SERVCOB1, SERVCOB2 and SERVJ2EE1 succeeds and SERVCOB3 fails, the whole transaction should be aborted. Can CICS Transaction manager roll back SERVJ2EE1 as well? Thanks in advance. Jaise GeorgeThreaded Messages (2)
- Re: SOA using CICS and J2EE Services by David Miller on August 08 2006 15:33 EDT
- Re: SOA using CICS and J2EE Services by ashutosh kumar on October 12 2006 04:45 EDT
-
Re: SOA using CICS and J2EE Services[ Go to top ]
- Posted by: David Miller
- Posted on: August 08 2006 15:33 EDT
- in response to Jaise George
http://www.acucorp.com/company/pdf/TXSeries_T&I_Brochure_G224_-_7588_-_00.pdf google is your friend... You might be better off asking at developerworks since CICS is an IBM product -
Re: SOA using CICS and J2EE Services[ Go to top ]
- Posted by: ashutosh kumar
- Posted on: October 12 2006 04:45 EDT
- in response to Jaise George
I think CICS will not be able to handle transaction in such case. You need to expose all these four components as services and use WS_Transaction . You can go for nested transaction/compensating mechanism .