Access97 - Cocoon2

2002-05-22 Thread zze-STIENNE Nicolas FTRD/DMI/CAE
Title: Access97 - Cocoon2





Hi !!


 I've got a problem to access to my database Access97 under w2000. I work with Tomcat3.3.2, Java 2 SDK 1.4  and Cocoon2.

 I made an odbc link (outils d'administration/Sources de donnees odbc/Sources de donnees systemes/Ajouter/AccessDriver/Base de donnees).


 I test it with a Java program: it works well, I can read my data.


But the problem comes with cocoon : 


org.apache.cocoon.ProcessingException: Exception in ServerPagesGenerator.generate(): java.lang.RuntimeException: Could not get the datasource org.apache.avalon.excalibur.datasource.NoValidConnectionException: No valid JdbcConnection class available

The files I use: 


base.xsp : 


  xmlns:xsp="http://apache.org/xsp"
  xmlns:esql="http://apache.org/cocoon/SQL/v2">

   
 pool
   




web.xml : 
    
  load-class
  sun.jdbc.odbc.JdbcOdbcDriver
    


cocoon.xconf :


jdbc:odbc:bdaccess





In my Java, I made the test with: 
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    db = DriverManager.getConnection("jdbc:odbc:bdaccess"); 


Does really the sitemap generate a sever page ?
sitemap.xmap :
        
            
                    
                    
            
        



I don't see what is bad...


Thanks for all, 


Nicolas !!



--- Version francaise ---


Bonjour, 
    J'ai un probleme pour acceder a ma base Access97 sous Windows2000. J'utilise Tomcat3.3.2, Java 2 SDK 1.4  et Cocoon2.

  J'ai cree un lien odbc (outils d'administration/Sources de donnees odbc/Sources de donnees systemes/Ajouter/AccessDriver/Base de donnees).

  J'ai verifie que mon lien odbc fonctionnait avec un petit programme java : impecable, je peux lire les donnees enregistree dans la bd.

  En revanche, ca coince au moment de l'utilisation de cocoon : 
org.apache.cocoon.ProcessingException: Exception in ServerPagesGenerator.generate(): java.lang.RuntimeException: Could not get the datasource org.apache.avalon.excalibur.datasource.NoValidConnectionException: No valid JdbcConnection class available




Dans mon fichier Java, je faisais le test avec : 
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    db = DriverManager.getConnection("jdbc:odbc:bdaccess"); 


Faut-il bien que le sitemap genere une page serveur ?
 


Je ne vois pas ce que je fais mal...
Merci, 
Nicolas !!




-
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: [C2] Using RequestSelector for redirect

2002-05-28 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Perhaps could you find some help on this page : 
http://www.cocooncenter.de/cc/documents/resources/request-params/requestselector.html

Nicolas !!

> -Message d'origine-
> De : Christian Joelly [mailto:[EMAIL PROTECTED]]
> Envoyé : mardi 28 mai 2002 10:18
> À : Cocoon ML
> Objet : [C2] Using RequestSelector for redirect
> 
> 
> Hello!
> 
> i want to setup a redirect to a startpage when 2 request parameters
> are not set and one request parameter is set (and of a certain
> string-length). how can i use the map:select component to 
> check for this
> request parameters?
> 
> my problem is the use of map:when and map:parameter i don't understand
> to use in my situation... ;o)
> 
> thx, Chris
> 
> -- 
> KNAPP Logistics Automation  http://www.knapp.com
> Ing. Christian JöllyTel/FAX: (++43) 316 / 495 1926 / 495 394
> Günter-Knapp-Straße 5-7 A-8075 Hart bei Graz
> 
> 

-
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]>




wml and xmlns

2002-06-03 Thread zze-STIENNE Nicolas FTRD/DMI/CAE
Title: wml and xmlns






Hello...


I generate html pages with my Cocoon 2.0.2 (+Tomcat 4.0.3 + JDK1.3.1)

installation.


Now I want to generate wml pages. My problem is that I use a namespace

in my documents : 

xmlns:site="http://www.monsite.fr"

It seems to be forbidden to use one in wml...


The generated code looks like that : 



"http://www.wapforum.org/DTD/wml_1.1.xml">

http://www.monsite.fr">







Logo



Presentation

généraleTransportLogistiqueContactEspace

clients






The wap simulator says : Invalid WML code

If I try to modify the code by hand and remlove the xmlns part (->

instead of http://www.monsite.fr">), it works...


So my question is : How could I do ?

One solution were probably to remove all the xmlns notifications... but

if there were another, I would prefere...


Thanks for your help

Nicolas !!

(I apologize for my poor english)


Extracts of my files : 


menu.xsl




http://www.w3.org/1999/XSL/Transform"

version='1.0'

    xmlns:site="http://www.monsite.fr">

















Logo

     




  

    

  

     








toc.xml : 







    xmlns:xlink="http://www.w3.org/1999/xlink"

    xmlns:i18n="http://apache.org/cocoon/i18n/2.0"

    xmlns:site="http://www.monsite.fr">





  

    Presentation generale



    Historique

    Nos" atouts

    Chiffres" clefs

  

  

  

    Transport



    Transport" par lot

    Messagerie

    PO" Express

  

[...]



-


sitemap.xmap




http://apache.org/cocoon/sitemap/1.0">


  

    

    

   

src=""org.apache.cocoon.transformation.TraxTransformer"/>

 

  

    

   

src=""org.apache.cocoon.serialization.HTMLSerializer"/>


   

mime-type="text/vnd.wap.wml" name="wml"

src=""org.apache.cocoon.serialization.XMLSerializer">

 -//WAPFORUM//DTD WML 1.1//EN

 

http://www.wapforum.org/DTD/wml_1.1.xml

 ASCII

 yes

    

[...]


  



    

    



    

  


[...]




-
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]>


wml and xmlns

2002-06-04 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Sorry, previous mail was in html written...

Hello... 
I generate html pages with my Cocoon 2.0.2 (+Tomcat 4.0.3 + JDK1.3.1) installation. 

Now I want to generate wml pages. My problem is that I use a namespace in my documents 
: 
xmlns:site="http://www.monsite.fr"; 

It seems to be forbidden to use one in wml... 

The generated code looks like that : 

http://www.wapforum.org/DTD/wml_1.1.xml";> 
http://www.monsite.fr";> 
 
 
 
Logo 
 
Presentation 
généraleTransportLogistiqueContactEspace 
clients 
 
 

The wap simulator says : Invalid WML code 
If I try to modify the code by hand and remlove the xmlns part (-> 
instead of http://www.monsite.fr";>), it works... 
So my question is : How could I do ? 
One solution were probably to remove all the xmlns notifications... but 
if there were another, I would prefere... 

I saw some messages about a similar problem in the list but it didn't resolve my.

Thanks for your help 
Nicolas !! 
(I apologize for my poor english) 


Extracts of my files : 

menu.xsl 
 
http://www.w3.org/1999/XSL/Transform"; 
version='1.0' 
xmlns:site="http://www.monsite.fr";> 
 
 
 
 
 
 
 
Logo 
 
 
   
 
   
 
 
 
 
toc.xml : 
 
http://www.w3.org/1999/xlink"; 
xmlns:i18n="http://apache.org/cocoon/i18n/2.0"; 
xmlns:site="http://www.monsite.fr";> 
 
   
Presentation generale 
 
Historique 
Nos atouts 
Chiffres clefs 
   
  
   
Transport 
 
Transport par lot 
Messagerie 
PO Express 
   
[...] 
 
- 
sitemap.xmap 
 
http://apache.org/cocoon/sitemap/1.0";> 
   
 
 

  
   
 


 -//WAPFORUM//DTD WML 1.1//EN 
  
http://www.wapforum.org/DTD/wml_1.1.xml 
 ASCII 
 yes 
 
[...] 
   
 
 
 
 
 
   
[...] 

-
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: Form-validator error in AbstractValidatorAction.java

2002-06-11 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Hello

My Protected Area in Web Applications Cocoons samples doesn't work. 
ie: I try to log in using Donald Ball, but as I submit, nothing append:
the same login page come back.

Where does it come from ?

thanks

Nicolas !!

-
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]>




Protected Area - Cocoon sample

2002-06-11 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Hello

My Protected Area in Web Applications Cocoons samples doesn't work. 
ie: I try to log in using Donald Ball, but as I submit, nothing append:
the same login page come back.

Where does it come from ?

thanks

Nicolas !!

-
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: Logging problem with actions & subsitemaps?

2002-06-11 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Hello

How could I test it ?

I got it from the cocoon-2.0.2-src : logkit.xconf and logkit-1.0.1.jar
I don't use CVS...

> 
> Make sure you have latest logkit.xconf from the 2.0.3 CVS.
> 
> Vadim
> 

-
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]>




xsp: pb with snapshots versions ?

2002-06-24 Thread zze-STIENNE Nicolas FTRD/DMI/CAE
Title: xsp: pb with snapshots versions ?





Hi !!


    I tried some snapshots versions of Cocoon2[.1-dev] : 2002.06.24.041712, 21.102726, 20.103348. Every time, the xsp samples don't work (esql neither).

    Where does it come from ? Is there something I forgot ?


I used Tomcat 4.0.3 and JDK 1.3.1-03 and the installation guide from xml.apache.org.


Thanks, 


Nicolas !!




-
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: pb with snapshots versions ?

2002-06-26 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Thanks for your responses:

1. Sorry, I know I don't have to use html mode but I don't be carrefull...
2. Ok, I had forgotten this point
3. ok, that's done
4. I have a problem to get 2.0.3 version. I installed WinCvs (yes, I work under w2000) 
but it don't run well: 

error message:
TCL is available, shell is enabled : help (select and press enter)
NEW CVSROOT: :pserver:[EMAIL PROTECTED]:/home/cvspublic (password authentication 
using a proxy)
cvs login 
(Logging in to [EMAIL PROTECTED])
cvs [login aborted]: recv() from server cvs.apache.org: EOF

*CVS exited normally with code 1*

Is there another way to get Cocoon 2.0.3 ?

Thanks, nicolas !!


> -Message d'origine-
> De : Vadim Gritsenko [mailto:[EMAIL PROTECTED]]
> Envoyé : mercredi 26 juin 2002 03:41
> À : [EMAIL PROTECTED]
> Objet : RE: pb with snapshots versions ?
> 
> 
> Nicolas,
> 
> Please:
> 1. Use plain text email.
> 2. Read
> http://cvs.apache.org/viewcvs.cgi/xml-cocoon2/WARNING?rev=1.4&;
> content-ty
> pe=text/vnd.viewcvs-markup which says that CVS head is alpha status.
> 3. Install Tomcat 4.0.4.
> 4. Get yourself Cocoon 2.0.3 version from the CVS
> 
> 
> Vadim
> 
> 
> -Original Message-
> From: zze-STIENNE Nicolas FTRD/DMI/CAE
> [mailto:[EMAIL PROTECTED]] 
> Sent: Monday, June 24, 2002 8:36 AM
> To: '[EMAIL PROTECTED]'
> Subject: xsp: pb with snapshots versions ?
> 
> Hi !! 
>     I tried some snapshots versions of Cocoon2[.1-dev] :
> 2002.06.24.041712, 21.102726, 20.103348. Every time, the xsp samples
> don't work (esql neither).
>     Where does it come from ? Is there something I forgot ? 
> I used Tomcat 4.0.3 and JDK 1.3.1-03 and the installation guide from
> xml.apache.org. 
> Thanks, 
> Nicolas !! 
> 
> 
> -
> Please check that your question  has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faq/index.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/faq/index.html>

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




RE: sent map parameters into another sitemap

2002-06-27 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

I tried the solution you give but it don't seams to work (for me).
No error message comes, I just don't obtain the values of the parameters.

Note: Tomcat4.0.4, W2000, JDK1.3.1_3, Cocoon2.0.2-scr ( I know you said "only in 
2.1-dev version" but my Cocoon start-page indicates "version 2.1-dev" )

Otherwise, did I well understand ? 

In my parent sitemap : 

  




  


  

[..]

  

and in soussite/sitemap.xmap:

 

  

  


  

  
[..]

  

thanks...
Nicolas !!

> > 
> > Hi all!
> > 
> > Does is possible sent sitemap parameters into mounted sitenap 
> > like this:
> > 
> >  > reload-method="synchron">
> > 
> > 
> 
> Yes!!!
> 
> ...but only in 2.1-dev version.
> Use this in your subsitemap:
> 
> 
>   
>value="some-default-value" />
>   ...
> 
> KP
> 
> > 
> > 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: sent map parameters into another sitemap

2002-06-27 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

ok...
and with 2.0.2, there is absolutely no solution to sent a parameter to a sub-sitemap ?
and is that normal, I get no error message ?

> De : Piroumian Konstantin [mailto:[EMAIL PROTECTED]]

> > From: zze-STIENNE Nicolas FTRD/DMI/CAE 
> > 
> > I tried the solution you give but it don't seams to work (for me).
> > No error message comes, I just don't obtain the values of the 
> > parameters.
> > 
> > Note: Tomcat4.0.4, W2000, JDK1.3.1_3, Cocoon2.0.2-scr ( I 
> > know you said "only in 2.1-dev version" but my Cocoon 
> > start-page indicates "version 2.1-dev" )
> > 
> > Otherwise, did I well understand ? 
> 
> To be exact: only in 2.1-dev version from CVS HEAD branch and 
> only with
> TreeProcessor as the sitemap engine.
> 
> Don't know why do you have 2.1-dev in the start-page, in 2.0.3 version
> everything's correct.
> 
> Konstantin
> 
> > 
> > In my parent sitemap : 
> > 
> >   
> > 
> > 
> > 
> > 
> >> uri-prefix="{1}/{2}/soussite" reload-method="synchron">
> > 
> > 
> >   
> > 
> > [..]
> > 
> >   
> > 
> > and in soussite/sitemap.xmap:
> > 
> >  
> > 
> >   
> > 
> >   
> > 
> > 
> >   
> > 
> >   
> > [..]
> > 
> >   
> > 
> > thanks...
> > Nicolas !!
> > 
> > > > 
> > > > Hi all!
> > > > 
> > > > Does is possible sent sitemap parameters into mounted sitenap 
> > > > like this:
> > > > 
> > > >  > > > reload-method="synchron">
> > > > 
> > > > 
> > > 
> > > Yes!!!
> > > 
> > > ...but only in 2.1-dev version.
> > > Use this in your subsitemap:
> > > 
> > > 
> > >   
> > >> > value="some-default-value" />
> > >   ...
> > > 
> > > KP
> > > 
> > > > 
> > > > Thanx.
> > > > Yury.
> > > > 
> > > > 
> > > > 
> > > > 
> > > 
> > 
> -
> > > > Please check that your question  has not already been 
> > > answered in the
> > > > FAQ before posting. 
> > <http://xml.apache.org/cocoon/faq/index.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/faq/index.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/faq/index.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/faq/index.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/faq/index.html>

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




RE: sent map parameters into another sitemap

2002-06-28 Thread zze-STIENNE Nicolas FTRD/DMI/CAE



> > 
> > ok...
> > and with 2.0.2, there is absolutely no solution to sent a 
> > parameter to a sub-sitemap ?
> 
> There can't be "absolutely no solution" in open source: you 
> can add the
> needed functionality yourself, 
... I think I will try another solution...

> but if you describe why do you 
> need then
> maybe somebody will propose another quicker solution.
> 
> > and is that normal, I get no error message ?
> 
> When specifing parameters to mount? Yes. Most of the sitemap 
> elements are
> parametrizable, but in map:mount they simply ignored.
> 
> Konstantin
> 

ok, thanks for this informations...



> > 
> > > De : Piroumian Konstantin [mailto:[EMAIL PROTECTED]]
> > 
> > > > From: zze-STIENNE Nicolas FTRD/DMI/CAE 
> > > > 
> > > > I tried the solution you give but it don't seams to 
> work (for me).
> > > > No error message comes, I just don't obtain the values of the 
> > > > parameters.
> > > > 
> > > > Note: Tomcat4.0.4, W2000, JDK1.3.1_3, Cocoon2.0.2-scr ( I 
> > > > know you said "only in 2.1-dev version" but my Cocoon 
> > > > start-page indicates "version 2.1-dev" )
> > > > 
> > > > Otherwise, did I well understand ? 
> > > 
> > > To be exact: only in 2.1-dev version from CVS HEAD branch and 
> > > only with
> > > TreeProcessor as the sitemap engine.
> > > 
> > > Don't know why do you have 2.1-dev in the start-page, in 
> > 2.0.3 version
> > > everything's correct.
> > > 
> > > Konstantin
> > > 
> > > > 
> > > > In my parent sitemap : 
> > > > 
> > > >   
> > > > 
> > > > 
> > > > 
> > > > 
> > > >> > > uri-prefix="{1}/{2}/soussite" reload-method="synchron">
> > > > 
> > > > 
> > > >   
> > > > 
> > > > [..]
> > > > 
> > > >   
> > > > 
> > > > and in soussite/sitemap.xmap:
> > > > 
> > > >  
> > > > 
> > > >   
> > > > 
> > > >   
> > > >  value="presentationgenerale" />
> > > > 
> > > >   
> > > > 
> > > >   
> > > > [..]
> > > > 
> > > >   
> > > > 
> > > > thanks...
> > > > Nicolas !!
> > > > 
> > > > > > 
> > > > > > Hi all!
> > > > > > 
> > > > > > Does is possible sent sitemap parameters into 
> mounted sitenap 
> > > > > > like this:
> > > > > > 
> > > > > >  > > > > > reload-method="synchron">
> > > > > > 
> > > > > > 
> > > > > 
> > > > > Yes!!!
> > > > > 
> > > > > ...but only in 2.1-dev version.
> > > > > Use this in your subsitemap:
> > > > > 
> > > > > 
> > > > >   
> > > > >> > > > value="some-default-value" />
> > > > >   ...
> > > > > 
> > > > > KP
> > > > > 
> > > > > > 
> > > > > > Thanx.
> > > > > > Yury.
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > 
> > > > 
> > > 
> > 
> -
> > > > > > Please check that your question  has not already been 
> > > > > answered in the
> > > > > > FAQ before posting. 
> > > > <http://xml.apache.org/cocoon/faq/index.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

RE: writing servlet output to disk

2002-07-01 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Hi !!

 I reuse the Webapp sample "protected area". 

Once the identification done, I arrived on the "protected page". But how
could I do to go into another page without quiting the "protected zone".

I mean : if there is a link on my "protected page" how could I do to
stay in a protected state ?

At the moment, as I go to another page, the data transmit by the session
() are unavailable...

Thanks, Nicolas !!

-
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]>




session...

2002-07-02 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

[bis: I indicated a false title]

Hi !!

 I reuse the Webapp sample "protected area". 

Once the identification done, I arrived on the "protected page". But how
could I do to go into another page without quiting the "protected zone".

I mean : if there is a link on my "protected page" how could I do to
stay in a protected state ?

At the moment, as I go to another page, the data transmit by the session
() are unavailable...

Thanks, Nicolas !!

-
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: session...

2002-07-04 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Thanks for this suggestion...

If I well understand, I have to put this part of code in the matcher I
want to protect...

So I do...

   

  
  
  



  
  
  
  
  
  


  
  
  
  
  
  
 
   

   





  


And I get this result
If I request the page 'internet/espaceclient/test.bienvenue.info' I'm
redirect to the 'espaceclient.info' page: that's good, 
but if I submit the login and password and get this error message: 

type resource-not-found
message Resource not found
description The requested URI
"/cocoon/transrapide/internet/espaceclient/test.bienvenue.info" was not
found.


NB: When I remove


  
  
  
and




It works well... I get my page 'test.bienvenue.info'


Thanks for more explainations...
Nicolas !!

PS: extract of the sitemap:

  
  
  
  


  
  
   

  
  



  

  
  
  
  


  
  
  
  



  



  

  
  
  
  


  
  
  

  



  

  
  
  
  

  

  





> -Message d'origine-
> De : Vadim Gritsenko [mailto:[EMAIL PROTECTED]]
> Envoye : mercredi 3 juillet 2002 17:59
> A : [EMAIL PROTECTED]
> Objet : RE: session...
> 
> 
> > From: zze-STIENNE Nicolas FTRD/DMI/CAE
> > 
> > [bis: I indicated a false title]
> > 
> > Hi !!
> > 
> >  I reuse the Webapp sample "protected area".
> > 
> > Once the identification done, I arrived on the "protected page". But
> how
> > could I do to go into another page without quiting the "protected
> zone".
> > 
> > I mean : if there is a link on my "protected page" how could I do to
> > stay in a protected state ?
> 
> Have you seen sitemap?
> 
>   
>   
>   
> ...
> 
> 
>value="context://protected//descriptors/params.xml"/>
>value="username,department_id,theme"/>
>   
> ...
> 
> 
> Vadim
> 
> 
> > At the moment, as I go to another page, the data transmit by the
> session
> > () are unavailable...
> > 
> > Thanks, Nicolas !!
> 
> 
> -
> Please check that your question  has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faq/index.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/faq/index.html>

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




RE: session...

2002-07-04 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

As I chearch the answer to my problem, thanks to the logs files, I note
that the parameters {1},{2}... in the matcher
'internet/espaceclient/*.*.*' are empty...
So the sitemap try to generate the page 'logic/espaceclient/.xsp' that
obviously doesn't exist !!

I saw in the sitemap.log that the variables are in fact ../1, ../2
I remember another mail that said : 
"On your '*.xsp' pipeline I noticed you used {1}. Once you use an action
it
sets a new context and you need to use {../1} to get to the ancestor (or
parent)."

So I tried whith {../1} instead of {1}... and it works better... 

Sorry for my questions...
Nicolas !!


> -Message d'origine-
> De : zze-STIENNE Nicolas FTRD/DMI/CAE 
> Envoye : jeudi 4 juillet 2002 11:27
> A : [EMAIL PROTECTED]
> Objet : RE: session...
> 
> 
> Thanks for this suggestion...
> 
> If I well understand, I have to put this part of code in the matcher I
> want to protect...
> 
> So I do...
> 
>
> 
>value="descriptors/params.xml"/>
>value="identifiant,nom,prenom,id,titre"/>
>   
> 
>  src="logic/espaceclient/{1}.xsp"/>
> 
>value="../../documents/espaceclient/{2}.xml"/>
>   
>   
>   
>value="../../documents/toc.xml"/>
>   
> 
> 
>   
>value="../../documents/toc.xml"/>
>   
>   
>value="../../documents/logo.xml"/>
>   
>  
>
> 
>
> 
> 
> 
> 
> 
>   
> 
> 
> And I get this result
> If I request the page 'internet/espaceclient/test.bienvenue.info' I'm
> redirect to the 'espaceclient.info' page: that's good, 
> but if I submit the login and password and get this error message: 
> 
> type resource-not-found
> message Resource not found
> description The requested URI
> "/cocoon/transrapide/internet/espaceclient/test.bienvenue.info
> " was not
> found.
> 
> 
> NB: When I remove
> 
> 
>value="descriptors/params.xml"/>
>value="identifiant,nom,prenom,id,titre"/>
>   
> and
> 
> 
> 
> 
> It works well... I get my page 'test.bienvenue.info'
> 
> 
> Thanks for more explainations...
> Nicolas !!
> 
> PS: extract of the sitemap:
> 
>   
>   
>   
>   
> 
> 
>   
>   
>
>   
> 
>   
> 
> 
> 
>   
> 
>   
>   
>   
>   
> 
> 
>value="descriptors/params.xml"/>
>value="identifiant,motpasse"/>
>   
>   
>  value="descriptors/auth.xml"/>
> 
> 
>   
> 
>     
>     
>       
> 
>   
>   
>   
>   
> 
> 
>value="descriptors/params.xml"/>
>value="identifiant,nom,prenom,id,titre"/>
>   
>  uri="test.bienvenue.info"/>
>   
> 
> 
> 
>   
> 
>   
>   
>   
>   
> 
>   
> 
>   
> 
> 
> 
> 
> 
> > -Message d'origine-
> > De : Vadim Gritsenko [mailto:[EMAIL PROTECTED]]
> > Envoye : mercredi 3 juillet 2002 17:59
> > A : [EMAIL PROTECTED]
> > Objet : RE: session...
> > 
> > 
> > > From: zze-STIENNE Nicolas FTRD/DMI/CAE
> > > 
> > > [bis: I indicated a false title]
> > > 
> > > Hi !!
> > > 
> > >  I reuse the Webapp sample "protected area".
> > > 
> > > Once the identification done, I arrived on the "protected 
> page". But
> > how
> > > could I do to go into another page without quiting the "protected
> > zone".
> > > 
> > > I mean : if there is a link on my "protected page" how 
> could I do to
> > > stay in a protected state ?
> > 
> > Have you seen sitemap?
> > 
> >   
> >   
> >   
> > ...
> > 
> > 
> >> value="context://protected//descriptors/params.xml"/>
> > 

Protected area sample -> wml

2002-07-16 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Hi everybody !!

  I want to make a protected area on my Wap sites version. I looked at the Cocoon 
Webapps sample and the protected area one. Is that possible to translate it in wml ? 
Could it work with a wap terminal ? Is the session managed in the same way ? Is there 
another way to do it ?

Thanks for help...

Nicolas !!

Cocoon2.0.2 Tomcat4.0.4 JDK1.3.1_03 W2000

-
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]>




session & wap device

2002-07-23 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Hi !!

  I want to know if the wap devices support the sessions used in Cocoons protected 
area sample. It seams to work bad... I can't validate a login...


I am redireted to the login1 page with the wap (not with the conventionnal 
browser)[the * in the match pattern stands for wap or defaut-browser]

  
  
  
  


  
  
  
  



  



  


Thanks for help...

Nicolas !!

Cocoon2.0.2 Tomcat4.0.4 JDK1.3.1_03 W2000

-
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]>




Redirect-to... wap

2002-07-31 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Hi !!

I have a problem with a  command.

For example, when I request the uri "monsite/wap/menu.contact", I would
like to be redirect to the uri "monsite/wap/contact/contact.info".

To do that, I have in my subdirectory monsite a sitemap with this lines
: 


[...]
  

  

 


  
  
  
  
   
   
  
  
  
  
 
   

  
[...]


The other pages (without redirection) works fine.

one wap terminal emulator says : 

Net Request   :
http://c-ace-st1.rd.francetelecom.fr:8080/cocoon/transrapide/wap/menu.co
ntact
Net Request   : error:neterr/compile-error.wml

 the screen stays blank and the source seams to be empty

another : 

Invalid WML Code



How could I resolve my problem ?
Is redirect-to command avaible with a wap terminal, a wml serializer ??

Thanks

Nicolas !!

Cocoon 2.0.2, jdk 1.3.1-03, tomcat 4.0.4, W2000

-
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]>




2.0.2 -> 2.0.3

2002-08-28 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Hi !!

I worked with Tomcat 4.0.4, JDK 1.3.1_03 and Cocoon2.0.2 under W2000.

I want to use the Cocoon2.0.3 version.

I installed it as describe in the "Installing Apache Cocoon" page.

But when I test it I receive the following message : 

org.apache.cocoon.ProcessingException: Language Exception:
org.apache.cocoon.components.language.LanguageException: Error compiling
sitemap_xmap: Line 1210, column 84: invalid escape character Line 1214,
column 40: invalid escape character Line 1261, column 84: invalid escape
character Line 1265, column 40: invalid escape character Line 0, column
0: 4 errors 

Where could the problem come from ? 
How can I interprete the line number: 1210 doesn't exist in my
sitemap...

Why does my sitemap compile without error under Cocoon2.0.2 but not
under Cocoon2.0.3 ?

Thanks for the response...

Please excuse me if a similar question/answer has been written... I
haven't found it...

Nicolas !!

-
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: 2.0.2 -> 2.0.3

2002-08-29 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

Hi !!

Thanks a lot for this explanation... it realy helped me.


Remember : 
 I worked with Tomcat 4.0.4, JDK 1.3.1_03 and Cocoon2.0.2 under W2000.
 I want to use the Cocoon2.0.3 version.
 I installed it as describe in the "Installing Apache Cocoon" page.


I have now another problem... and the message:

type fatal

message Generator already set. You can only select one Generator (file)

description org.apache.cocoon.ProcessingException: Generator already
set. You can only select one Generator (file)

sender org.apache.cocoon.servlet.CocoonServlet

source Cocoon servlet

stack-trace

org.apache.cocoon.ProcessingException: Generator already set. You can
only select one Generator (file)
at
org.apache.cocoon.components.pipeline.AbstractEventPipeline.setGenerator
(AbstractEventPipeline.java:135)
at
org.apache.cocoon.components.pipeline.CachingEventPipeline.setGenerator(
CachingEventPipeline.java:117)
at
org.apache.cocoon.www.file_.H_.transrapide.sitemap_xmap.matchN10564(H:\j
akarta-tomcat-4.0.4\work\Standalone\localhost\cocoon\cocoon-files\org/ap
ache/cocoon/www/file_/H_/transrapide\sitemap_xmap.java:3798)
at
org.apache.cocoon.www.file_.H_.transrapide.sitemap_xmap.process(H:\jakar
ta-tomcat-4.0.4\work\Standalone\localhost\cocoon\cocoon-files\org/apache
/cocoon/www/file_/H_/transrapide\sitemap_xmap.java:1087)
at
org.apache.cocoon.www.file_.H_.transrapide.sitemap_xmap.process(H:\jakar
ta-tomcat-4.0.4\work\Standalone\localhost\cocoon\cocoon-files\org/apache
/cocoon/www/file_/H_/transrapide\sitemap_xmap.java:782)
at org.apache.cocoon.sitemap.Handler.process(Handler.java:224)
at org.apache.cocoon.sitemap.Manager.invoke(Manager.java:179)
[...]
request-uri

/cocoon/transrapide/internet/espaceclient/espaceclient.info

path-info

transrapide/internet/espaceclient/espaceclient.info

It appears as I use this part of my sitemap (with the request uri
"internet/espaceclient/test.bienvenue.acces" and no session
information): 

 



  
  
  


  


  
  
  
  
  
  
  
  


  
  
  
  
  
  
  
  
  
  
  
 
   
   





  

that use the redirect part and this other part of the sitemap: 

  


  
  
   

  
  


  


Obviously, this worked with 2.0.2...

Thanks, 

Nicolas !!

> -Message d'origine-
> De : Koen Pellegrims [mailto:[EMAIL PROTECTED]]
> Envoye : mercredi 28 aout 2002 15:54
> A : [EMAIL PROTECTED]
> Objet : RE: 2.0.2 -> 2.0.3
> 
> 
> I cannot tell you what has changed, but I can help you look 
> for the error.
> The exception is thrown during the compile phase for the 
> sitemap. When the
> sitemap (or any xsp/logicsheet) is recompiled, cocoon generates a java
> source file that gets compiled. The line number in the 
> exception is in this
> sitmap_xmap.java file.
> 
> This file is somewhere in your work directory, which is probably
> /work or /webapps/cocoon/WEB-INF/work. In this
> directory, you'll find a hierarchy that corresponds with your 
> webapps. Look
> for sitemap_xmap.java there and inspect line 1210. That 
> should at least give
> you a clue as to what is wrong with your sitemap.
> 
> K.
> 
> > -Oorspronkelijk bericht-
> > Van: zze-STIENNE Nicolas FTRD/DMI/CAE
> > [mailto:[EMAIL PROTECTED]]
> > Verzonden: woensdag 28 augustus 2002 15:31
> > Aan: [EMAIL PROTECTED]
> > Onderwerp: 2.0.2 -> 2.0.3
> >
> >
> > Hi !!
> >
> > I worked with Tomcat 4.0.4, JDK 1.3.1_03 and Cocoon2.0.2 
> under W2000.
> >
> > I want to use the Cocoon2.0.3 version.
> >
> > I installed it as describe in the "Installing Apache Cocoon" page.
> >
> > But when I test it I receive the following message :
> >
> > org.apache.cocoon.ProcessingException: Language Exception:
> > org.apache.cocoon.components.language.LanguageException: 
> Error compiling
> > sitemap_xmap: Line 1210, column 84: invalid escape 
> character Line 1214,
> > column 40: invalid escape character Line 1261, column 84: 
> invalid escape
> > character Line 1265, column 40: invalid escape character 
> Line 0, column
> > 0: 4 errors
> >
> > Where could the problem come from ?
> > How can I interprete the line number: 1210 doesn't exist in my
> > sitemap...
> >
> > Why does my sitemap compile without error under Cocoon2.0.2 but not
> > under Cocoon2.0.3 ?
> >
> > Thanks for the response...
> >

2.0.2 -> 2.0.3 - generator

2002-08-29 Thread zze-STIENNE Nicolas FTRD/DMI/CAE


Hi !!

Thanks a lot for this explanation... it realy helped me.


Remember : 
 I worked with Tomcat 4.0.4, JDK 1.3.1_03 and Cocoon2.0.2 under W2000.
 I want to use the Cocoon2.0.3 version.
 I installed it as describe in the "Installing Apache Cocoon" page.


I have now another problem... and the message:

type fatal

message Generator already set. You can only select one 
Generator (file)

description org.apache.cocoon.ProcessingException: Generator already
set. You can only select one Generator (file)

sender org.apache.cocoon.servlet.CocoonServlet

source Cocoon servlet
 
stack-trace

org.apache.cocoon.ProcessingException: Generator already set. You can
only select one Generator (file)
at
org.apache.cocoon.components.pipeline.AbstractEventPipeline.se
tGenerator
(AbstractEventPipeline.java:135)
at
org.apache.cocoon.components.pipeline.CachingEventPipeline.set
Generator(
CachingEventPipeline.java:117)
at
org.apache.cocoon.www.file_.H_.transrapide.sitemap_xmap.matchN
10564(H:\j
akarta-tomcat-4.0.4\work\Standalone\localhost\cocoon\cocoon-fi
les\org/apache/cocoon/www/file_/H_/transrapide\sitemap_xmap.java:3798)
at
org.apache.cocoon.www.file_.H_.transrapide.sitemap_xmap.proces
s(H:\jakar
ta-tomcat-4.0.4\work\Standalone\localhost\cocoon\cocoon-files\
org/apache
/cocoon/www/file_/H_/transrapide\sitemap_xmap.java:1087)
at
org.apache.cocoon.www.file_.H_.transrapide.sitemap_xmap.proces
s(H:\jakar
ta-tomcat-4.0.4\work\Standalone\localhost\cocoon\cocoon-files\
org/apache
/cocoon/www/file_/H_/transrapide\sitemap_xmap.java:782)
at org.apache.cocoon.sitemap.Handler.process(Handler.java:224)
at org.apache.cocoon.sitemap.Manager.invoke(Manager.java:179)
[...]
request-uri
/cocoon/monsite/internet/espaceclient/espaceclient.info

path-info
monsite/internet/espaceclient/espaceclient.info

It appears as I use this part of my sitemap (with the request uri
"internet/espaceclient/test.bienvenue.acces" and no session
information): 

 



  
  
  


  


  
  
  
  
  
  
  
  


  
  
  
  
  
  
  
  
  
  
  
 
   
   





  

that use the redirect part and this other part of the sitemap: 
 
 
   
   
 
 
  

  
  


  


Obviously, this worked with 2.0.2...
 
 Thanks, 
 
 Nicolas !!
 
> > -Message d'origine-
> > De : Koen Pellegrims [mailto:[EMAIL PROTECTED]]
> > Envoye : mercredi 28 aout 2002 15:54
> > A : [EMAIL PROTECTED]
> > Objet : RE: 2.0.2 -> 2.0.3
> > 
> > 
> > I cannot tell you what has changed, but I can help you look 
> > for the error.
> > The exception is thrown during the compile phase for the 
> > sitemap. When the
> > sitemap (or any xsp/logicsheet) is recompiled, cocoon 
> generates a java
> > source file that gets compiled. The line number in the 
> > exception is in this
> > sitmap_xmap.java file.
> > 
> > This file is somewhere in your work directory, which is probably
> > /work or 
> /webapps/cocoon/WEB-INF/work. In this
> > directory, you'll find a hierarchy that corresponds with your 
> > webapps. Look
> > for sitemap_xmap.java there and inspect line 1210. That 
> > should at least give
> > you a clue as to what is wrong with your sitemap.
> > 
> > K.
> > 
> > > -Oorspronkelijk bericht-
> > > Van: zze-STIENNE Nicolas FTRD/DMI/CAE
> > > [mailto:[EMAIL PROTECTED]]
> > > Verzonden: woensdag 28 augustus 2002 15:31
> > > Aan: [EMAIL PROTECTED]
> > > Onderwerp: 2.0.2 -> 2.0.3
> > >
> > >
> > > Hi !!
> > >
> > > I worked with Tomcat 4.0.4, JDK 1.3.1_03 and Cocoon2.0.2 
> > under W2000.
> > >
> > > I want to use the Cocoon2.0.3 version.
> > >
> > > I installed it as describe in the "Installing Apache Cocoon" page.
> > >
> > > But when I test it I receive the following message :
> > >
> > > org.apache.cocoon.ProcessingException: Language Exception:
> > > org.apache.cocoon.components.language.LanguageException: 
> > Error compiling
> > > sitemap_xmap: Line 1210, column 84: invalid escape 
> > character Line 1214,
> > > column 40: invalid escape character Line 1261, column 84: 
> > invalid escape
> > > character Line 1265, column 40: invalid escape character 
> >

pb generator file

2002-08-30 Thread zze-STIENNE Nicolas FTRD/DMI/CAE


Hi !!


 I worked with Tomcat 4.0.4, JDK 1.3.1_03 and Cocoon2.0.2-src under
W2000.
 I want to use the Cocoon2.0.3 version.
 I installed it as describe in the "Installing Apache Cocoon" page.

I get a problem with a part of my site.
As it didn't work with 2.0.3-bin I tried with 2.0.3-src and 2.0.2-bin :
it works with none of this. I don't understand...

I have the message:

type fatal

message Generator already set. You can only select one 
Generator (file)

description org.apache.cocoon.ProcessingException: Generator already
set. You can only select one Generator (file)

sender org.apache.cocoon.servlet.CocoonServlet

source Cocoon servlet
 
stack-trace

org.apache.cocoon.ProcessingException: Generator already set. You can
only select one Generator (file)
at
org.apache.cocoon.components.pipeline.AbstractEventPipeline.se
tGenerator
(AbstractEventPipeline.java:135)
at
org.apache.cocoon.components.pipeline.CachingEventPipeline.set
Generator(
CachingEventPipeline.java:117)
at
org.apache.cocoon.www.file_.H_.transrapide.sitemap_xmap.matchN
10564(H:\j
akarta-tomcat-4.0.4\work\Standalone\localhost\cocoon\cocoon-fi
les\org/apache/cocoon/www/file_/H_/transrapide\sitemap_xmap.java:3798)
at
org.apache.cocoon.www.file_.H_.transrapide.sitemap_xmap.proces
s(H:\jakar
ta-tomcat-4.0.4\work\Standalone\localhost\cocoon\cocoon-files\
org/apache
/cocoon/www/file_/H_/transrapide\sitemap_xmap.java:1087)
at
org.apache.cocoon.www.file_.H_.transrapide.sitemap_xmap.proces
s(H:\jakar
ta-tomcat-4.0.4\work\Standalone\localhost\cocoon\cocoon-files\
org/apache
/cocoon/www/file_/H_/transrapide\sitemap_xmap.java:782)
at org.apache.cocoon.sitemap.Handler.process(Handler.java:224)
at org.apache.cocoon.sitemap.Manager.invoke(Manager.java:179)
[...]
request-uri
/cocoon/monsite/internet/espaceclient/espaceclient.info

path-info
monsite/internet/espaceclient/espaceclient.info

It appears as I use this part of my sitemap (with the request uri
"internet/espaceclient/test.bienvenue.acces" and no session
information): 

 



  
  
  


  


  
  
  
  
  
  
  
  


  
  
  
  
  
  
  
  
  
  
  
 
   
   





  

that use the redirect part and this other part of the sitemap: 
 
 
   
   
 
 
  

  
  


  


Obviously, this worked with 2.0.2...
 
 Thanks, 
 
 Nicolas !!
 
> > -Message d'origine-
> > De : Koen Pellegrims [mailto:[EMAIL PROTECTED]]
> > Envoye : mercredi 28 aout 2002 15:54
> > A : [EMAIL PROTECTED]
> > Objet : RE: 2.0.2 -> 2.0.3
> > 
> > 
> > I cannot tell you what has changed, but I can help you look 
> > for the error.
> > The exception is thrown during the compile phase for the 
> > sitemap. When the
> > sitemap (or any xsp/logicsheet) is recompiled, cocoon 
> generates a java
> > source file that gets compiled. The line number in the 
> > exception is in this
> > sitmap_xmap.java file.
> > 
> > This file is somewhere in your work directory, which is probably
> > /work or 
> /webapps/cocoon/WEB-INF/work. In this
> > directory, you'll find a hierarchy that corresponds with your 
> > webapps. Look
> > for sitemap_xmap.java there and inspect line 1210. That 
> > should at least give
> > you a clue as to what is wrong with your sitemap.
> > 
> > K.
> > 
> > > -Oorspronkelijk bericht-
> > > Van: zze-STIENNE Nicolas FTRD/DMI/CAE
> > > [mailto:[EMAIL PROTECTED]]
> > > Verzonden: woensdag 28 augustus 2002 15:31
> > > Aan: [EMAIL PROTECTED]
> > > Onderwerp: 2.0.2 -> 2.0.3
> > >
> > >
> > > Hi !!
> > >
> > > I worked with Tomcat 4.0.4, JDK 1.3.1_03 and Cocoon2.0.2 
> > under W2000.
> > >
> > > I want to use the Cocoon2.0.3 version.
> > >
> > > I installed it as describe in the "Installing Apache Cocoon" page.
> > >
> > > But when I test it I receive the following message :
> > >
> > > org.apache.cocoon.ProcessingException: Language Exception:
> > > org.apache.cocoon.components.language.LanguageException: 
> > Error compiling
> > > sitemap_xmap: Line 1210, column 84: invalid escape 
> > character Line 1214,
> > > column 40: invalid escape character Line 1261, column 84: 
> > invalid escape
> > > character Line 1265, column 40: invalid escape character

RE: 2.0.2 -> 2.0.3

2002-08-30 Thread zze-STIENNE Nicolas FTRD/DMI/CAE

thanks a lot, it seams to work well... (and with the others versions
too...)

> -Message d'origine-
> De : Vadim Gritsenko [mailto:[EMAIL PROTECTED]]
> Envoye : vendredi 30 aout 2002 15:45
> A : [EMAIL PROTECTED]
> Objet : Re: 2.0.2 -> 2.0.3
> 
> 
> zze-STIENNE Nicolas FTRD/DMI/CAE wrote:
> 
> >Hi !!
> >
> >Thanks a lot for this explanation... it realy helped me.
> >
> >
> >Remember : 
> > I worked with Tomcat 4.0.4, JDK 1.3.1_03 and Cocoon2.0.2 
> under W2000.
> > I want to use the Cocoon2.0.3 version.
> > I installed it as describe in the "Installing Apache Cocoon" page.
> >  
> >
> 
> ...
> 
> >  
> >
> >
> >  
> >   value="/cocoon/transrapide"/>
> >   
> > 
> >   
> >  
> >
> > 
> >  
> >
> 
> This does not look as valid pipeline. Resource you are 
> calling must be 
> complete pipeline, i.e. contain at least generator - serializer pair, 
> and when you call resource, you must not use any other 
> generator. And, 
> you should not have serializer here (it is ignored anyway).
> 
> See more on resources:
> http://outerthought.net/wiki/Wiki.jsp?page=Resources
> 
> See also samples sitemap.
> 
> 
> Vadim
> 
> 
> 
> >Obviously, this worked with 2.0.2...
> >
> >Thanks, 
> >
> >Nicolas !!
> >  
> >
> ...
> 
> 
> 
> -
> Please check that your question  has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faq/index.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/faq/index.html>

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