You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ode.apache.org by "Aleksander Adamowski (JIRA)" <ji...@apache.org> on 2010/08/20 16:33:24 UTC

[jira] Created: (ODE-883) Documentation for Flexible Assigns (Auto Complete Copy Destination) should empasize that xpath 2.0 sublanguage must be used in process definition

Documentation for Flexible Assigns (Auto Complete Copy Destination) should empasize that xpath 2.0 sublanguage must be used in process definition
-------------------------------------------------------------------------------------------------------------------------------------------------

                 Key: ODE-883
                 URL: https://issues.apache.org/jira/browse/ODE-883
             Project: ODE
          Issue Type: Task
          Components: Documentation
            Reporter: Aleksander Adamowski


The documentation at http://ode.apache.org/flexible-assigns.html describes the Ode extended mechanism of Flexible Assigns (using "insertMissingToData" attribute on "copy" elements).

What the documentation doesn't mention, is that this only works with XPath 2.0 expression sublanguage - not with XPath 1.0 which is the default.

So the documentation should have a big red notice that in order to make it work, one has to add the following attributes to the main BPEL "process" element:


  queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
  expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"

E.g.:

<bpws:process
  ....some stuff omitted....
  xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
  queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
  expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0" >

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.