Re: Relative URL for XSL in XSLT component

2015-06-10 Thread Ujeen
t any advises Thank you. -- View this message in context: http://camel.465427.n5.nabble.com/Relative-URL-for-XSL-in-XSLT-component-tp5724794p5768059.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: XSLT Component empty elements

2015-01-08 Thread richardgroote
ge in context: http://camel.465427.n5.nabble.com/XSLT-Component-empty-elements-tp5761456p5761468.html Sent from the Camel - Users mailing list archive at Nabble.com.

XSLT Component empty elements

2015-01-08 Thread richardgroote
Hello, We are upgrading from Apache Camel version 2.12.2 to 2.14.0 but have some problems with XSLT component. The input for the XSLT component is xml with no namespaces in it (see below). The result after the transformation does not contain any elements because tests on the elements do not

RE: XSLT component produces different result after logging a CXF PAYLOAD request

2014-07-31 Thread Udo Einspanier
us.ib...@gmail.com] Sent: Donnerstag, 31. Juli 2014 10:08 To: users@camel.apache.org Subject: Re: XSLT component produces different result after logging a CXF PAYLOAD request Hi Sounds a bit like this http://camel.apache.org/why-is-my-message-body-empty.html On Thu, Jul 31, 2014 at 10:06 AM

Re: XSLT component produces different result after logging a CXF PAYLOAD request

2014-07-31 Thread Claus Ibsen
> the namespace URI when the request is logged before it goes to the XSLT > component: > > > > > > > > > Is the XML parsed with different namespace aware settings when it

XSLT component produces different result after logging a CXF PAYLOAD request

2014-07-31 Thread Udo Einspanier
different. In particular this template creates an empty element, while it correctly writes the namespace URI when the request is logged before it goes to the XSLT component: Is the XML parsed with

Re: Custom URIResolver for XSLT component

2013-04-16 Thread nikagra
Thanks for quick response. I was sure that @Qualifier annotation gives an id to bean. Now I have it working with annotations too -- View this message in context: http://camel.465427.n5.nabble.com/Custom-URIResolver-for-XSLT-component-tp5730913p5730957.html Sent from the Camel - Users mailing

Re: Custom URIResolver for XSLT component

2013-04-15 Thread Claus Ibsen
You need to assign an id to that bean so Camel can find it #xsltUriResolver means the id of the bean should be: xsltUriResolver On Mon, Apr 15, 2013 at 4:19 PM, nikagra wrote: > Hello > I'd like to implement custom URI resolver for XSLT component. I'm using > Spring to conf

Custom URIResolver for XSLT component

2013-04-15 Thread nikagra
Hello I'd like to implement custom URI resolver for XSLT component. I'm using Spring to configure Camel context. The problem is when I configure URI resolver using @Component and @Qualifier annotations I got No bean {bean id} could be found in the registry of type: javax.xml.transform.U

Re: Make xslt component not to validate dtd's (or use local copy)

2013-02-22 Thread Claus Ibsen
ange.getIn().setBody(new SAXSource(xmlReader, new > InputSource(inputStream))); > } > > The Transformer used by the xsltComponent will then use this xmlReader. > > Dirk > Maybe the camel xslt component can be enhanced to support to plugin a custom EntityResolver? We love cont

Re: Make xslt component not to validate dtd's (or use local copy)

2013-02-20 Thread Christian Müller
> > Datum: Tue, 19 Feb 2013 20:04:54 +0100 > > Von: Claus Ibsen > > An: users@camel.apache.org > > Betreff: Re: Make xslt component not to validate dtd\'s (or use local > copy) > > > On Tue, Feb 19, 2013 at 1:56 PM, wrote: > > > Hello, > > >

Re: Make xslt component not to validate dtd's (or use local copy)

2013-02-19 Thread Dirk Reske
y the xsltComponent will then use this xmlReader. Dirk Original-Nachricht > Datum: Tue, 19 Feb 2013 20:04:54 +0100 > Von: Claus Ibsen > An: users@camel.apache.org > Betreff: Re: Make xslt component not to validate dtd\'s (or use local copy) > On Tue, Feb 19, 2013 at 1:

Re: Make xslt component not to validate dtd's (or use local copy)

2013-02-19 Thread Claus Ibsen
On Tue, Feb 19, 2013 at 1:56 PM, wrote: > Hello, > > We are using the camel xslt component to transform a xhtml file. But for > transforming the file, the used XMLReader tries to download the dtd from thw > w3c website. > > Is it possible, to tell the xslt component, to con

Make xslt component not to validate dtd's (or use local copy)

2013-02-19 Thread Freak . 2k
Hello, We are using the camel xslt component to transform a xhtml file. But for transforming the file, the used XMLReader tries to download the dtd from thw w3c website. Is it possible, to tell the xslt component, to configure the xml reader to use local version (e.g. by using xml catalogs) or

Re: Relative URL for XSL in XSLT component

2013-01-03 Thread Christian Müller
an 2, 2013 at 5:36 PM, felixnutella wrote: > Hi all > > I'm quite new at Camel but have managed to get it up and running using a > few > custom components/converters... > > But.. > > Is it true that you need to specify an absolute path for the XSL in the > X

Relative URL for XSL in XSLT component

2013-01-02 Thread felixnutella
Hi all I'm quite new at Camel but have managed to get it up and running using a few custom components/converters... But.. Is it true that you need to specify an absolute path for the XSL in the XSLT component? Whenever I try to specify an relative, it comes up with File not found.

Re: xslt: component

2012-11-09 Thread Christian Müller
For XSLT transformation you need a XSLT file. For validation, you can use the XSD file. You can use maven to check which version of the dependency the camel-xslt component use. Sent from a mobile device Am 09.11.2012 13:23 schrieb "anakin59490" : > Ok ! > > Do you think tha

Re: xslt: component

2012-11-09 Thread anakin59490
Ok ! Do you think that i could transform my xml in another xml (the same without specifics tags) with Xalan and a xsd file ? Do you use xalan 2.7.1 ? (i found this version on maven repository...) thank you -- View this message in context: http://camel.465427.n5.nabble.com/xslt

Re: xslt: component

2012-11-09 Thread Bob Jolliffe
On 9 November 2012 11:46, anakin59490 wrote: > Thank you very much Bob !! > > It works !! > > In fact check, was my first step, but i used xslt: component because i must > transform my xml file in an other xml file (the same without specifics > tags). > > But i th

Re: xslt: component

2012-11-09 Thread anakin59490
Thank you very much Bob !! It works !! In fact check, was my first step, but i used xslt: component because i must transform my xml file in an other xml file (the same without specifics tags). But i thought that it could do both (check and transform). I work with camel version 2.9. I've

Re: xslt: component

2012-11-09 Thread Bob Jolliffe
ith a xsd file. > > I try to use the xslt: component but it doesn't work. > > this is my xml file: > > > > > > 90 > 80 > 99 > > > > > this is my xsd file : > >

xslt: component

2012-11-09 Thread anakin59490
Hello, I would like to check a xml file with a xsd file. I try to use the xslt: component but it doesn't work. this is my xml file: 90 80 99 this is my xsd file : http://www.w3.org/2001/XMLSchema"; elementFormDefault="qualified">

Re: Camel XSLT Component - Load XSLT from database

2012-04-28 Thread Claus Ibsen
lay around much. >> > > Ah yeah the xslt endpoint need to be lenient if you use the http for > the xslt, fell free to log a JIRA ticket > then we can add support for that. > I logged a ticket to not forget about this https://issues.apache.org/jira/browse/CAMEL-5232 > >

Re: Camel XSLT Component - Load XSLT from database

2012-04-27 Thread Claus Ibsen
xslt, fell free to log a JIRA ticket then we can add support for that. > Thanks! > > JM > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-XSLT-Component-Load-XSLT-from-database-tp5033499p5670143.html > Sent from the Camel - Users mailing l

Re: Camel XSLT Component - Load XSLT from database

2012-04-27 Thread mccabejj
e on the route. I could not get URL's with query parameters to work, but I didn't play around much. Thanks! JM -- View this message in context: http://camel.465427.n5.nabble.com/Camel-XSLT-Component-Load-XSLT-from-database-tp5033499p5670143.html Sent from the Camel - Users maili

Issue on XSLT component in OSGI environment (2.9.0 camel)

2012-02-26 Thread viktorp
e:input").to("xslt:export/xml2json_bundle1.xslt"); If I provide some local bundle 2 resource to xslt component it works fine. In 2.8.x camel version it works just fine. -- View this message in context: http://camel.465427.n5.nabble.com/Issue-on-XSLT-component-in-OSGI-environment-2-9-0-camel-tp

Re: Camel XSLT Component - Load XSLT from database

2011-12-02 Thread mccabejj
Thanks Claus. I will give it a try when I get a breather and I'll report back. The project is barrelling along! Josh -- View this message in context: http://camel.465427.n5.nabble.com/Camel-XSLT-Component-Load-XSLT-from-database-tp5033499p5042751.html Sent from the Camel - Users mailing

Re: Camel XSLT Component - Load XSLT from database

2011-11-30 Thread Claus Ibsen
Hi Can you try the 2.9.0-RC1 release. We have moved the xslt component from camel-spring to camel-core. And as part of that move, the logic for loading the xslt resource changed to be non-spring dependent and thus it may work now with http. On Tue, Nov 29, 2011 at 9:00 PM, mccab...@gmail.com

Camel XSLT Component - Load XSLT from database

2011-11-29 Thread mccab...@gmail.com
ed something. Thanks in advance to any that are able to provide help and guidance. JM -- View this message in context: http://camel.465427.n5.nabble.com/Camel-XSLT-Component-Load-XSLT-from-database-tp5033499p5033499.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: xslt component and URI Resolver

2011-02-24 Thread Richard Kettelerij
your XSL to load the appropriate files. -- View this message in context: http://camel.465427.n5.nabble.com/xslt-component-and-URI-Resolver-tp3396685p3399434.html Sent from the Camel - Users mailing list archive at Nabble.com.

xslt component and URI Resolver

2011-02-23 Thread Cappa Roberto
Hi, I'm trying to use the camel XSLT component with a stylsheet that contains xpath "document()" instructions. I've seen that default URIResolver works only with classpath resources, but my resources are available on relative web URLs (I'm using the Camel Servlet compo

Re: how to use a dynamic file name in the xslt component output=file ?

2010-11-15 Thread davsclaus
Try using instead of -- View this message in context: http://camel.465427.n5.nabble.com/how-to-use-a-dynamic-file-name-in-the-xslt-component-output-file-tp3265551p3265789.html Sent from the Camel - Users mailing list archive at Nabble.com.