Uploaded image for project: 'ODE'
  1. ODE
  2. ODE-264

Catch fault mapping doesn't fulfill specification

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Won't Fix
    • 1.1.1
    • 1.2
    • BPEL Runtime
    • None
    • FUSE ESB 3.3.0.2

    Description

      In one my wsdls I have:

      <message name="LowLevelServiceFault">
      <part name="body" element="soap-env:Fault"/>
      </message>
      <portType name="SomeServicePortType">
      <operation name="SomeServiceRQ">
      <input message="tns:SomeServiceInput"/>
      <output message="tns:SomeServiceOutput"/>
      <fault name="LowLevelServiceError" message="tns:LowLevelServiceFault"/>
      </operation>
      </portType>

      After invoke I've got fault message so I would like to catch fault using:

      <bpel:catch faultName="tns:LowLevelServiceError" faultVariable="LowLevelServiceFaultVariable" faultElement="soap-env:Fault">

      but it doesn't work.
      According to specification is should work (Web Services Business Process Execution Language Version 2.0 OASIS Standard11 April 2007, paragraph 12.5. Fault Handlers):

      In the case of faults thrown with associated data the fault MUST be caught as follows:
      1. If there is a <catch> construct with a matching faultName value that has a faultVariable whose type matches the type of the runtime fault data then the fault is passed to the identified <catch> construct (see the matching criteria definition below).
      2. Otherwise if the fault data is a WSDL message type where the message contains a single part defined by an element and there exists a <catch> construct with a matching faultName value that has a faultVariable whose associated faultElement's QName matches the QName of the runtime element data of the single WSDL message part, then the fault is passed to the identified <catch> construct with the faultVariable initialized to the value in the single part's element (see the matching criteria definition below).

      so according to the specification LowLevelServiceFaultVariable should be initialized using "body" part.

      Fortunately such catch works:
      <bpel:catch faultName="tns:LowLevelServiceError" faultVariable="LowLevelServiceFaultVariable" faultMessageType="tns:LowLevelServiceFault">

      Attachments

        Activity

          People

            Unassigned Unassigned
            matihost Mateusz Nowakowski
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: