This portal is to open public enhancement requests against IBM Z Software products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
We have assessed this requirement. We have no current plans for this to be implemented and so this requirement is being declined at this point. The requirement will be kept in the RFE system and might be reassessed in the future. You also have an opportunity to resubmit in twelve months time if you wish it to be reconsidered then.
Due to processing by IBM, this request was reassigned to have the following updated attributes:
Brand - Servers and Systems Software
Product family - Transaction Processing
Product - CICS Transaction Server
For recording keeping, the previous attributes were:
Brand - WebSphere
Product family - Transaction Processing
Product - CICS Transaction Server
You're right. The response code from the INVOKE command is not enough, we need the information in the SOAPFault, because different SOAPFaults for the same operation are possible.
To use another optimised version can be a solution, but we have currently no need to place any own message-handler in that pipeline. But we need the original SOAPFault. And we need the SOAPFault in exactly the same format as when we call a remote service. The mapping from the SOAPfault to XML is currently done by CICS and not by an own handler, so we think CICS should do it also in the most optimised version.
To store that information in another container is no option for us, because the service-requester must than differentiate between locally-optimised and remote services. But we want to implement platform-independent services. What is, if we move the Service-Provider from CICS to another platform. Then all service-requester must change their SOAPFault-handling.
At the end of the day we think CICS should give us the information about the SOAPFault in exactly the same way and format for remote-services and locally-optimised services.
There should be a response code from the INVOKE command to indicate that a Fault was returned. Presumably in the requirement scenario, it isn't enough just to know that there was a failure, you actually need to see the XML for the failure.
There are several levels of local optimisation available in CICS. It sounds like the most optimised version is being used; this means that no XML gets generated. If one of the less optimised options were used, the XML for the SOAPFault would be produced, but would drive more CPU in doing so. There's more information here:
http://pic.dhe.ibm.com/infocenter/cicsts/v4r2/index.jsp?topic=%2Fcom.ibm.cics.ts.webservices.doc%2Fconcepts%2Fdfhws_pipelineoptions.html
Alternatively, the provider application could store data in a container that the requester application could read back later on.
Would any of those options satisfy the requirement?