Hi!
I am having problems with Ode 2 Beta 2 with an assignment like the following:
<copy>
<from variable="audit-request-msg" property="procws:message-id"/>
<to>$message-id</to>
</copy>
>From wsdl:
<prop:property name="message-id" type="xsd:string"/>
<prop:propertyAlias propertyName="procws:message-id"
messageType="auditws:audit-request-msg"
part="audit-request-part">
<prop:query>/audit:process-info/audit:correlation-id</prop:query>
</prop:propertyAlias>
If I replace with the following it works:
<copy>
<from>$audit-request-msg.audit-request-part/audit:process-info/audit:correlation-id</from>
<to>$message-id</to>
</copy>
It also works if the leading "/" in the prop:query is not present. Am I doing
something wrong?
-Doug.