RE: SourceWritingTransformer Problem

2004-08-25 Thread JACOB, ERIC
Hi Andreas,

In fact, here the full picture:


  
  
  
  


The first transformer gets the node I want to update, then modify (increment
by 1) and insert it in the source:fragment element... Maybe there is another
way to do this? But you're right: I'm trying to write to the same file I'm
reading from.

Thanks,

Eric

-Original Message-
From: news [mailto:[EMAIL PROTECTED] On Behalf Of Andreas Hartmann
Sent: Wednesday, August 25, 2004 10:25 AM
To: [EMAIL PROTECTED]
Subject: Re: SourceWritingTransformer Problem

JACOB, ERIC wrote:

> Hi,
> 
> It seems that I cannot use the SourceWritingTransformer to write document
> that is in use by the pipeline.
> 
> I get the following error:
> 
> org.apache.cocoon.ProcessingException: Failed to execute pipeline.:
> java.lang.RuntimeException: org.apache.cocoon.ProcessingException: Could
not
> process your document.: java.io.IOException: Could not rename
> E:\repos\moria\target\moria\test.xml.tmp to
> E:\repos\moria\target\moria\test.xml
> 
> I have something like this into the sitemap:
> 
>   
> 
> 
> 
>   
> 
> How I could avoid this?

Are you trying to write to the same file you're reading from?
This doesn't work because you're handling with SAX, which
means the generator may still read from the file while the
transformer already tries to write to it.

-- Andreas


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: SourceWritingTransformer Problem

2004-08-25 Thread Jorg Heymans
there is a way of doing this in flow if you're interested.
var resolver =
cocoon.getComponent(Packages.org.apache.excalibur.source.SourceResolver.ROLE);
var source = resolver.resolveURI("URI for your modifiable source");
var outputstream = source.getOutputStream();
cocoon.processPipelineTo("page", outputstream);
resolver.release(source);
outputstream.close();
JACOB, ERIC wrote:
Hi,
It seems that I cannot use the SourceWritingTransformer to write document
that is in use by the pipeline.
I get the following error:
org.apache.cocoon.ProcessingException: Failed to execute pipeline.:
java.lang.RuntimeException: org.apache.cocoon.ProcessingException: Could not
process your document.: java.io.IOException: Could not rename
E:\repos\moria\target\moria\test.xml.tmp to
E:\repos\moria\target\moria\test.xml
I have something like this into the sitemap:
  



  
How I could avoid this?
Thanks,
Eric

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: SourceWritingTransformer Problem

2004-08-25 Thread Andreas Hartmann
JACOB, ERIC wrote:
Hi,
It seems that I cannot use the SourceWritingTransformer to write document
that is in use by the pipeline.
I get the following error:
org.apache.cocoon.ProcessingException: Failed to execute pipeline.:
java.lang.RuntimeException: org.apache.cocoon.ProcessingException: Could not
process your document.: java.io.IOException: Could not rename
E:\repos\moria\target\moria\test.xml.tmp to
E:\repos\moria\target\moria\test.xml
I have something like this into the sitemap:
  



  
How I could avoid this?
Are you trying to write to the same file you're reading from?
This doesn't work because you're handling with SAX, which
means the generator may still read from the file while the
transformer already tries to write to it.
-- Andreas
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]