[HELP]: How to set xml encoding?

2003-11-06 Thread Gianluca Morello



Hallo,
 
i need to set correctly the encoding of my xml 
output files in apipeline.
 
For example:
 
if I use a simple pipeline like 
this
 
   
The xml encoding in the input.xml is 
ISO-8859-1,
The xml encoding of the simple.xsl s 
ISO-8859-1,
The simple.xsl file contains a line like 
this
 
The output xml has always the encoding 
UTF-8.
 
Any idea?
 
Thank you
 
 
Gianluca Morello
 


RE: [HELP]: How to set xml encoding?

2003-11-06 Thread Alten, Jelle Paul (sds-sp)



use 

    
 
Jelle

  -Oorspronkelijk bericht-Van: Gianluca Morello 
  [mailto:[EMAIL PROTECTED]Verzonden: donderdag 6 november 2003 
  17:21Aan: [EMAIL PROTECTED]Onderwerp: [HELP]: How 
  to set xml encoding?
  Hallo,
   
  i need to set correctly the encoding of my 
  xml output files in apipeline.
   
  For example:
   
  if I use a simple pipeline like 
  this
   
     
  The xml encoding in the input.xml is 
  ISO-8859-1,
  The xml encoding of the simple.xsl s 
  ISO-8859-1,
  The simple.xsl file contains a line like 
  this
   
  The output xml has always the encoding 
  UTF-8.
   
  Any idea?
   
  Thank you
   
   
  Gianluca Morello
   


Re: [HELP]: How to set xml encoding?

2003-11-06 Thread Joerg Heinicke
Gianluca Morello wrote:

Hallo,

i need to set correctly the encoding of my xml output files in apipeline.

For example:

if I use a simple pipeline like this

 
 
 
The xml encoding in the input.xml is ISO-8859-1,
The xml encoding of the simple.xsl s ISO-8859-1,
The simple.xsl file contains a line like this
The output xml has always the encoding UTF-8.

Any idea?
Have a look into the map:serializers section, search for the serializer 
you want to change and use and add ISO-8859-1 as 
child of this map:serializer.

Joerg

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


RE: [HELP]: How to set xml encoding?

2003-11-06 Thread Alten, Jelle Paul (sds-sp)



Sorry, 
al little too quick perhaps. You should also define the encoding in the 
components section, for example:
 
        
    
UTF-8    
    
    
ISO-8859-1    
    

 

  -Oorspronkelijk bericht-Van: Alten, Jelle Paul 
  (sds-sp) [mailto:[EMAIL PROTECTED]Verzonden: donderdag 6 
  november 2003 17:03Aan: 
  '[EMAIL PROTECTED]'Onderwerp: RE: [HELP]: How to set xml 
  encoding?
  use 
  
      
   
  Jelle
  
-Oorspronkelijk bericht-Van: Gianluca Morello 
[mailto:[EMAIL PROTECTED]Verzonden: donderdag 6 november 2003 
17:21Aan: [EMAIL PROTECTED]Onderwerp: [HELP]: 
    How to set xml encoding?
Hallo,
 
i need to set correctly the encoding of my 
xml output files in apipeline.
 
For example:
 
if I use a simple pipeline like 
this
 
   
The xml encoding in the input.xml is 
ISO-8859-1,
The xml encoding of the simple.xsl s 
ISO-8859-1,
The simple.xsl file contains a line like 
this
 
The output xml has always the encoding 
UTF-8.
 
Any idea?
 
Thank you
 
 
Gianluca Morello
 


Re: [HELP]: How to set xml encoding? SourceWritingTransformer

2003-11-06 Thread Gianluca Morello



Hallo Jelle,
 
My serializers map is like this:
 
     
ISO-8859-1    
  
 
And using the following pipeline the xml output 
encoding is correct!
 
  

Thank you for your help.
 
 
 
I still have problems with encoding because i have 
to write xml to file system:
I'm using SourceWritingTransformer and 
my real pipeline is like the 
following:
 
 

  
 
 
My transformers map is:
 
    
      

 
 
The output files continue to have the encoding set 
to utf-8
 
Any idea?
 
Thank you
 
Gianluca
 
- Original Message - 

  From: 
  Alten, Jelle Paul (sds-sp) 
  To: '[EMAIL PROTECTED]' 
  Sent: Thursday, November 06, 2003 5:07 
  PM
  Subject: RE: [HELP]: How to set xml 
  encoding?
  
  Sorry, al little too quick perhaps. You should also define the encoding 
  in the components section, for example:
   
          
      
  UTF-8    
      
      
  ISO-8859-1    
      
  
   
  
-Oorspronkelijk bericht-Van: Alten, Jelle Paul 
(sds-sp) [mailto:[EMAIL PROTECTED]Verzonden: donderdag 
6 november 2003 17:03Aan: 
'[EMAIL PROTECTED]'Onderwerp: RE: [HELP]: How to set xml 
encoding?
use 
    
 
Jelle

  -Oorspronkelijk bericht-Van: Gianluca Morello 
  [mailto:[EMAIL PROTECTED]Verzonden: donderdag 6 november 
  2003 17:21Aan: [EMAIL PROTECTED]Onderwerp: 
      [HELP]: How to set xml encoding?
  Hallo,
   
  i need to set correctly the encoding of 
  my xml output files in apipeline.
   
  For example:
   
  if I use a simple pipeline like 
  this
   
     
  The xml encoding in the input.xml is 
  ISO-8859-1,
  The xml encoding of the 
  simple.xsl s ISO-8859-1,
  The simple.xsl file contains a line like 
  this
   
  The output xml has always the encoding 
  UTF-8.
   
  Any idea?
   
  Thank you
   
   
  Gianluca Morello
   


RE: [HELP]: How to set xml encoding for SourceWritingTransformer -

2003-11-06 Thread Alten, Jelle Paul (sds-sp)



 
Sorry,
I don't know enough 
about the SourceWritingTransformer to tell you how to set the encoding for the 
SourceWritingTransformer.
 
Anybody 
else?
 
 
 
 -Oorspronkelijk 
bericht-Van: Gianluca Morello 
[mailto:[EMAIL PROTECTED]Verzonden: donderdag 6 november 2003 
18:07Aan: [EMAIL PROTECTED]Onderwerp: Re: [HELP]: 
How to set xml encoding? SourceWritingTransformer

  Hallo Jelle,
   
  My serializers map is like this:
   
       
  ISO-8859-1    
    
   
  And using the following pipeline the xml output 
  encoding is correct!
   
    
  
  Thank you for your help.
   
   
   
  I still have problems with encoding because i 
  have to write xml to file system:
  I'm using SourceWritingTransformer and 
  my real pipeline is like the 
  following:
   
   
  
    
   
   
  My transformers map is:
   
      
      
  
   
   
  The output files continue to have the encoding 
  set to utf-8
   
  Any idea?
   
  Thank you
   
  Gianluca
   
  - Original Message - 
  
From: 
Alten, Jelle Paul (sds-sp) 

To: '[EMAIL PROTECTED]' 
Sent: Thursday, November 06, 2003 5:07 
PM
    Subject: RE: [HELP]: How to set xml 
encoding?

Sorry, al little too quick perhaps. You should also define the 
encoding in the components section, for example:
 
        
    
UTF-8    
    
    
ISO-8859-1    
    

 

  -Oorspronkelijk bericht-Van: Alten, Jelle Paul 
  (sds-sp) [mailto:[EMAIL PROTECTED]Verzonden: 
  donderdag 6 november 2003 17:03Aan: 
  '[EMAIL PROTECTED]'Onderwerp: RE: [HELP]: How to set xml 
  encoding?
  use 
      
   
  Jelle
  
-Oorspronkelijk bericht-Van: Gianluca Morello 
[mailto:[EMAIL PROTECTED]Verzonden: donderdag 6 november 
2003 17:21Aan: [EMAIL PROTECTED]Onderwerp: 
    [HELP]: How to set xml encoding?
Hallo,
 
i need to set correctly the encoding 
of my xml output files in apipeline.
 
For example:
 
if I use a simple pipeline like 
this
 
   
The xml encoding in the input.xml is 
ISO-8859-1,
The xml encoding of the 
simple.xsl s ISO-8859-1,
The simple.xsl file contains a line like 
this
 
The output xml has always the encoding 
UTF-8.
 
Any idea?
 
Thank you
 
 
Gianluca Morello