Re: [C3] Accessing XSLT URL that requires Authentication

2009-04-27 Thread Steven Dolg
Hello Nils, I'm afraid there is currently no support for accessing URLs that require authentication. While I think this is a feature all components should have, it will take some time to add this and you'd have to wait for the next release or change to the trunk in order to use it. A faster

repeater with pagination--reverse sort?

2009-04-27 Thread Paul Joseph
Hi There, Does anyone know if the new repeater widget with pagination support a reverse sort? One of my columns ranks Priority, with 1 being the highest and 4 the lowest. Sorting brings all the items of status 4 to the top whereas I would like items with status 1 to come to the top on the

Re: [C3] Accessing XSLT URL that requires Authentication

2009-04-27 Thread Nils Preusker
Hi Steven, thanks for your reply, I created a new XSLTTransformer for now, based on the code you suggested in your mail. Since we're talking feature requests, I think it would also make sense to provide a PipelineComponent that allows to access XML documents through authenticated URLs. I'm using

Re: [C3] Accessing XSLT URL that requires Authentication

2009-04-27 Thread Steven Dolg
Nils Preusker schrieb: Hi Steven, thanks for your reply, I created a new XSLTTransformer for now, based on the code you suggested in your mail. Since we're talking feature requests, I think it would also make sense to provide a PipelineComponent that allows to access XML documents through

Re: [C3] Accessing XSLT URL that requires Authentication

2009-04-27 Thread Reinhard Pötz
Nils Preusker wrote: Hi all, I just started trying out cocoon 3 alpha 1 and I'm wondering if there is a solution for the following scenario: I'm retrieving all my XML and XSLT content via URLs that require authentication. Without the authentication I could simply create a pipeline like

Re: how to call continuation, created by button's action?

2009-04-27 Thread Joerg Heinicke
Can you tell us what you are actually trying to achieve (independent from the code)? Joerg On 25.04.2009 09:34, Maria Grigorieva wrote: Hello!!! I need to create continuation with the button's click. var k; .. form.lookupWidget(report).addActionListener(function(event) {

Re: [C3] Accessing XSLT URL that requires Authentication

2009-04-27 Thread Nils Preusker
Hi Reinhard, when I try providing the username and password like you suggested ( http:un:p...@example.com/some.xslt), I get a 401 from apache. However, using URLConnection and setting the request property manually as mentioned in the previous mails works fine: ... String encoding = new

Re: how to call continuation, created by button's action?

2009-04-27 Thread Maria Grigorieva
By means of button I make the xml-file. And I want after button click (and after making xml-file) to show in the same page in browser the link to download this file. 2009/4/28 Joerg Heinicke joerg.heini...@gmx.de Can you tell us what you are actually trying to achieve (independent from the