History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: BP-1
Type: Improvement Improvement
Status: Applied Applied
Priority: Minor Minor
Assignee: Vinkesh Mehta
Reporter: Luc Clement
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
OASIS BPEL4People TC

Remove fault name from getFault HT API call

Created: 02/Apr/08 07:06 PM   Updated: 16/Jul/08 12:13 PM
Component/s: None
Affects Version/s: None
Fix Version/s: None


 Description  « Hide
SUBMITTED BY: Mark Ford
TARGET: WS-HT API

DESCRIPTION: The element "getFault" used in the getFault operation defined
in the HT API has a required faultName child element. A task only supports
having a single fault set on it so it doesn't make sense to accept a fault
name here. This is likely left over from a previous version of this schema
where faultName was removed from the call but left behind in the Schema. The
description for getFault in the table of operations in Section 6 does not
have the fault name as an input parameter.

PROPOSAL: Remove the faultName child element from the getFault element in
ws-humantask-api.wsdl as follows:

Existing definition -

  <xsd:element name="getFault">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="identifier" type="xsd:anyURI" />
        <xsd:element name="faultName" type="xsd:NCName" />
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>

New definition -

  <xsd:element name="getFault">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="identifier" type="xsd:anyURI" />
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>


 All   Comments   Change History      Sort Order:
Luc Clement [30/Apr/08 11:32 AM]
Moved to Resolved state: 20080430

Luc Clement [16/Jul/08 11:21 AM]
The change was applied to ws-humantask-api.wsdl (and not from xsd as suggested in the proposal)