1
我是BPEL新手。我正在調用Web服務來填充BPEL變量:我如何從bpel布爾變量獲取返回值?
<bpel:variable name="hasASkillOutput" messageType="ns2:personHasSkillResponse"></bpel:variable>
....
<bpel:invoke name="call_personHasASkill" partnerLink="SkillPossessionService" operation="personHasSkill" portType="ns2:SkillPossessionServicePortType"
inputVariable="hasASkillInput" outputVariable="hasASkillOutput"></bpel:invoke>
我調用的服務返回布爾值。作爲條件表達式的一部分,我如何訪問該值?
<bpel:if name="DoesPersonHaveTheSkill">
<bpel:condition><hasASkillOutput is true></bpel:condition>
</bpel:if>