Re: XPath in camel 3.0

2019-12-04 Thread Claus Ibsen
om RouteBuilder in our code as follows: > > .setProperty("postIntegrationCheck", > xpath("//version[.='PostIntegrationCheck']").booleanResult()) > .setProperty("ssinResult", xpath("/ssinResult").nodeResult()) > > But in camel

XPath in camel 3.0

2019-12-04 Thread Jimmy Praet (KSZ-BCSS/eHEALTH)
path("/ssinResult").nodeResult()) But in camel 3.0, the xpath() method of RouteBuilder returns a ValueBuilder instead of an XPathBuilder, and the .xyzResult() methods are no longer available there. Is the recommended approach to specify the type as follows: .setProperty(&