Re: JSPGenerator encoding problem

2002-02-08 Thread yuryx

Shes live!!! :)
Thanx for Piroumian, Konstantin and Vadim Gritsenko
Also thanx for all
I try
<%@ page language="java" import="java.text.SimpleDateFormat,java.util.*" 
_/*pageEncoding="KOI8-R"*/_%>
in my jsp page and this solve problem.
following line in sitemap


KOI8-R

for encoding on generation part do nothig...
Thanx all again!
Yury




-
Please check that your question has not already been answered in the
FAQ before posting. 

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




Re: JSPGenerator encoding problem

2002-02-08 Thread Piroumian, Konstantin

> > From: yuryx [mailto:[EMAIL PROTECTED]]
> > 
> > Hi all!
> > My JSPGenerator or jasper-compiler don't  supported KOI8-R charset
> > encoding. What is me do?
> 
> Use UTF-8 or Win-1251 which are (IIRC) supported.

KOI8-R is supported too. I've just checked.

> 
> Vadim
> 
> > Instructions llike
> >  in header jsp page
> > or
> >  > src="org.apache.cocoon.generation.JspGenerator"
> > logger="sitemap.generator.jsp" label="content,data">
> > KOI8-R
> >  in sitemap.xmap
> > Don't solved my problem
> > Instruction like
> > <%@ page language="java" encoding="KOI8-R"%> in jsp page is not valid
> > I have use jasper-compiler.jar from /CATALINA_HOME/jasper dir
> > Cocoon don't compiled without  this library in WEB-INF/lib dir my jsp
> page.
> > Can anyone help me with this problem?
> > Thanx
> > Yury.
> 
> 
> -
> Please check that your question has not already been answered in the
> FAQ before posting. 
> 
> To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> For additional commands, e-mail: <[EMAIL PROTECTED]>
> 

-
Please check that your question has not already been answered in the
FAQ before posting. 

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




RE: JSPGenerator encoding problem

2002-02-08 Thread Vadim Gritsenko

> From: yuryx [mailto:[EMAIL PROTECTED]]
> 
> Hi all!
> My JSPGenerator or jasper-compiler don't  supported KOI8-R charset
> encoding. What is me do?

Use UTF-8 or Win-1251 which are (IIRC) supported.

Vadim

> Instructions llike
>  in header jsp page
> or
>  src="org.apache.cocoon.generation.JspGenerator"
> logger="sitemap.generator.jsp" label="content,data">
> KOI8-R
>  in sitemap.xmap
> Don't solved my problem
> Instruction like
> <%@ page language="java" encoding="KOI8-R"%> in jsp page is not valid
> I have use jasper-compiler.jar from /CATALINA_HOME/jasper dir
> Cocoon don't compiled without  this library in WEB-INF/lib dir my jsp
page.
> Can anyone help me with this problem?
> Thanx
> Yury.


-
Please check that your question has not already been answered in the
FAQ before posting. 

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




Re: JSPGenerator encoding problem

2002-02-08 Thread Piroumian, Konstantin

> > From: yuryx [mailto:[EMAIL PROTECTED]]
> >
> > Thanx for ideas ,Vadim.
> > But I can't undestand how declare JSP encoding.
>
> Try to read JSP specification.

The correct declaration is:

<%@ page language="java" import="java.text.SimpleDateFormat,java.util.*"
pageEncoding="KOI8-R"%>

Note, that your XML to be parsed you should put  declaration on
the same line as <%@ page ...>, otherwise an empty line is added at the
beginning of the page and this causes parsing error.

Regards,
Konstantin

P.S. I've already sent the corrected file off-list.

>
> Vadim
>
>
> > instead of <%out.println("");%>
> I try
> >  in sample.jsp
> > but again it doesn't work :(
> > Yury
> >
>
>
> -
> Please check that your question has not already been answered in the
> FAQ before posting. 
>
> To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> For additional commands, e-mail: <[EMAIL PROTECTED]>
>

-
Please check that your question has not already been answered in the
FAQ before posting. 

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




RE: JSPGenerator encoding problem

2002-02-08 Thread Vadim Gritsenko

> From: yuryx [mailto:[EMAIL PROTECTED]]
> 
> Thanx for ideas ,Vadim.
> But I can't undestand how declare JSP encoding.

Try to read JSP specification.

Vadim


> instead of <%out.println("");%>
I try
>  in sample.jsp
> but again it doesn't work :(
> Yury
> 


-
Please check that your question has not already been answered in the
FAQ before posting. 

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




Re: JSPGenerator encoding problem

2002-02-07 Thread yuryx

Piroumian, Konstantin wrote:

>Another idea:
>
><%@ page language="java" encoding="koi8-r"%>
>
Hi Konstantin!
with this idea I have next exception
/org.apache.cocoon.ProcessingException: ServletException in 
JspGenerator.generate()/

>
>
>or something like
>
><%@ page language="java" %>
><% response.setContentType("text/xml; charset=KOI8-r"); %>
>
>If you can send your JSP page to me I can take a look at it.
>
My simple jsp page:

<%@ page language="java" 
import="java.text.SimpleDateFormat,java.util.*,java.sql.*"%>



<%
out.println("ÐÒÉ×ÅÔ!");
%>
   


>
>
>- Original Message -----
>From: "yuryx" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Friday, February 08, 2002 9:46 AM
>Subject: Re: JSPGenerator encoding problem
>
>
>Thanx for ideas ,Vadim.
>But I can't undestand how declare JSP encoding.
>
>instead of <%out.println("");%> I try
> in sample.jsp
>but again it doesn't work :(
>Yury
>
>Vadim Gritsenko wrote:
>
>>Your JSP is not valid. It does not declares JSP encoding as it should.
>>Obviously JSP runtime is unable to read characters correctly.
>>
>>Regards,
>>Vadim
>>
>>>-Original Message-
>>>From: yuryx [mailto:[EMAIL PROTECTED]]
>>>Sent: Thursday, February 07, 2002 1:06 PM
>>>To: [EMAIL PROTECTED]
>>>Subject: Re: JSPGenerator encoding problem
>>>
>>>Without transformation I have
>>>
>>>
>>>
>>>
>>>
>>>ÐÒÉ×ÅÔ!
>>>
>>>
>>>
>>>
>>>
>>>
>>>Problem with generation, I know...
>>>
>>>Piroumian, Konstantin wrote:
>>>
>>>>Is it the problem of JSPGenerator or maybe this happens during
>>>>transformation or serialization? Try to remove the transformer from
>>>>
>>the
>>
>>>>pipeline or replace JSPGenerator with FileGenerator and use static
>>>>
>>content
>>
>>>>in KOI8-r to find out what is the cause of the problem.
>>>>
>>>>Regards,
>>>>  Konstantin Piroumian
>>>>
>>>>- Original Message -
>>>>From: "yuryx" <[EMAIL PROTECTED]>
>>>>To: <[EMAIL PROTECTED]>
>>>>Sent: Thursday, February 07, 2002 7:50 PM
>>>>Subject: JSPGenerator encoding problem
>>>>
>>>>
>>>>Hello all!
>>>>
>>>>I have following problem.
>>>>JSPGenerator doesn't normally encoding non english  characters.
>>>>Simple sample:
>>>>sample.jsp:
>>>><%out.println("");%>
>>>><%@ page language="java"
>>>>import="java.text.SimpleDateFormat,java.util.*,java.sql.*"%>
>>>>
>>>>
>>>>  
>>>>  <%out.println("ÐÒÉ×ÅÔ!");%>
>>>>  
>>>>
>>>>
>>>>sample.xsl:
>>>>
>>>>>>>xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
>>>>  xmlns:xsp-request="http://apache.org/xsp/request/2.0";
>>>>
>>>>
>>>> 
>>>>  
>>>>   
>>>>
>>>>   
>>>>  
>>>>  
>>>>   
>>>>  
>>>> 
>>>>
>>>>
>>>>
>>>>  
>>>>
>>>>
>>>>
>>>>I have following  line in sitemap:
>>>>>>>src="org.apache.cocoon.generation.JspGenerator"
>>>>logger="sitemap.generator.jsp" label="content,data">
>>>>  KOI8-R
>>>>
>>>>...and...
>>>> 
>>>>   
>>>>   
>>>>   
>>>>  
>>>>
>>>>After generation I have next:
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>???ÐÒÉ×ÅÔ! ???
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>Can anyone help me?
>>>>Thanx
>>>>Yury
>>>>
>>>>
>>>>
>>>>-
>>>>Please check that your question has not already been answered in the
>>>>F

Re: JSPGenerator encoding problem

2002-02-07 Thread yuryx

Hi Peter!
I try your recomendation
but it don't  solved my problem :(
Encoding problem in Generator , or, maybe, in jasper compiller...
Yury
Peter Schwenke wrote:

>Hi Yury,
>
>Have you tried 
>
>
>  
>   src="org.apache.cocoon.serialization.LinkSerializer"/>
>   src="org.apache.cocoon.serialization.XMLSerializer"
>   pool-max="32" pool-min="16" pool-grow="4"/>
>   src="org.apache.cocoon.serialization.HTMLSerializer">
>   koi8-r   < That is, put the koi8-r encoding here
>   
>
>
>   ...Peter
> 
>yuryx writes:
> > Without transformation I have
> > 
> > 
> > 
> > 
> > 
> > ÐÒÉ×ÅÔ!
> > 
> > 
> > 
> > 
> > 
> > 
> > Problem with generation, I know...
> > 
> > Piroumian, Konstantin wrote:
> > 
> > >Is it the problem of JSPGenerator or maybe this happens during
> > >transformation or serialization? Try to remove the transformer from the
> > >pipeline or replace JSPGenerator with FileGenerator and use static content
> > >in KOI8-r to find out what is the cause of the problem.
> > >
> > >Regards,
> > >Konstantin Piroumian
> > >
> > >- Original Message -
> > >From: "yuryx" <[EMAIL PROTECTED]>
> > >To: <[EMAIL PROTECTED]>
> > >Sent: Thursday, February 07, 2002 7:50 PM
> > >Subject: JSPGenerator encoding problem
> > >
> > >
> > >Hello all!
> > >
> > >I have following problem.
> > >JSPGenerator doesn't normally encoding non english  characters.
> > >Simple sample:
> > >sample.jsp:
> > ><%out.println("");%>
> > ><%@ page language="java"
> > >import="java.text.SimpleDateFormat,java.util.*,java.sql.*"%>
> > >
> > >
> > >
> > ><%out.println("привет!");%>
> > >
> > >
> > >
> > >sample.xsl:
> > >
> > > > >xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
> > >xmlns:xsp-request="http://apache.org/xsp/request/2.0";
> > >
> > >  
> > >   
> > >
> > > 
> > >  
> > > 
> > >
> > >
> > > 
> > >
> > >   
> > >  
> > >
> > >  
> > >
> > >  
> > >
> > >
> > >I have following  line in sitemap:
> > > > >src="org.apache.cocoon.generation.JspGenerator"
> > >logger="sitemap.generator.jsp" label="content,data">
> > >KOI8-R
> > >
> > >...and...
> > >   
> > > 
> > > 
> > > 
> > >
> > >
> > >After generation I have next:
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >???ÐÒÉ×ÅÔ! ???
> > >
> > >
> > >
> > >
> > >
> > >
> > >Can anyone help me?
> > >Thanx
> > >Yury
> > >
> > >
> > >
> > >-
> > >Please check that your question has not already been answered in the
> > >FAQ before posting. 
> > >
> > >To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> > >For additional commands, e-mail: <[EMAIL PROTECTED]>
> > >
> > >
> > >-
> > >Please check that your question has not already been answered in the
> > >FAQ before posting. 
> > >
> > >To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> > >For additional commands, e-mail: <[EMAIL PROTECTED]>
> > >
> > 
> > 
> > 
> > 
> > -
> > Please check that your question has not already been answered in the
> > FAQ before posting. 
> > 
> > To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> > For additional commands, e-mail: <[EMAIL PROTECTED]>
>




-
Please check that your question has not already been answered in the
FAQ before posting. 

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




Re: JSPGenerator encoding problem

2002-02-07 Thread Piroumian, Konstantin

Another idea:

<%@ page language="java" encoding="koi8-r"%>

or something like

<%@ page language="java" %>
<% response.setContentType("text/xml; charset=KOI8-r"); %>

If you can send your JSP page to me I can take a look at it.

- Original Message -
From: "yuryx" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, February 08, 2002 9:46 AM
Subject: Re: JSPGenerator encoding problem


Thanx for ideas ,Vadim.
But I can't undestand how declare JSP encoding.

instead of <%out.println("");%> I try
 in sample.jsp
but again it doesn't work :(
Yury

Vadim Gritsenko wrote:

>Your JSP is not valid. It does not declares JSP encoding as it should.
>Obviously JSP runtime is unable to read characters correctly.
>
>Regards,
>Vadim
>
>>-Original Message-
>>From: yuryx [mailto:[EMAIL PROTECTED]]
>>Sent: Thursday, February 07, 2002 1:06 PM
>>To: [EMAIL PROTECTED]
>>Subject: Re: JSPGenerator encoding problem
>>
>>Without transformation I have
>>
>>
>>
>>
>>
>>ÐÒÉ×ÅÔ!
>>
>>
>>
>>
>>
>>
>>Problem with generation, I know...
>>
>>Piroumian, Konstantin wrote:
>>
>>>Is it the problem of JSPGenerator or maybe this happens during
>>>transformation or serialization? Try to remove the transformer from
>>>
>the
>
>>>pipeline or replace JSPGenerator with FileGenerator and use static
>>>
>content
>
>>>in KOI8-r to find out what is the cause of the problem.
>>>
>>>Regards,
>>>   Konstantin Piroumian
>>>
>>>- Original Message -
>>>From: "yuryx" <[EMAIL PROTECTED]>
>>>To: <[EMAIL PROTECTED]>
>>>Sent: Thursday, February 07, 2002 7:50 PM
>>>Subject: JSPGenerator encoding problem
>>>
>>>
>>>Hello all!
>>>
>>>I have following problem.
>>>JSPGenerator doesn't normally encoding non english  characters.
>>>Simple sample:
>>>sample.jsp:
>>><%out.println("");%>
>>><%@ page language="java"
>>>import="java.text.SimpleDateFormat,java.util.*,java.sql.*"%>
>>>
>>>
>>>   
>>>   <%out.println("ÐÒÉ×ÅÔ!");%>
>>>   
>>>
>>>
>>>sample.xsl:
>>>
>>>>>xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
>>>   xmlns:xsp-request="http://apache.org/xsp/request/2.0";
>>>
>>> 
>>>  
>>>   
>>>
>>> 
>>>
>>>   
>>>   
>>>
>>>   
>>>  
>>> 
>>>
>>> 
>>>   
>>> 
>>>
>>>
>>>I have following  line in sitemap:
>>>>>src="org.apache.cocoon.generation.JspGenerator"
>>>logger="sitemap.generator.jsp" label="content,data">
>>>   KOI8-R
>>>
>>>...and...
>>>  
>>>
>>>
>>>
>>>   
>>>
>>>After generation I have next:
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>???ÐÒÉ×ÅÔ! ???
>>>
>>>
>>>
>>>
>>>
>>>
>>>Can anyone help me?
>>>Thanx
>>>Yury
>>>
>>>
>>>
>>>-
>>>Please check that your question has not already been answered in the
>>>FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>>>
>>>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
>>>For additional commands, e-mail: <[EMAIL PROTECTED]>
>>>
>>>
>>>-
>>>Please check that your question has not already been answered in the
>>>FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>>>
>>>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
>>>For additional commands, e-mail: <[EMAIL PROTECTED]>
>>>
>>
>>
>>
>>-
>>Please check that your question has not already been answered in the
>>FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>>
>>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
>>For additional commands, e-mail: <[EMAIL PROTECTED]>
>>
>
>
>-
>Please check that your question has not already been answered in the
>FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>
>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
>For additional commands, e-mail: <[EMAIL PROTECTED]>
>




-
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

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


-
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

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




Re: JSPGenerator encoding problem

2002-02-07 Thread yuryx

Thanx for ideas ,Vadim.
But I can't undestand how declare JSP encoding.

instead of <%out.println("");%> I try 
 in sample.jsp
but again it doesn't work :(
Yury

Vadim Gritsenko wrote:

>Your JSP is not valid. It does not declares JSP encoding as it should.
>Obviously JSP runtime is unable to read characters correctly.
>
>Regards,
>Vadim
>
>>-Original Message-
>>From: yuryx [mailto:[EMAIL PROTECTED]]
>>Sent: Thursday, February 07, 2002 1:06 PM
>>To: [EMAIL PROTECTED]
>>Subject: Re: JSPGenerator encoding problem
>>
>>Without transformation I have
>>
>>
>>
>>
>>
>>ÐÒÉ×ÅÔ!
>>
>>
>>
>>
>>
>>
>>Problem with generation, I know...
>>
>>Piroumian, Konstantin wrote:
>>
>>>Is it the problem of JSPGenerator or maybe this happens during
>>>transformation or serialization? Try to remove the transformer from
>>>
>the
>
>>>pipeline or replace JSPGenerator with FileGenerator and use static
>>>
>content
>
>>>in KOI8-r to find out what is the cause of the problem.
>>>
>>>Regards,
>>>   Konstantin Piroumian
>>>
>>>- Original Message -
>>>From: "yuryx" <[EMAIL PROTECTED]>
>>>To: <[EMAIL PROTECTED]>
>>>Sent: Thursday, February 07, 2002 7:50 PM
>>>Subject: JSPGenerator encoding problem
>>>
>>>
>>>Hello all!
>>>
>>>I have following problem.
>>>JSPGenerator doesn't normally encoding non english  characters.
>>>Simple sample:
>>>sample.jsp:
>>><%out.println("");%>
>>><%@ page language="java"
>>>import="java.text.SimpleDateFormat,java.util.*,java.sql.*"%>
>>>
>>>
>>>   
>>>   <%out.println("ÐÒÉ×ÅÔ!");%>
>>>   
>>>
>>>
>>>sample.xsl:
>>>
>>>>>xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
>>>   xmlns:xsp-request="http://apache.org/xsp/request/2.0";
>>>
>>> 
>>>  
>>>   
>>>
>>> 
>>>
>>>   
>>>   
>>>
>>>   
>>>  
>>> 
>>>
>>> 
>>>   
>>> 
>>>
>>>
>>>I have following  line in sitemap:
>>>>>src="org.apache.cocoon.generation.JspGenerator"
>>>logger="sitemap.generator.jsp" label="content,data">
>>>   KOI8-R
>>>
>>>...and...
>>>  
>>>
>>>
>>>
>>>   
>>>
>>>After generation I have next:
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>???ÐÒÉ×ÅÔ! ???
>>>
>>>
>>>
>>>
>>>
>>>
>>>Can anyone help me?
>>>Thanx
>>>Yury
>>>
>>>
>>>
>>>-
>>>Please check that your question has not already been answered in the
>>>FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>>>
>>>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
>>>For additional commands, e-mail: <[EMAIL PROTECTED]>
>>>
>>>
>>>-
>>>Please check that your question has not already been answered in the
>>>FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>>>
>>>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
>>>For additional commands, e-mail: <[EMAIL PROTECTED]>
>>>
>>
>>
>>
>>-
>>Please check that your question has not already been answered in the
>>FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>>
>>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
>>For additional commands, e-mail: <[EMAIL PROTECTED]>
>>
>
>
>-
>Please check that your question has not already been answered in the
>FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>
>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
>For additional commands, e-mail: <[EMAIL PROTECTED]>
>




-
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

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




RE: JSPGenerator encoding problem

2002-02-07 Thread Vadim Gritsenko

Your JSP is not valid. It does not declares JSP encoding as it should.
Obviously JSP runtime is unable to read characters correctly.

Regards,
Vadim

> -Original Message-
> From: yuryx [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 07, 2002 1:06 PM
> To: [EMAIL PROTECTED]
> Subject: Re: JSPGenerator encoding problem
> 
> Without transformation I have
> 
> 
> 
> 
> 
> ÐÒÉ×ÅÔ!
> 
> 
> 
> 
> 
> 
> Problem with generation, I know...
> 
> Piroumian, Konstantin wrote:
> 
> >Is it the problem of JSPGenerator or maybe this happens during
> >transformation or serialization? Try to remove the transformer from
the
> >pipeline or replace JSPGenerator with FileGenerator and use static
content
> >in KOI8-r to find out what is the cause of the problem.
> >
> >Regards,
> >Konstantin Piroumian
> >
> >- Original Message -
> >From: "yuryx" <[EMAIL PROTECTED]>
> >To: <[EMAIL PROTECTED]>
> >Sent: Thursday, February 07, 2002 7:50 PM
> >Subject: JSPGenerator encoding problem
> >
> >
> >Hello all!
> >
> >I have following problem.
> >JSPGenerator doesn't normally encoding non english  characters.
> >Simple sample:
> >sample.jsp:
> ><%out.println("");%>
> ><%@ page language="java"
> >import="java.text.SimpleDateFormat,java.util.*,java.sql.*"%>
> >
> >
> >
> ><%out.println("ÐÒÉ×ÅÔ!");%>
> >
> >
> >
> >sample.xsl:
> >
> > >xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
> >xmlns:xsp-request="http://apache.org/xsp/request/2.0";
> >
> >  
> >   
> >
> > 
> >  
> > 
> >
> >
> > 
> >
> >   
> >  
> >
> >  
> >
> >  
> >
> >
> >I have following  line in sitemap:
> > >src="org.apache.cocoon.generation.JspGenerator"
> >logger="sitemap.generator.jsp" label="content,data">
> >KOI8-R
> >
> >...and...
> >   
> > 
> > 
> > 
> >
> >
> >After generation I have next:
> >
> >
> >
> >
> >
> >
> >
> >
> >???ÐÒÉ×ÅÔ! ???
> >
> >
> >
> >
> >
> >
> >Can anyone help me?
> >Thanx
> >Yury
> >
> >
> >
> >-
> >Please check that your question has not already been answered in the
> >FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> >
> >To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> >For additional commands, e-mail: <[EMAIL PROTECTED]>
> >
> >
> >-
> >Please check that your question has not already been answered in the
> >FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> >
> >To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> >For additional commands, e-mail: <[EMAIL PROTECTED]>
> >
> 
> 
> 
> 
> -
> Please check that your question has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> 
> To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> For additional commands, e-mail: <[EMAIL PROTECTED]>


-
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

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




Re: JSPGenerator encoding problem

2002-02-07 Thread yuryx

Without transformation I have





ÐÒÉ×ÅÔ!






Problem with generation, I know...

Piroumian, Konstantin wrote:

>Is it the problem of JSPGenerator or maybe this happens during
>transformation or serialization? Try to remove the transformer from the
>pipeline or replace JSPGenerator with FileGenerator and use static content
>in KOI8-r to find out what is the cause of the problem.
>
>Regards,
>Konstantin Piroumian
>
>- Original Message -
>From: "yuryx" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Thursday, February 07, 2002 7:50 PM
>Subject: JSPGenerator encoding problem
>
>
>Hello all!
>
>I have following problem.
>JSPGenerator doesn't normally encoding non english  characters.
>Simple sample:
>sample.jsp:
><%out.println("");%>
><%@ page language="java"
>import="java.text.SimpleDateFormat,java.util.*,java.sql.*"%>
>
>
>
><%out.println("ÐÒÉ×ÅÔ!");%>
>
>
>
>sample.xsl:
>
>xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
>xmlns:xsp-request="http://apache.org/xsp/request/2.0";
>
>  
>   
>
> 
>  
> 
>
>
> 
>
>   
>  
>
>  
>
>  
>
>
>I have following  line in sitemap:
>src="org.apache.cocoon.generation.JspGenerator"
>logger="sitemap.generator.jsp" label="content,data">
>KOI8-R
>
>...and...
>   
> 
> 
> 
>
>
>After generation I have next:
>
>
>
>
>
>
>
>
>???ÐÒÉ×ÅÔ! ???
>
>
>
>
>
>
>Can anyone help me?
>Thanx
>Yury
>
>
>
>-
>Please check that your question has not already been answered in the
>FAQ before posting. 
>
>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
>For additional commands, e-mail: <[EMAIL PROTECTED]>
>
>
>-
>Please check that your question has not already been answered in the
>FAQ before posting. 
>
>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
>For additional commands, e-mail: <[EMAIL PROTECTED]>
>




-
Please check that your question has not already been answered in the
FAQ before posting. 

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




Re: JSPGenerator encoding problem

2002-02-07 Thread Piroumian, Konstantin

Is it the problem of JSPGenerator or maybe this happens during
transformation or serialization? Try to remove the transformer from the
pipeline or replace JSPGenerator with FileGenerator and use static content
in KOI8-r to find out what is the cause of the problem.

Regards,
Konstantin Piroumian

- Original Message -
From: "yuryx" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 07, 2002 7:50 PM
Subject: JSPGenerator encoding problem


Hello all!

I have following problem.
JSPGenerator doesn't normally encoding non english  characters.
Simple sample:
sample.jsp:
<%out.println("");%>
<%@ page language="java"
import="java.text.SimpleDateFormat,java.util.*,java.sql.*"%>



<%out.println("ÐÒÉ×ÅÔ!");%>



sample.xsl:

http://www.w3.org/1999/XSL/Transform";>
xmlns:xsp-request="http://apache.org/xsp/request/2.0";

  
   

 
  
 


 

   
  

  

  


I have following  line in sitemap:

KOI8-R

...and...
   
 
 
 


After generation I have next:








???ÐÒÉ×ÅÔ! ???






Can anyone help me?
Thanx
Yury



-
Please check that your question has not already been answered in the
FAQ before posting. 

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


-
Please check that your question has not already been answered in the
FAQ before posting. 

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