Re: how to access without cocoon

2002-09-30 Thread yuryx
Tuomo Lesonen wrote: On Sat, 28 Sep 2002, funing wrote: Hi! I can run my webapp by http://host:8080/cocoon/xxx correctly. How to access it without cocoon by http://host:8080/xxx ? I change the map:pattern but it doesn't work :( Or rename webapps/ROOT to webapps/tomcat, and rename

global form-encoding setting

2002-09-26 Thread yuryx
Hi folks! Is there a way to change default setting for form-encoding parameter? Now I have to use param1=xsp-request:parameter name=test form-encoding=KOI8-R/ for each parameter. Is there a way to set it somewhere in sitemap.xmap or in another place? -- Best regards, Yury. -- Yury

Re: clearing all caches

2002-08-19 Thread yuryx
Try using TreeProcessor instead synchron method . In the cocoon.xconf: sitemap class=org.apache.cocoon.components.treeprocessor.TreeProcessor logger=sitemap/ I'm using this configuration... And so ok for me :) Yury. Antonio Gallardo Rivera wrote: Hi Vaskin: To resolve your problem you

mount cocoon context on root URL-path

2002-08-15 Thread yuryx
Hi all! I'm using tomcat-mod_jk-apache integration and I have the following question: How can I mount a cocoon context on a root URL? In tomcat-mod_webapp-apache integration I used to set the following in httpd.conf : IfModule mod_webapp.c WebAppConnection Conn warp localhost:8008

Re: XSP beginner's question: Can't get examples to work

2002-08-12 Thread yuryx
Hahn Kurt (CHA) wrote: Hi, I have a fully functional Cocoon 2.02 installation, and I'm testing some features that I didn't use so far. Right now, I'm working my way through the XSP samples, but they don't work so far. For instance, this XSP (everything is directly copied from the samples) ?xml

Re: Encoding on ESQL query

2002-08-09 Thread yuryx
Hiloliddin Karimov wrote: Hi All, I try retrieve column that have cyrillic letters by ESQL: ?xml version=1.0 encoding=windows-1251? xsp:page ... ... esql:query SELECT username FROM users WHERE fname LIKE esql:parameter%xsp-request:get-parameter

support non-english characters in HTML serializer

2002-07-31 Thread yuryx
Hi all! Can anyone help me with following problem: I place russian text into attributes in my tags (for example: a href=ÔÅÓÔ/). And I see unicode encoding text in the attribute in output HTML :( Any way for solve this problem? Thanx. Yury.

use taglib (logicsheets) in XSL

2002-07-29 Thread yuryx
Hi all! Can I do use taglibs in my XSL? For example: ?xml version=1.0 encoding=KOI8-R? xsl:stylesheet version=1.0 xmlns:xsp-request=http://apache.org/xsp/request/2.0; xmlns:xsl=http://www.w3.org/1999/XSL/Transform; xsl:template match=/

Re: use taglib (logicsheets) in XSL

2002-07-29 Thread yuryx
yuryx wrote: Hi all! Can I do use taglibs in my XSL? For example: ?xml version=1.0 encoding=KOI8-R? xsl:stylesheet version=1.0 xmlns:xsp-request=http://apache.org/xsp/request/2.0; xmlns:xsl=http://www.w3.org/1999/XSL/Transform; xsl:template match

Re: use taglib (logicsheets) in XSL

2002-07-29 Thread yuryx
Vadim Gritsenko wrote: From: yuryx [mailto:[EMAIL PROTECTED]] yuryx wrote: Hi all! Can I do use taglibs in my XSL? You can use logicsheets in XSP pages only. XSP page will then generate XML (invoking any logicsheets you are using). This resulting XML can be anything, including

Re: Esql and rollback

2002-07-24 Thread yuryx
Leszek Gawron wrote: I'm quite new to JDBC and ESQL. My question is: I have more that one database inserts. Every one in different esql:execute tag. How can I rollback the transaction if say the 3rd goes wrong? There is no such esql tag and I do not know how to obtain the appropriate jdbc

cleaning xmlns attribute with XSL transformation

2002-07-16 Thread yuryx
How can I set up the xsp processor that way that it will not unclude 'xmlns' attributes to HTML output? For example. I'm generate XML from my XSP.In XSP page i define the following namespace: [xmlns:xsp=http://apache.org/xsp;]. my XSP: content test type=testtest/test /content 1)When I tried

Re: cleaning xmlns attribute with XSL transformation

2002-07-16 Thread yuryx
It work! Thanx Vadim. Yury. Vadim Gritsenko wrote: From: yuryx [mailto:[EMAIL PROTECTED]] How can I set up the xsp processor that way that it will not unclude 'xmlns' attributes to HTML output? This might be of help: http://marc.theaimsgroup.com/?l=xml-cocoon-usersm=102553660504679w=2

Insert full date and time into Oracle databse using esql:parameter

2002-07-15 Thread yuryx
Hi all! Is there any way to insert full datetime value into oracle database using the following syntax: xsp:logic java.util.Date today=new java.util.Date(); /xsp:logic ... esql:queryinsert into query_stack (t_stamp,username,q_body,q_type) values ( esql:parameter

Re: Insert full date and time into Oracle databse using esql:parameter

2002-07-15 Thread yuryx
, esql:parameterxsp:exprInteger.parseInt(sql_type)/xsp:expr/esql:parame ter ) /esql:query yours Christoph Gaffga [EMAIL PROTECTED] From: yuryx [EMAIL PROTECTED] Is there any way to insert full datetime value into oracle database using the following syntax: xsp:logic java.util.Date today

mod_webapp or mod_jk?

2002-07-09 Thread yuryx
Hi all! Which one would you recommend for a mid-size website with cocoon? Which one is more stable? Can I mount cocoon's context to website's '/' from within apache (using mod_jk)? Thanx for any reply. Yury. - Please check

Re: mod_webapp or mod_jk?

2002-07-09 Thread yuryx
the latter :) Best regards, - Luca Morandini GIS Consultant [EMAIL PROTECTED] http://utenti.tripod.it/lmorandini/index.html - -Original Message- From: yuryx

Re: Hello...

2002-07-07 Thread yuryx
ÃÖÁßÈ£ wrote: I have a question when develop web-app using Cocoon. I think that It is heavy task using Cocoon When developing web-page. Because I think that it take much time to make .xsp file and view page by browser.. shutdown webserver and restart .. so , so. What do you think about

Re: Redirect Apache Requests to Tomcat

2002-07-04 Thread yuryx
Thomas Garger wrote: Hi! I have Cocoon 2.0.2 running under Tomcat on port 8080. My Homepage is called with the following URL (http://MyServer-IP:8080/cocoon/myhomepage). I also have a domain-name (http://www.MyDomainName.at )where i put the DNS to the IP of my Server. But every time someone

Re: Redirect Apache Requests to Tomcat

2002-07-04 Thread yuryx
Thomas Garger wrote: Hi! I have Cocoon 2.0.2 running under Tomcat on port 8080. My Homepage is called with the following URL (http://MyServer-IP:8080/cocoon/myhomepage). I also have a domain-name (http://www.MyDomainName.at )where i put the DNS to the IP of my Server. But every time someone

Re: sent map parameters into another sitemap

2002-06-27 Thread yuryx
HI Konstantin! Thanx for a lot, but I'm get the following error: /Element 'global-parameters' is not allowed at file:/usr/local/jakarta/catalina-4.0.4/webapps/cocoon/mobicomk/protect/sitemap.xmap:34:27/ I'm try this: map:global-parameters map:parameter name=urls value=default is

Re: sent map parameters into another sitemap

2002-06-27 Thread yuryx
Oops! ...but only in 2.1-dev version... Sorry... Yury. yuryx wrote: HI Konstantin! Thanx for a lot, but I'm get the following error: /Element 'global-parameters' is not allowed at file:/usr/local/jakarta/catalina-4.0.4/webapps/cocoon/mobicomk/protect/sitemap.xmap:34:27/ I'm try

startup the cocoon-2.1-dev error

2002-06-27 Thread yuryx
Hi all! I'm just downloads from CVS the latest version of cocoon. after the make (with jdk1.3.1_v2) installing cocoon.war on tomcat-4.0.4 I'm try : http://localhost:8088/cocoon/ and get the following error: _The server encountered an internal error (Internal Server Error) that prevented it

Re: startup the cocoon-2.1-dev error -solved

2002-06-27 Thread yuryx
Sorry by spam... Regards. 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

Re: JspGenerator Problem

2002-06-24 Thread yuryx
Cenk Uysal wrote: I tried it but I still get the same error. What about JSP file? is it valid JSP that returns XML? I'm not sure. Interesting point is Cocoon's own JSP Generator examples run correctly. Here is my JSP: try %@ page language=java % instead of %@ page contentType=text/xml %

Re: JspGenerator Problem

2002-06-23 Thread yuryx
Cenk Uysal wrote: I try to use JspGenerator with following sitemap entry: map:pipeline map:match pattern=cenk/*.* map:generate src=jspxml.jsp type=jsp/ map:transform src=jspxml.xsl/ map:serialize type=html/ /map:match /map:pipeline try define in sitemap

Re: java.lang.OutOfMemoryError ------help pls

2002-06-11 Thread yuryx
Hi Niket. I have the same symptoms while access to subsitemaps :( (cocoon2.0.2 on tomcat4.0.4-b1) Yury. Niket Anand wrote: Hi Vadim, I have tried it on Tomcat 4.0.4b3. Even though it is showing same problem. How can I deal with this error as it is demotivating factor in accepting cocoon higher

Re: java.lang.OutOfMemoryError ------help pls

2002-06-11 Thread yuryx
=percent_to_free value=10/ /store-janitor Yury. Roger I Martin PhD wrote: How much memory do you have? Can you set the memory usage up on the tomcat command line? -ms128M -mx256M or higher. -Roger - Original Message - From: yuryx [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 11, 2002

Re: First access into subsitemap problem

2002-06-11 Thread yuryx
reloading method is broken and removed from next (2.0.3) version of Cocoon. Vadim From: yuryx [mailto:[EMAIL PROTECTED]] Hi all! Can anyone help me with following problem: I just installed cocoon2.0.2 on Tomcat 4.0.4-b1 (JDK1.3.1_02 Mandrake linux) I created subsitemap tree schema for my web

Re: First access into subsitemap problem

2002-06-11 Thread yuryx
this manipulation solve my problem? Yury. Vadim Gritsenko wrote: From: yuryx [mailto:[EMAIL PROTECTED]] Thanx for your reply, Vadim. But maybe first try set reload-method to synchron in cocoon.xconf (in the sitemap area)? Yes, change there too. But setting in cocoon.xconf affects only root

Re: First access into subsitemap problem

2002-06-11 Thread yuryx
Piroumian Konstantin wrote: From: yuryx [mailto:[EMAIL PROTECTED]] Thanx, Vadim. And next question :) What is the line in cocoon.xconf: !--sitemap class=org.apache.cocoon.components.treeprocessor.TreeProcessor logger=sitemap/-- maybe uncomment this? (also comment sitemap check-reload=yes

Re: First access into subsitemap problem -Thanx

2002-06-11 Thread yuryx
Thanx to Vadim Konstantin! I hope, your advanced hints help me for solve my problem :) Thanx. Yury. - Please check that your question has not already been answered in the FAQ before posting.

Re: Which version of Oracle is required to connect to cocoon?

2002-06-05 Thread yuryx
Hi Sreenivasan! Sreenivasan N. wrote: Hi all Can anyone give info on Oracle database version for windows and Unix required for cocoon connectivity. Try Oracle jdbc drivers (for any versions). Download classes12.jar and put it into $CATALINA_HOME/common/lib And also the basic parameters

wbmp support in cocoon

2002-06-04 Thread yuryx
Hi all! Does cocoon support mime-type=image/wbmp in sitemap (as is gif,jpg,png)? Thanx. Yury. - Please check that your question has not already been answered in the FAQ before posting. http://xml.apache.org/cocoon/faqs.html

Re: wbmp support in cocoon

2002-06-04 Thread yuryx
Stephan Michels wrote: On Tue, 4 Jun 2002, yuryx wrote: Hi all! Does cocoon support mime-type=image/wbmp in sitemap (as is gif,jpg,png)? Thanx. Yury. Only the browser evaluates the mime-type, for the cocoon it is just a string

Re: Barf on JSPGenerator on Hello.jsp (HELP!)

2002-06-04 Thread yuryx
Rob Kelley wrote: Hi: I'm running cocoon 2.0.2 on Tomcat 4.0.1 (Windows). I've been trying to run the hello example for the jsp: http://127.0.0.1:8080/cocoon/jsp/hello I get the same error (stack trace at end of email): /SAXException JspGenerator.generate()/ My sitemap entry is:

SunRise authefication

2002-05-31 Thread yuryx
Hi all! Next question: where I can download SunRise Auth components? any URL's? 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

Re: SunRise authefication

2002-05-31 Thread yuryx
= Guido Casper, SN AG, Klingenderstrasse 5, D-33100 Paderborn Tel:+49-5251-1581-87 [EMAIL PROTECTED] - http://www.s-und-n.de = yuryx schrieb: Hi all! Next question: where I can download SunRise Auth components? any URL's? Thanx

Re: SunRise authefication

2002-05-31 Thread yuryx
Chitharanjan Das wrote: The source is in the main distribution. Its no longer called as sunrise... org.apache.cocoon.webapps.authentication.* Hi Chitharanjan. Sorry, but I not found this path in my distribution C2.0.2 :( What is wersion (creation date) your destributive Cocoon? I have

Session in XSP

2002-05-06 Thread yuryx
Hello all! May be anyone to answer me for the next question: Why org.apache.cocoon.environment.Session not available in XSP? Why cocoon-dev shouldn't built-in it into XSP as org.apache.cocoon.environment.Request parameter (for example)? Thanx. Yury.

Re: Session in XSP

2002-05-06 Thread yuryx
yuryx wrote: Hello all! May be anyone to answer me for the next question: Why org.apache.cocoon.environment.Session not available in XSP? Why cocoon-dev shouldn't built-in it into XSP as org.apache.cocoon.environment.Request parameter (for example)? Thanx. Yury

problem with get non-english characters from CLOB (esql:get-asciiusage)

2002-04-26 Thread yuryx
Hello all! I have following problem: In Oracle database I store some CLOB object. This clob contain XML with KOI8-R coding. After set in clob next data:h4ÜÔÏ ÔÅÓÔ/h4 I use esql:get-ascii method for get my data. And I have wrong results :( like: h4-B B5AB/h4 What I'm wrong? Can anyone help me??

Re: problem with subsitemap

2002-04-26 Thread yuryx
Frank Taffelt wrote: Hi, i'm trying to serve my application-content from subsitemaps. Here is a example from my sitemap. the Base-Sitemap: base-sitemap !-- mounted subapplication -- map:match pattern=sub/** map:mount check-reload=yes src=sub/sitemap.xmap uri-prefix=sub/ /map:match

Re: problem with subsitemap

2002-04-26 Thread yuryx
Frank Taffelt wrote: Try map:mount check-reload=yes src=sub/ uri-prefix=sub/ no this works when requesting url directly /sub/ OR /sub/entry. the subsitemap is found and compiled. try this: map:match pattern=test map:redirect-to uri=sub/entry/ /map:match Yury.

Re: clob-esql-xml

2002-04-25 Thread yuryx
Steven Sedlmeyer wrote: try esql:get-ascii column=myclob/ Steve Thx, but I need XML,not ascii... Yury -Original Message- From: yuryx [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 1:46 AM To: [EMAIL PROTECTED] Subject: clob-esql-xml Hi all! How to extract clob column

Re: clob-esql-xml

2002-04-25 Thread yuryx
yuryx wrote: Steven Sedlmeyer wrote: try esql:get-ascii column=myclob/ Steve Thx, but I need XML,not ascii... Yury esql:get-xml / don't work with CLOB if use VARCHAR then it work very good... May be esql:get-xml / don't support CLOB? Yury. -Original Message- From: yuryx

clob-esql-xml

2002-04-24 Thread yuryx
Hi all! How to extract clob column as xml into dynamic page? For example: my CLOB: h1hello!/h1 in sample.xsp I define: ... esql:execute-query esql:queryselect myclob from mytable/esql:query esql:results esql:row-results esql:get-xml column=myclob/ /esql:row-results /esql:results

Re: esql and xsp:logic

2002-04-03 Thread yuryx
Montier Patrick wrote: hi, Your Mysql connexion (here Mybase) must be declared in the cocoon.xconf and web.xml. Here is an simple example : xsp:logic int idemp=0; /xsp:logic esql:connection esql:poolMybase/esql:pool bestof esql:execute-query esql:query SELECT * from

Re: Redirect on sitemap with parameters

2002-03-29 Thread yuryx
Vadim Gritsenko wrote: From: yuryx [mailto:[EMAIL PROTECTED]] Hello All! Can I have redirect in sitemap like: map:match= map:redirect-to uri=sample map:parameter name=style value=sample/ No, this does not work. Yes, I'm know of this. This example was for example. But I'm need

Re: Redirect on sitemap with parameters

2002-03-29 Thread yuryx
Axel Honfi wrote: I don't know if this works, give it a try! But what this works with me: map:match pattern= map:redirect-to uri=sample/myvalue /map:match map.match pattern=sample/* map:generate src=docs/sample.xml/ map:transform src=stylesheets/{1}.xsl/ map:serialize/ /map:match

Re: Encoding non-english characters in XSP (C2.0.2)

2002-03-28 Thread yuryx
Vadim Gritsenko wrote: Ok, I see, you have got national characters in the Java file (I do not have them, may be because of different locale). Next step for you would be: 1. Switch back to Javac (pizza does not support Java file encoding option) 2. Make sure Javac gets -encoding KOI8-R command

Problem with JSP in mounted sitemap

2002-03-28 Thread yuryx
Hi all! Now I have the following problem :) When I declare jsp generator in matcher within mounted sitemap I have error about: type Status report message /usr/local/jakarta/catalina-4.0.4/webapps/cocoon/mobicom-info/omc/sample.jsp description The requested resource

Re: [SOLVED] RE: Problem with JSP in mounted sitemap

2002-03-28 Thread yuryx
Piroumian, Konstantin wrote: Good evening! It seems that I've solved the problem with JSPs. Patch will be available in CVS tomorrow. Regards, Konstantin Piroumian [EMAIL PROTECTED] Thanx by good news, but where I had download this patch? Please, I need this :) Thanx. Yury.

Encoding non-english characters in XSP (C2.0.2)

2002-03-27 Thread yuryx
Hello all I have the following problem: After updating cocoon from version 2.0.1 to 2.0.2 non-english characters are not normally decoded on page , generated by XSP . In XSP page I use following encode declaration: ?xml version=1.0 encoding=KOI8-R? If I use static XML file and XSL

Encoding non-english characters in XSP (C2.0.2)

2002-03-27 Thread yuryx
Hello all I have the following problem: After updating cocoon from version 2.0.1 to 2.0.2 non-english characters are not normally decoded on page , generated by XSP . In XSP page I use following encode declaration: If I use static XML file and XSL transformation, output page is fine. Where

Re: Encoding non-english characters in XSP (C2.0.2)

2002-03-27 Thread yuryx
I fail to see difference. In both cases, in Cocoon 2.0.1 and in Cocoon2.0.2, XSP page with KOI8-R encoding, produces following Java code:this.characters("\n??\n "); yes, in sample_xsp.java: this.characters("\n "); this.contentHandler.startElement( "", "h4", "h4",

Re: I want to know how to make cocoon save the generated html file?

2002-03-20 Thread yuryx
Íõºì±¦ wrote: Dear All: I want to know how to make cocoon save the generated html file? Anyone knows? Thank you! Bob Wang - Please check that your question has not already been

Re: How to put user data into SunspotDemoPortal-session at logontime

2002-03-19 Thread yuryx
Sorry by question, but what is sunRise-auth action ? Where this action deploy? Yury. Carsten Ziegeler wrote: Hi Peter, all your pipelines are wrapped (secured) by the sunRise-auth action with the handler and the application parameter, for example the sunLets: map:match

Re: SESSION PROBLEMS

2002-03-18 Thread yuryx
Stefano Bonnin wrote: Hi, I'm trying to convert an old C1 application in C2, but I found a lot of problems. All session (request/response) management has changed. For example: with C1 I wrote: xsp:logic if ((session.isNew()) and (myVariable == myValue)) { . .

Re: Apache and mod_jk (could not get mod_webapp working)

2002-03-13 Thread yuryx
For configure mod_webapp read : http://www.galatea.com/flashguides/apache-tomcat-4-unix.xml Regards. Yury. Frank Ridderbusch wrote: Hi folks, I like to share a couple of experiences, which I learned the hard way and I learned them, while trying to get Cocoon working through Apache. They might

Re: Apache and mod_jk (could not get mod_webapp working)

2002-03-13 Thread yuryx
Or try read (about mod_jk) : http://www.ubeans.com/tomcat/index.html Regards. Yury. Frank Ridderbusch wrote: Hi folks, I like to share a couple of experiences, which I learned the hard way and I learned them, while trying to get Cocoon working through Apache. They might have been obvious to

Re: Problem with encoding non-english request parameters

2002-03-12 Thread yuryx
Piroumian, Konstantin wrote: Piroumian, Konstantin wrote: On Mon, 11 Mar 2002 18:32:26 +0300 yuryx [EMAIL PROTECTED] wrote: Vadim Gritsenko wrote: RTFM http://xml.apache.org/cocoon/userdocs/xsp/request.html: 8 8

Re: Problem with encoding non-english request parameters-thanx

2002-03-12 Thread yuryx
I don't quite understand what do you mean. Yes, you can change your request character set: quot src=servlet 2.3 Specification setCharacterEncoding(String) public void setCharacterEncoding(java.lang.String env) throws UnsupportedEncodingException Overrides the name of the

Re: Problem with encoding non-english request parameters

2002-03-11 Thread yuryx
Thanx for all! For solved this problem just use: String par=new String(request.getParameter(text1).getBytes(ISO-8859-1),KOI8-R); Regards. Yury. yuryx wrote: Hi all! I had the following problem: In my cocoon's page I had invalid encoding my non-english characters from request

Re: Problem with encoding non-english request parameters

2002-03-11 Thread yuryx
Vadim Gritsenko wrote: RTFM http://xml.apache.org/cocoon/userdocs/xsp/request.html: 8 xsp-request:get-parameter Gets the value of the named request parameter. This is a value from the request string (e.g., ?fruit=apple) or from POSTed form data. If the

Re: Problem with encoding non-english request parameters

2002-03-11 Thread yuryx
Piroumian, Konstantin wrote: On Mon, 11 Mar 2002 18:32:26 +0300 yuryx [EMAIL PROTECTED] wrote: Vadim Gritsenko wrote: RTFM http://xml.apache.org/cocoon/userdocs/xsp/request.html: 8 8 Vadim Thanx for you help

Problem with encoding non-english request parameters

2002-03-10 Thread yuryx
Hi all! I had the following problem: In my cocoon's page I had invalid encoding my non-english characters from request. with example: simple.xsp ?xml version=1.0 encoding=KOI8-R? xsp:page language=java xmlns:xsp=http://apache.org/xsp; page titlesimple/title content

Re: howto get rid of long url without Apache web server?

2002-03-07 Thread yuryx
marco wrote: I have installed Tomcat 4.0.1, cocoon 2.0.0, jdk1.3.1_01 (no Apache web server) in Windows 98. How can I access my web site by url http://www.mysite.com/index.html; instead of http://www.mysite.com:8080/cocoon/myproject/index.html; ?

Re: Problem with XSP and assigning xsp-request:get-uri/

2002-03-07 Thread yuryx
Andrew Savory wrote: Hi, Can someone spot my deliberate mistake here? It's driving me up the wall trying to find out why Cocoon doesn't like the following: xsp:page language=java xmlns:xsp=http://apache.org/xsp; xmlns:xsp-request=http://apache.org/xsp/request/2.0; xsp:logic String

Re: PERSONAL JAVA CLASSES

2002-03-07 Thread yuryx
Istvan Beszteri wrote: .../cocoon/WEB-INF/classes/ works for me, but you can check the WEB-INF/web.xml, how to define extra calsspaths. Br, Istvan On Thursday 07 March 2002 13:41, you wrote: Hi, Where must I put my personal Java classes in Cocoon 2? (which directory?) Thanks ---

Re: my svg does not work in cocoon 2.0.1

2002-03-06 Thread yuryx
marco wrote: I have added namespace to the svg tag like thissvg:svg width=200 height=15 xmlns:svg=http://www.w3.org/2000/svg;, but it dose not help even if I restarted the tomcat. Please help :( Try cocoon/welcome-svg example. Is it work then see error in you code... Check with

Re: my svg does not work in cocoon 2.0.1

2002-03-06 Thread yuryx
This is the valid style (work in my machine): page2svg.xsl ?xml version=1.0? xsl:stylesheet version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform; xmlns:xlink=http://www.w3.org/1999/xlink; xsl:template match=page html head titlexsl:value-of

Re: Saving/Retrieving Session or Request parameters in sitemap

2002-03-06 Thread yuryx
Robin Wyles wrote: Hi All... I am new to Cocoon 2 and am currently prototyping a login/authentication routine. I am using SessionIsValidAction to check if the user is logged in, and if this fails they are redirected to the login page, the DatabaseAuthenticatorAction is then used to check the

Re: Help Please

2002-03-06 Thread yuryx
Mariano wrote: hi. i finally got the cocoon.war . I have replaced all the files tutorials says but when i try http://myhost/cocoon i got 404.. whta it could be? i have apahe and tomcat running thsnk in advance mariano _ Do You Yahoo!? Get

Re: my svg does not work in cocoon 2.0.1

2002-03-05 Thread yuryx
Andrew Savory wrote: On Tue, 5 Mar 2002, marco wrote: I was using cocoon 2.0.0, tomcat 4.0.1, jdk1.3.1_01 in Windows 98, the svg2png serializer works fine, but the svg graphics becomes blank after I upgraded the cocoon to 2.0.1. Hi marco, I had a similar problem. Check your namespaces are

Re: use DefaultConfiguration class (avalon API)

2002-03-04 Thread yuryx
Thanx Vadim! It work! :) Regards. 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

use DefaultConfiguration class (avalon API)

2002-03-03 Thread yuryx
Hi ! Can anyone help me with following: With my 'cocoon's action' I have to use DefaultConfiguration class. I need modify my config file from this class (with use methods setAttribute and setValue) -it possible? But I dont know how to create it (I need examples :( ) with link to my config

Re: use DefaultConfiguration class (avalon API)

2002-03-03 Thread yuryx
Creating configuration object is quite simple. Snippet from JavascriptProgram.java: -- config = new DefaultConfiguration(, GeneratorSelector); child = new DefaultConfiguration(file, ); child.setValue(file.toString());

Re: Problem configure Cocoon2 Oracle8

2002-03-01 Thread yuryx
Hi You found classes12.jar in $CATALINA_HOME/common/lib? Maybe you have not oracle driver. Regards Yury Giuseppe De Vincenzi wrote: Hello, Why, when i use this configuration, i connect Oracle web.xml (cocoon) init-param param-nameload-class/param-name param-value

Re: Problem1 configure Cocoon2 Oracle8

2002-03-01 Thread yuryx
Giuseppe De Vincenzi wrote: Hello, 1) First Tomcat4(JSP-Cocoon2) end Oracle on machine1 OK 2)Now, i use this parameters(servername, port ,instance) with JSP ... [Tomcat 4(JSP) machine1 ]-- [Oracle 2000server]OK [Tomcat4 (Cocoon2) machine1 ] !NO! [Oracle 2000server] Could not get the

Re: cocoons ServletContext

2002-03-01 Thread yuryx
- From: yuryx [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 10:32 AM To: [EMAIL PROTECTED] Subject: cocoons ServletContext Hi all! Can anyone help me with the following problem: How can I get into my cocoon's 'action' a pointer to cocoon ServletContext? Is it possible? What shall I

Re: cocoons ServletContext

2002-03-01 Thread yuryx
ServletContext servContext = (ServletContext) objectModel.get(HttpEnvironment.HTTP_SERVLET_CONTEXT); HttpEnviroment... Thats Ok with me :) Cocoon's wrapper of environment contains HttpEnvironment if you are running in a servlet environment. If you run your code in a command line then you

Re: C2 + SOAP ?

2002-02-28 Thread yuryx
Jerzy Kut wrote: Can C2 cooperates with SOAP? How? Is it only pure Java cooperation (own actions or logicsheets) or is there possible any expolit it from XSP or XML? Sorry if my question is a little precisious. Best regards Jerzy Kut

Re: Help connect Cocoon2 to Oracle8

2002-02-27 Thread yuryx
Giuseppe De Vincenzi wrote: I am not able to connect to Oracle8i database.Exception states that could not connect to datasource you cannot get a poolable before the pool is initialized. type internal-server-error message Error in sitemap configuration : Could not set up Component for

Re: [HELP]Could not read resource file:/home/jakarta-tomcat-3.3/webapps/cocoon/docs/samples/xsp/test.svg

2002-02-23 Thread yuryx
Eduard Drenth wrote: Dear developers, Can anyone help me with the following: I created an svg document which I can display in batik: svg xmlns=http://www.w3.org/2000/svg; xmlns:xlink=http://www.w3.org/1999/xlink; width=400 height=300 viewBox=0 0 400 300 titleTestje van

Re: JSP + matcher error

2002-02-19 Thread yuryx
Noah Mittman wrote: I've already looked for those and there are none. there's only two levels of sitemaps -- the root and this one -- and this is the only matcher involving JSPs in either of them. On Tuesday, February 19, 2002, at 03:54 PM, David Stenglein wrote: Take a look at the

Re: jsp:forward in jsp causeing error

2002-02-14 Thread yuryx
Piroumian, Konstantin wrote: From: Gasper [mailto:[EMAIL PROTECTED]] Hello I'm building a site using cocoon 2.0 and jsp's for dynamic content In my jsp I'm trying to forward to a page using a simple jsp:forward tag but this causes an error below. I'm using tomcat 3.2.3 Does anybody know a

Bug In Cocoon2.0.1 ?

2002-02-10 Thread yuryx
Hi all! I have use database within polled connections. In my JSP page I try: ?xml version='1.0' encoding=KOI8-R? %@ page language=java import=java.text.SimpleDateFormat,java.util.*,

ComponentManager from Cocoon's framework

2002-02-10 Thread yuryx
Thanx for you help, Vadim! I undestand how I can working from the pooling connections now. With cocoon's action it's really easy. But I have one more question... Can I get ComponentManager pointer from Cocoon's framework within my JSP page? Like: % ComponentManager

JSPGenerator encoding problem

2002-02-08 Thread yuryx
Hi all! My JSPGenerator or jasper-compiler don't supported KOI8-R charset encoding. What is me do? Instructions llike ?xml version=1.0 encoding=KOI8-R? in header jsp page or map:generator name=jsp src=org.apache.cocoon.generation.JspGenerator logger=sitemap.generator.jsp label=content,data

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 map:serialize type=html

JSPGenerator encoding problem

2002-02-07 Thread yuryx
Hello all! I have following problem. JSPGenerator doesn't normally encoding non english characters. Simple sample: sample.jsp: %out.println(?xml version='1.0' encoding='koi8-r'?);% %@ page language=java import=java.text.SimpleDateFormat,java.util.*,java.sql.*% page content

Re: JSPGenerator encoding problem

2002-02-07 Thread yuryx
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

Re: JSPGenerator encoding problem

2002-02-07 Thread yuryx
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

Re: JSPGenerator encoding problem

2002-02-07 Thread yuryx
=org.apache.cocoon.serialization.HTMLSerializer encodingkoi8-r/encoding That is, put the koi8-r encoding here /map:serializer ...Peter yuryx writes: Without transformation I have page content

Re: JSPGenerator encoding problem

2002-02-07 Thread yuryx
); % /content /page - 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(?xml version='1.0

Re: Getting dbxml to work with Cocoon and tomcat 4

2002-02-06 Thread yuryx
Michael Homeijer wrote: Hi, Can anybody give me some hints on how to get dbxml to work with cocoon and tomcat 4. I tried placing jars in just about any location that could make sense, but I can't get it working completely. (OpenOrb is the initial problem, it cannot find its properties in the

use xscript in xsp

2002-02-05 Thread yuryx
For generation xml with xsp I have use any stylesheets for any tags. I define: simple.xsp: ?xml version=1.0 encoding=ISO-8859-1? xsp:page language=java xmlns:xsp=http://apache.org/xsp; xmlns:xscript=http://apache.org/xsp/xscript/1.0; page titleInline XScript variable(include

XScript in cocoon

2002-02-04 Thread yuryx
Can anyone hint me howto link about implement and usage XScript in cocoon? 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

Re: Cocoon action

2002-02-03 Thread yuryx
So easy? :) Thanx Sidharth! Yury Sidharth wrote: just write String myParameter=request.getParameter(name) siteparams.put(hello,myparameter) then on sitemap match pattern=test act redirect to uri={hello}/ /act /match - Original Message - From: yuryx [EMAIL

  1   2   >