You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "James Strachan (JIRA)" <ji...@apache.org> on 2007/10/16 11:54:23 UTC

[jira] Commented: (CAMEL-181) improve the smart completion of expressions in the DSL via filter(). or when(). to return an ExpressionClause capable of holding all the valid expressions

    [ https://issues.apache.org/activemq/browse/CAMEL-181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_40389 ] 

James Strachan commented on CAMEL-181:
--------------------------------------

We can now do better namespace based queries in XPath / XQuery now using the following

{code}
                Namespaces ns = new Namespaces("c", "http://acme.com/cheese");

                from("direct:start").filter().
                        xpath("/c:person[@name='James']", ns).
                        to("mock:result");
{code}

> improve the smart completion of expressions in the DSL via filter(). or when(). to return an ExpressionClause capable of holding all the valid expressions
> ----------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-181
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-181
>             Project: Apache Camel
>          Issue Type: Improvement
>          Components: camel-core
>            Reporter: James Strachan
>             Fix For: 1.3.0
>
>


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