Re: XML -> XSP -> XSL1 -> XSL2 .... how to ??

2001-05-31 Thread Frans Thamura

Ya, you have o convert it to Java source code first.

Frans
- Original Message - 
From: "Samuel ARNOD-PRIN" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, April 30, 2001 3:25 PM
Subject: XML -> XSP -> XSL1 -> XSL2  how to ??


> Hello,
> 
> I would like to do the following :
> 
> file.xml is a xsp page and has got :
> 
> 
> then I want to transform file.xml with file1.xsl
> 
> so I add to file.xml
> 
> 
> 
> now I would like to transform the result with file2.xsl
> 
> I've tried to add a  into file1.xsl but
> cocoon does not want it
> 
> 
> where do I have to put it then ? it possible I am sure...
> 
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: Communicating between servers

2001-05-31 Thread Frans Thamura

This is called web services??

Is there some one have an example of this using cocoon???

Frans

- Original Message -
From: "Uli Mayring" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 01, 2001 5:25 PM
Subject: Re: Communicating between servers


> On Tue, 1 May 2001, Nikolai Petroff wrote:
>
> > My aim is to have server B, C, and D pull xml data from server A and
have it
> > presented in B.xsl, C.xsl, and D.xsl respectively. Can Cocoon do this as
it
> > is? What's the best way to achieve this?
>
> What do you mean by "presenting xml data in *.xsl"? I usually present my
> xml data in the browser :-)
>
> Ulrich
>
> --
> Ulrich Mayring
> DENIC eG, Softwareentwicklung
>
>
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: init() and destroy() in XSP

2001-05-31 Thread Frans Thamura

Ya, one of cocoon problem is no init and destroy

- Original Message -
From: "Polley Christopher W" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 04, 2001 9:16 PM
Subject: init() and destroy() in XSP


> Hello, all:
>
> I have an XSP page in which  I would like to do some setup (open JDBC
> connection, create prepared statements) upon instantiation and cleanup
> (close ps's and connection) upon destruction.
>
> In its previous life as a jsp page, it used jspInit() and jspDestroy(),
and
> in a servlet it could use init() and destroy().
>
> I found XSPPage.init(parameters), which I can override to do the
> initialization, but I am unclear on the tail end of the xsp life cycle.
How
> & when is it destroyed (in Cocoon 1.8.1) ?  How is this type of thing done
> in XSP?
>
> I suppose that in this case, in which I am only doing JDBC stuff, I could
> try the sql taglib, but am unclear on how that would be done.  Can
>  safely be placed ahead of  type="xsp"?>? What would the resultant xsp-servlet look like?
>
>
> Thanks,
> Chris
>
>
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: fileupload

2001-05-31 Thread Frans Thamura

Yah, I used a file upload class from jspsmart.com

Frans

- Original Message - 
From: "vegard nygaard" <[EMAIL PROTECTED]>
To: "Cocoon (E-mail)" <[EMAIL PROTECTED]>
Sent: Monday, May 07, 2001 11:52 PM
Subject: fileupload


> I try to uploads file to my cocoon on tomcat 3.2.
> But it crashes when binaryfiles are sent.
> Anyone familiar with fileupload using tomcat 3.2?
> 
> vegard
> 
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: init() and destroy() in XSP

2001-05-31 Thread Frans Thamura

Matt,
I don't understand, I need your help.

I create a lot of xsp:page, but never find init()
Would you give the simple work sample?

Frans
- Original Message -
From: "Matthew Cordes" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 01, 2001 3:01 PM
Subject: Re: init() and destroy() in XSP


> There are work-arounds though:
>
> INIT:
> Make a global variable, set it to null, inside your  block check
> to see if it is null and do init stuff, then set it to something else.
>
> DESTROY:
> wouldn't  overloading void finalize() { ... } work here?
>
> -matt
>
>
>
> - Original Message -
> From: "Frans Thamura" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, May 31, 2001 11:38 PM
> Subject: Re: init() and destroy() in XSP
>
>
> > Ya, one of cocoon problem is no init and destroy
> >
> > - Original Message -
> > From: "Polley Christopher W" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Friday, May 04, 2001 9:16 PM
> > Subject: init() and destroy() in XSP
> >
> >
> > > Hello, all:
> > >
> > > I have an XSP page in which  I would like to do some setup (open JDBC
> > > connection, create prepared statements) upon instantiation and cleanup
> > > (close ps's and connection) upon destruction.
> > >
> > > In its previous life as a jsp page, it used jspInit() and
jspDestroy(),
> > and
> > > in a servlet it could use init() and destroy().
> > >
> > > I found XSPPage.init(parameters), which I can override to do the
> > > initialization, but I am unclear on the tail end of the xsp life
cycle.
> > How
> > > & when is it destroyed (in Cocoon 1.8.1) ?  How is this type of thing
> done
> > > in XSP?
> > >
> > > I suppose that in this case, in which I am only doing JDBC stuff, I
> could
> > > try the sql taglib, but am unclear on how that would be done.  Can
> > >  safely be placed ahead of
 > > type="xsp"?>? What would the resultant xsp-servlet look like?
> > >
> > >
> > > Thanks,
> > > Chris
> > >
> > >
> > > -
> > > 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]>
> >
> >
> > _
> > Do You Yahoo!?
> > Get your free @yahoo.com address at http://mail.yahoo.com
> >
> >
> > -
> > 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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




cocoon-users@xml.apache.org

2001-06-05 Thread Frans Thamura

Try used XSL syntax, nbsp is HTML syntax..

I forgot the value, but it is look like #Ax0 or something.. that works in my
script

Frans

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, June 05, 2001 12:12 AM
Subject: the problem of  


> hi,
>
> I use the   to define a empty roll or column, but it result a
error(The entity "nbsp" was
> referenced, but not declared) when the xsl is parsed. May I know how to
solve this problem ?
>
> Thank you.
>
> Kok Choon
>
> 
> E-mail: [EMAIL PROTECTED]
> Date: 06/05/01
> Time: 01:12:52
>
> This message was sent by Z-Mail Pro - from NetManage
> NetManage - delivers Standards Based IntraNet Solutions
> 
>
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: XSP NoClassDefFound (but not sun/tools/javac/Main)

2001-06-05 Thread Frans Thamura

I have a simple bean, and it is working..

Put your class in WEB-INF classes in cocoon directory, dont' put any other
place.

Frans

- Original Message -
From: "Donald Ball" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, June 05, 2001 11:42 PM
Subject: Re: XSP NoClassDefFound (but not sun/tools/javac/Main)


> On Tue, 5 Jun 2001 [EMAIL PROTECTED] wrote:
>
> > There is something funny going on with my cocoon interpreter or
> > classloader...  I am using an xsp page to format data, part of which is
> > creating a simple bean (so simple that all it has an empty constructor
and a
> > single method that returns some xml... no explicit imports).
> >
> > The page compiles correctly (so the class is found correctly during
> > compilation) but then when the page is executed, I get a
> > java.lang.NoClassDefFound error, referring to my test class.
> >
> >   java.lang.NoClassDefFoundError: framework/test/PretendEJB
> >   at
> >
_opt._www._websites._laetitia._html._test._unitprice._unit_price.populateDoc
> > ument(_unit_price.java:149)
> >   at
> > org.apache.cocoon.processor.xsp.XSPPage.getDocument(XSPPage.java:97)
> >   ...
> >
> > The snippet of xml that is causing the problem is:
> >
> >   
> > 
> > framework.test.PretendEJB ejb = new framework.test.PretendEJB();
> > 
> > 
> >   
> >   ejb.getXML()
> >   
> > 
> >   
> >
> > I am not sure that this will end up working as I expect, anyway, but not
> > finding the class is a bit of a showstopper.  A JSP page in the same
> > directory works as expected.  I would have thought that the servlet
shared
> > the same class loader as the JSP engine.
> >
> > Specs:
> >
> >   Cocoon 1.8.2
> >   Tomcat 3.2.2
> >   Apache 1.3.19
> >   JDK 1.3.1
> >   Linux 2.4.2-2 (Redhat 7.1)
>
> the xsp class loader is perhaps a bit broken. try putting your lib in the
> tomcat shared lib directory.
>
> - donald
>
>
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: Tomcat + Cocoon, .xml not displayed

2001-06-12 Thread Frans Thamura

Try to check you installation.

modify tomcat.bat and put xerces, xalan in the first of the CP

Frans

- Original Message - 
From: "Mike Thomas" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 13, 2001 8:46 AM
Subject: Tomcat + Cocoon, .xml not displayed


> 
>  Let me preface by saying I have read the FAQ and searched the archvies,
> but no luck.
> 
>  When attempting to view .xml files via Cocoon-Tomcat  I get a 404
> error. The Tomcat install itself serves up the other pages and seems to
> work ok(/cocoon context is visible etc).
> 
>  I deleted the parser.jar so that xerces would be alone in the
> classpath. I also tried changing the properties parm to be a fully
> qualified file:// URL, but no success. I also tried changing the debug
> levels in Tomcat and Cocoon, again without success.
> 
>  TIA,
> 
>  Mike.
> 
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: generate dinamic page from a single index.xml

2001-06-15 Thread Frans Thamura

Usually in dynamic page, pages is a collection of 1 or
more function, in cocoon this is mean 1 or more XML.

I think cocoon don't have that feature..

I usually used cocoon just for create 1 XML, RDF, or
RSS file. just it, or create html form, which I do it
right now.

Frans


--- Christopher Painter-Wakefield
<[EMAIL PROTECTED]> wrote:
> 
> Simone,
> 
> this is very easy to do, and Cocoon provides many
> different ways you can do
> it.
> 
> Here's a simple example using only XML and XSLT:
> 
> index.xml:
>
> 
>
> href="index.xsl"?>
> 
>
>  one
>  two
>  three
>
> 
> index.xsl:
>
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
> version="1.0">
> 
>
> 
>
>  
>
>  
>
> 
>
>  Current item: 
>  
>  
>
>  index.xml?item-number= select="$item-number+1"/>
>
>Next
>  
>
> 
>
>  Current item: 
>  
>  Next
>
> 
>
> 
>
> 
> 
> The reason this works is because Cocoon has nicely
> made it possible for you
> to get query parameters in your XSLT stylesheet just
> by declaring an
>  with the same name.  So, the link we
> create in the stylesheet
> uses a query parameter (?item-number=n) and we pick
> it up with  name="item-number"/>.
> 
> There are many more complex approaches you can try,
> particularly if you get
> into XSP, where you have the whole range of Java and
> servlet programming
> available to you.
> 
> -Christopher
> 
> 
> 
> 
> Please respond to [EMAIL PROTECTED]
> 
> To:   <[EMAIL PROTECTED]>
> cc:
> 
> Subject:  generate dinamic page from a single
> index.xml
> 
> Hi
> My prior mail was been quite generic. The question 
> is about the
> possibility of create dynamically web page starting
> from a  single
> index.xml page and translate with cocoon and 
> XSLT. Following the links on
> index.xml displayed on browser  the will load a new
> page that came from
> index.xml new  rapresentation.
> 
> Is there some suggestion or can be implemented an 
> equivalent architecture?
> 
> Thank for all in advace.
> Simone
> 
> 
> 
> 
> 
> 
> 
>
-
> 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]>
> 


__
Do You Yahoo!?
Spot the hottest trends in music, movies, and more.
http://buzz.yahoo.com/

-
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: Xalan version for Cocoon 1.8.x

2001-06-15 Thread Frans Thamura

Yah, Cocoon 1.8.2 have problem if you install Xalan
2..

Bad...yeah..

Frans


--- Werner Guttmann
<[EMAIL PROTECTED]> wrote:
> Hi,
> 
> Given that I have not seen any reply to my question,
> let's try it again (and
> rephrase it at the same time .. ;-)).
> 
> Is it possible to move from Xalan 1.2.2 to Xalan 2
> without breaking anything
> in Cocoon 1.8.2 ?. I just tried this last week, and
> I am having problems
> telling me that the XMLParserLiaison class can not
> be found. Checked the JAR
> file of Xalan 2, and indeed it seems as if that
> class does not exist
> anymore.
> 
> Is it that I am doing things wrong, or does Cocoon
> require Xalan to be of
> version 1.x.y ?
> 
> Thanks
> Werner
> 
> Werner Guttmann wrote:
> 
> > Hi,
> >
> > I am running Cocoon 1.8.2 on Solaris 2.7 with
> Sun's JDK 1.2.2, and I
> > having problems with different Cocoon and
> non-Cocoon web applications
> > (residing on the same servlet engine) having
> different requirements
> > related to Xalan version numbers, i.e. some of
> them requiring Xalan 1.2.
> >
> > Before describing the problem in detail, would
> anybody know of a reason
> > why Cocoon 1.8.x would require Xalan 1.2.2 (or
> below) and hence would
> > prevent me from switching to Xalan 2 ?
> >
> > Regards
> > Werner
> >
> >
>
-
> > 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]>
> 


__
Do You Yahoo!?
Spot the hottest trends in music, movies, and more.
http://buzz.yahoo.com/

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




Blue Oxygen - Cimande Project using Cocoon 1.82

2001-06-19 Thread Frans Thamura

Dear All,

I create a content management system using XSP, the
XML descriptor (I called this content descriptor) can
generate HTML form, try it. It is work in several
computer. I need a lot of contributor to test this.
This will be a serious project for me.

I need your feedback of my idea (XML based Content
Management System), and may be this can contribute
open source project, esp cocoon.

This script support
- Session. Thanks for tips in mailing list and the
sample of this session.
- 1 XSP with 2 XSL, I try 2 XSP, but performance drop.
Still question. XSP is not component development. See
my file descriptor.xsp.xml in directory xsl in my
cimande.war.
- Support upload, but using jspSmartUpload ( I will
move to maybeupload or any opensource project -- need
help also).
- access to MySQL JDBC 2.04

Problem:
- not support cocoon 2.1-dev, because I still cannot
install cocoon 2.1-dev. Help!!!

You can download the source code (free).. in my web
site, in blueoxygen.org, and email me for question and
problem. 

I need your feedback, because I still cannot used
eqsl, and database polling (I create my own database
layer bean). I don't know how to use Turbine in my
XSP.

Sorry this is not pure XSP, several of the script is
still using JSP, because I still got a lot of problem,
and need help to solve that.

But, I think this is good sample of complex XSP.

Have a nice day.

Regards,

Frans Thamura


__
Do You Yahoo!?
Spot the hottest trends in music, movies, and more.
http://buzz.yahoo.com/

-
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: JSP v. XSP (was Re: performance inquiry)

2001-06-21 Thread Frans Thamura



I used cocoon intensively, and I like cocoon, and I hope XSP 
become more popular, because it is powerfull, remember powerfull is not mean 
fast, and remember java is slow, so Cocoon is Java component, 2 times slower 
than other.
 
We know C, is fast, but Java is more flexible for 
multiplatform development, but I never see there is a mod_cocoon for apache, 
even the Xalan and Xerces C have arrived.
 
I think we have to use XML, because the flexbility, esp, if we 
can to used WML, HTML or HTML 2.0 (i-mode), this is the fastest 
way.
 
 
Frans


Re: could not install cocoon1.8.2 on window98

2001-06-21 Thread Frans Thamura

modification the startup.bat, and try to change the memory, like 640k, and
protected, this modification will create a startup.pif

I try it work well in my notebook

Frans


-Original Message-
From: Jian Kang <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Monday, June 18, 2001 2:02 PM
Subject: could not install cocoon1.8.2 on window98


>hi:
>
>i tried to install cocoon1.8.2 on window 98. i download the zip file from
>http://xml.apache.org, unzip it and run 'build.bat', and the message as
>below:
>
>-
>Out of environment space
>Out of environment space
>...
>...
>Out of environment space
>
>Building with classpath C:\jdk1.3\lib\tools.jar;\lib=BSFENG~1.JAR
>
>Starting Ant...
>Exception in thread "main" java.lang.NoClassDefFoundError:
>org/apache/tools/ant/Main
>-
>
>what is wrong? pls. help  me out.
>
>thanks a lot
>
>jian
>_
>Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
>
>
>-
>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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: JSP v. XSP (was Re: performance inquiry)

2001-06-21 Thread Frans Thamura

Are you ever create a contentn management system using XML???

You will see how great XSP is it? and how powerfull is a XML system.

Frans Thamura




-Original Message-
From: Anthony Mills <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Thursday, June 21, 2001 2:41 AM
Subject: JSP v. XSP (was Re: performance inquiry)


>I am not interested in time right now, atleast not ms.  Why else would I
>want to use XSP?  I used XSPs for awhile, but I prefer JSP for a few
reason,
>and right now one doesn't work.  I will consider migrating, as most of my
>work is done in classes and XSLT.  The first is:
>/>
>
>
>This makes it real easy and nice to support sessions and read the request
>parameters.
>
>The second one, which doesn't work in beta 1 is:  errorPage="error.html" />
>
>This will catch exceptions real easy, and display a nice page for me.
>
>Now the only benifit I saw with XSP over JSP is with databases.  I am not
>planning on using a database, so this point was lost on me.
>
>JSP is an industry standard right now.  While I am sure XSP is gaining
>support, I am tring to stick to established standards.  I am not real
>concerned with this, as my files are only about 20 lines long, and I will
>have about five of them.
>
>Thanks,
>
>Anthony Mills
>
>- Original Message -
>From: "Berin Loritsch" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Wednesday, June 20, 2001 12:07 PM
>Subject: Re: performance inquiry
>
>
>> Anthony Mills wrote:
>> >
>> > Hello,
>> >
>> > I am developing a web site using JSP and Cocoon 2.  I am running two
>tomcat
>> > web servers (3.2 and 4.0beta) on the same box at the same time.  I have
>a
>> > Pentium III 450 with 192mb ram.  I have noticed a few things.  First,
it
>> > takes a little while to start, about 20 seconds.  A page take about 5
>> > seconds to load the first time.  After that, I am more limited by my
>> > connection (128kbps up) than I am by my web pages.  The pages come back
>> > within seconds.  I have JSPs being run through Cocoon 2; I assume that
>xsp
>> > would have similar speeds.  Keep in mind this is not a scientific
>> > measurement, just what I "notice".  Also, both web server are running
>about
>> > 34mb, with little interaction so far.  One thing to consider when
>deploying
>> > your app.  You can precompiled your jsp/xsp pages.  This would speed
>things
>> > up considerably.
>>
>>
>> The first access is from the Sitemap compiling.  It and the XSP pages can
>be
>> precompiled.  Cocoon takes roughly 15-20 seconds to start up mainly
>because of
>> the number of managed resources it is controlling, and because of the
>compiled
>> sitemap.  If you make Cocoon load on startup then most of the
>initialization
>> will have been done before the first request.
>>
>> 5 seconds is about right for an XSP page.
>>
>> Keep in mind that XSP is a better match than JSP for Cocoon--there is
less
>> translation and parsing that has to happen.  By doing that you will shave
>off
>> a few milliseconds per request (10-50ms depending on size of
information).
>>
>> >
>> > Hope this helps,
>> >
>> > Anthony Mills
>> >
>> > - Original Message -
>> > From: "java guru" <[EMAIL PROTECTED]>
>> > To: <[EMAIL PROTECTED]>
>> > Sent: Wednesday, June 20, 2001 8:33 AM
>> > Subject: performance inquiry
>> >
>> > > Hi.,
>> > >   I am begining of developing a
>> > > standalone/networked/web application. But need to
>> > > decide what to use. C2 attracted be 'coz of many cool
>> > > features i might use in the future..
>> > >
>> > > But performance issues scares me I need advice..
>> > >
>> > > The application need to run standalone or networked
>> > > like web app...Considering this..
>> > >
>> > > 1. Is it better to do with servlet and jsp: In this
>> > > case i have problem with connection pooling and o/r
>> > > mapping to database
>> > >
>> > > 2. Is it better to use xml stuff with c2: In this i
>> > > fear for performance. I fear it might demand high end
>> > > configuration user systems compared to no1..
>> > >
>> > > Please advice
>> > > thanks
>> > >
>> > > 
>> > 

Case Study

2001-06-22 Thread Frans Thamura

Dear All,

Where is a mailing list of Cocoon, so I can get a solution?? Like my script
in blueoxygen.org is not good, and I will say yes, I not using esql, but
what happen if I want to try to used class rather than esql?

Frans


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: [EXPLAINED] Sharing session objects between servlets and XSP pages

2001-06-22 Thread Frans Thamura

The JSP session and XSP are shared.

But there is a trick for using session instead using 

I saw several of the XSP tag cannot be used in implementation..

See blueoxygen.org for references, I used session there. I am not using
session tag, because it cannot be used.

We have to be convensional syntax.

session tag is used for XML, but I found difficulty in xsl logic sheet.

Frans


-Original Message-
From: Luis Gois <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Tuesday, June 19, 2001 8:14 AM
Subject: [EXPLAINED] Sharing session objects between servlets and XSP pages


>I found this at a Tomcat mailing list and since I've seen here some posts
questioning about it and even less concrete
>replies, here it is (simple but works ! I once get it to work like this,
but I've also forgot it later and lost almost a day trying
>to solve this situation) :
>
>"I noticed some posts about people having problems loosing the session
>information when using JSPs with servlets.  For examples if I did the
>following in a JSP:   
when MyServlet got control, the Session
>was empty. I found out that if I did this the "right way" and defined the
servlet in
>my web.xml, e.g.,   
> theServlet
> com.mycom.MyServlet
>   
>   
>  theServlet
>  someServlet
>and in the JSP said:then all worked fine. You may
>have to adjust the path a bit depending upon where your
>JSP is, etc.  The Tomcat mapping trace can help you debug
>mapping problems. This seems like it is a Tomcat bug, but the above is not
only a
>workaround, but a more maintainable way of doing things.
>
>Frank Lawlor
>Athens Group, Inc.
>(512) 345-0600 x151
>Athens Group, an employee-owned consulting firm integrating technology
>strategy and software solutions."
>
>I hope Mr. Frank Lawlor doesn't mind about "posting" to cocoon-users!;)
Hey, thanks a lot Frank
>
>
>-
>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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: cocoon and xalan2

2001-06-26 Thread Frans Thamura

It is not work, you have to used xalan 1.1,

But you can cojoin it with several application that
used xalan 2, like JetSpeed 1.3a2

Frans

--- Thorsten Mauch <[EMAIL PROTECTED]> wrote:
> Hi 
> I using Coocon 1.8.2 with Xalan2. I use
> the XalanTransformer privided by Rick Knowles. I'am
> not sure if it's the best way to do so, coz in the
> actual 
> source distribution the patch is not included. 
> Anyway i found a small bug in the class.
> xsl:include doesn't work for relative pathes:
> 
> i changed the line
>   s.setSystemId(sheetBase);   
> in
>   s.setSystemId("file:///"+inBase);
> 
> I'am not sure if this doesn't have undesired side
> efectts, coz
> my knoewlage about xalan tends to sero. But it works
> :)
> 
> To avoid naming confilics i renamed the
> XalanTransformer 
> to Xalan2Transformer.
> 
> If this is still the best way to use Xalan2 with
> cocoon 
> maybe somebody can commit this class to the CVS.
> 
> Thanx Thorsten
>  <> 
> 
> 

> ATTACHMENT part 2 application/octet-stream
name=Xalan2Transformer.java
>
-
> 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]>


__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/

-
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: XSP references ?

2001-06-30 Thread Frans Thamura

I am creating it, do you want to help me???



Frans
- Original Message - 
From: "Vincent" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 28, 2001 10:56 PM
Subject: XSP references ?


> I'm looking for references, examples or tutorials on XSP...
> Does anyone have good adresses ?
> 
> 
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: Why XSP?

2001-06-30 Thread Frans Thamura

Yah, after I try Cocoon 2, I prefer  XSP still with XML extension. like
cocoon 1.82.

and advance the feature like create a lot of logicsheet references

like cinclude, session naming space is good, why in Cocoon 2 change to
xspsession

Strange yah..



- Original Message -
From: "Mikael Ståldal" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 29, 2001 3:51 PM
Subject: Why XSP?


> What is the need for XSP? Why not use XSLT with extensions instead?
>
>
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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




Cocoon 1.82 + JetSpeed 1.3a2 + Tomcat 322 + Cimande

2001-06-26 Thread Frans Thamura

Hi All,

I upload the file with cocoon 1.82 + JetSpeed 1.3a2 +
Tomcat 322 + Cimande in
blueoxygen.linuxindonesia.com/project/cimande

Have a nice try..

Frans

__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/

-
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: ESQL HACKERS: help on esql, transactions, and nested queries

2001-07-02 Thread Frans Thamura

Why don't you try create a java beans. I think this is
a better solution than esql.

esql is a feature that cocoon is support database.

But I prefer that, make a 3-tier modeling.

Frans

--- Ramsés Morales <[EMAIL PROTECTED]> wrote:
> Hi.
> 
> I'm starting a transaction on the main esql
> connection (BEGIN
> TRANSACTION). On that same connection I'm doing a
> SELECT on a table
> (table X). Inside the row-results of that SELECT I'm
> doing a nested
> connection, on that nested connection I'm doing a
> DELETE query on "table
> X".
> 
> Will the "BEGIN TRANSACTION" on the main connection
> will stop my nested
> DELETE from working? Do I have to move BEGIN
> TRANSACTION to the nested
> connection? Do I have to do a BEGIN TRANSACTION on
> the main connection
> and on the nested connection?
> 
> Thanks for your help.
> 
> 
>
-
> 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]>
> 


__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/

-
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: Exception in Cocoon

2001-07-03 Thread Frans Thamura

The solution is

Use tomcat 3.22 fresh from the apache.org, and remove the jaxp.jar and
parse.jar

and use all jar from cocoon 2

Don't use jar from any other source.

I don't know why, even if you use the newest version of jar, you cocoon 2
won't work.

Strange yah, I don't have any idea, what kind of JAR is use by Cocoon, and
why the jar is not compatible.



Frans
- Original Message -
From: "Victor Serrato" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 02, 2001 9:09 PM
Subject: Exception in Cocoon


> I try to use Cocoon 2 in Tomcat 3.2, when I call
> http://localhost:8080/cocoon/ I recive the next error
> message:
>
> file://Begin Message
> Cocoon 2 - Internal server error
>
> --
--
>
> type internal-server-error
>
> message The sitemap handler's sitemap is not
> available.
>
> description org.apache.cocoon.ProcessingException: The
> sitemap handler's sitemap is not available.
>
> sender org.apache.cocoon.servlet.CocoonServlet
>
> source Cocoon servlet
>
> stacktrace
>
> org.apache.cocoon.ProcessingException: The sitemap
> handler's sitemap is not available.
> at
> org.apache.cocoon.sitemap.Manager.setupProcessing(Manager.java:179)
> at
> org.apache.cocoon.sitemap.Manager.invoke(Manager.java:93)
> at org.apache.cocoon.Cocoon.process(Cocoon.java:293)
> at
> org.apache.cocoon.servlet.CocoonServlet.service(CocoonServlet.java:471)
> at
> javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> at
> org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
> at
> org.apache.tomcat.core.Handler.service(Handler.java:287)
> at
> org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
> at
>
org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:79
7)
> at
> org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
> at
>
org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpC
onnectionHandler.java:213)
> at
> org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java,
> Compiled Code)
> at
> org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java,
> Compiled Code)
> at java.lang.Thread.run(Thread.java:479)
>
>
> exception
>
> org.apache.cocoon.ProcessingException: The sitemap
> handler's sitemap is not available.
>
> request-uri
>
> /cocoon/
>
> path-info
> file://End Message
>
> I am very interesting in use Cocoon, please could you
> tell me the error's cause.
>
> Victor Serrato
> [EMAIL PROTECTED]
>
>
> _
> Do You Yahoo!?
> Obtenga su dirección de correo-e gratis @yahoo.com
> en http://correo.espanol.yahoo.com
>
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: Cocoon 1.8.3???

2001-07-03 Thread Frans Thamura

I prefer to use 1.8x, because all of my script is not work in cocoon 2, that
is because sitemap.xmap file.

Still question

Frans


- Original Message -
From: "Ramsés Morales" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 03, 2001 6:11 PM
Subject: Cocoon 1.8.3???


> Hi.
>
> Are you planning a new Cocoon 1.8.x release, or we have to jump
> immediately to Cocoon 2??
>
> thanks for your help.
>
>
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: Merge multiple files to one XSP-File

2001-07-09 Thread Frans Thamura

I got that problem, the performance is slowing down,isn't?

You cannot do that, I prefer make it become 1 pages.

Sad.. 

I have done that, that is the solution from me. Or make a java bean instead

Frans
- Original Message - 
From: "C. Gaffga" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, July 08, 2001 11:25 PM
Subject: Merge multiple files to one XSP-File


> Hi !
> 
> I split up my xsp files to keep them small and for reusebility.
> With Cocoon 1.8 ist wasn't a problem to merge them BEFORE the
> xsp-file is translated to a class. I used xinclude.
> 
> But now with cocoon 2 that is not possible. XInclude works
> only as a postprocessor.
> 
> So my question:
> Is there a way to merge files to one xsp-file before comiling?
> 
> It's urgent. Please help
> 
> Thanks in advance.
> 
> Christoph Gaffga
> 
> 
> -
> 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]>


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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




SSL crash with Cocoon 1.82

2001-07-09 Thread Frans Thamura

Dear All,

Are there anyone ever try use Cocoon in Apache with SSL connection.

I create components and work well in HTTP environment, but in HTTPS

Do you have a solution or tips for me?

Thanks

Fran


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-
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: CVS update

2001-07-19 Thread Frans Thamura

I prefer you try Cocoon 2.0 from dist, not from CVS..

I am got several error in that version, 2.1-dev, the
sitemap handler.

I used 2.0, and it work well.. may abe in 2.1 will be
used axis, because I find axis.jar there.

Have a nice try.

Frans

--- Marco Spinetti <[EMAIL PROTECTED]> wrote:
> Hi all,
> in 10 days I will have to do a demo of cocoon2. I'm
> not expert of CVS and then my problem is this: I
> have cocoon2.0 and I know that now there is
> cocoon2-1. I would like to do the demo with the new
> version of cocoon2. How can I update my version
> without loose all my data? Can you explain me all
> the steps?
> 
> Thanks
> 
> Marco
> 
> 


=
Let's Empowering Open Source

__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/

-
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: [C2B1] Sitemap handler's sitemap not available

2001-07-20 Thread Frans Thamura

I have this problem also.

I am successfull install cocoon 1.82 (use intensive
now), cocoon 2.0, but in Cocoon 2.1 from CVS I got the
sitemap error.

Frans

--- Kevin Sonney <[EMAIL PROTECTED]> wrote:
> On Thu, Jul 19, 2001 at 07:01:19PM -0400,
> [EMAIL PROTECTED] spoke thusly:
> >yeps  !  its seen a lot. Reasons are not
> generic and vary with case to
> >case.
> >The  best way to know the exact error is to
> check the cocoon.log file.
> 
> fgrep is my friend :
> 
> [kevin@snorlax resin]$ fgrep Error
> webapps/cocoon/WEB-INF/logs/cocoon.log 
> ERROR   3703[cocoon  ] (Thread-2): Error
> compiling sitemap
> java.lang.StackOverflowError
> 
> Of course, this was *SO* easy to miss in the logs,
> as a *LOT* of info is 
> in there (and this is thread 2 of 17, as well, so my
> human eyes kept 
> looking through it).
> 
> Alrighty then. Resin (and only Resin) stack
> overflows compiling the 
> sitemap from a stock 2.0B1 (and 2.1-cvs) build of
> cocoon (I'll check out 
> the 2.0 cvs tree today and try that, but I have
> little hope, y'know?)
> 
> Has anyone seen this, then?
> 
> -- 
> +---+
> | Kevin Sonney[EMAIL PROTECTED] |
> | Systems Programmerwww.webslingerZ.com |
> +---+
> 
> "The weakest link in any civil rights case is always
> the
> defendant. Imagine being a lawyer and getting a call
> from me. That's why I
> try to, uh, behave myself." - Hunter S. Thompson
> 
> 
>
-
> 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]>
> 


=
Let's Empowering Open Source

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

-
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.1? What gives?

2001-07-20 Thread Frans Thamura


Yah, right


is the 2.0 is stable??? with beta version. I used
cocoon 1.8 as production environment, i am work for
the migration.


Frans
--- Roy Tennant <[EMAIL PROTECTED]> wrote:
> So here I've been waiting for a stable Cocoon 2, and
> I find that the 
> development has blown past a stable 2.0 release, and
> now is working 
> on 2.1. Is there any hope of a stable release
> anytime soon? I have 
> production services running (shakily, unfortunately)
> on 1.8.3, and 
> would appreciate having a stable version of 2.x, in
> the (perhaps 
> forlorn) hope that my troubles may disappear. Can
> anyone give me a 
> sense of the proposed development path? Please
> respond directly to me 
> as well as the list, since I cannot deal with
> signing up to a list 
> that gets the kind of traffic this list does.
> Thanks,
> Roy Tennant
> eScholarship
> California Digital Library
> 
>
-
> 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]>
> 


=
Let's Empowering Open Source

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

-
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: [C2B1] Sitemap handler's sitemap not available

2001-07-22 Thread Frans Thamura

I will try it tonight, is it??? resin?? I never used
resin in my development environment.

Frans

--- Kevin Sonney <[EMAIL PROTECTED]> wrote:
> On Fri, Jul 20, 2001 at 09:48:07PM -0700, Frans
> Thamura spoke thusly:
> > I have this problem also.
> > 
> > I am successfull install cocoon 1.82 (use
> intensive
> > now), cocoon 2.0, but in Cocoon 2.1 from CVS I got
> the
> > sitemap error.
> 
> I managed to get it working, by doing the following
> :
> 
> 1) move/remove resin-x.x.x/lib/jaxp.jar
> resin-x.x.x/lib/sax.jar (as per 
> the current docs)
> 2) rename resin-x.x.x/lib/dom.jar
> resin-x.x.x/lib/zdom.jar
> 3) copy xerces-xxx.jar and xalan-xxx.jar
> resin-x.x.x/lib/
> 4) Comment out the  element in
> resin.conf
> 5) Copy the cocoon.war into resin-x.x.x/webapps
> 6) start resin, and browse to localhost:8080/cocoon
> 
> This seems to be working. YMMV, but if it works for
> more than just me, 
> perhaps the dev team would be kind enough to amend
> the INSTALLING doc for 
> C2?
> 
> -- 
> +---+
> | Kevin Sonney[EMAIL PROTECTED] |
> | Systems Programmerwww.webslingerZ.com |
> +---+
> 
> "The weakest link in any civil rights case is always
> the
> defendant. Imagine being a lawyer and getting a call
> from me. That's why I
> try to, uh, behave myself." - Hunter S. Thompson
> 
> 
> 
> -- 
> +---+
> | Kevin Sonney[EMAIL PROTECTED] |
> | Systems Programmerwww.webslingerZ.com |
> +---+
> 
> "The weakest link in any civil rights case is always
> the
> defendant. Imagine being a lawyer and getting a call
> from me. That's why I
> try to, uh, behave myself." - Hunter S. Thompson
> 
> 
>
-
> 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]>
> 


=
Let's Empowering Open Source

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

-
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: [C2B1] Sitemap handler's sitemap not available

2001-07-22 Thread Frans Thamura

I will try it tonight, is it??? resin?? I never used
resin in my development environment.

Frans

--- Kevin Sonney <[EMAIL PROTECTED]> wrote:
> On Fri, Jul 20, 2001 at 09:48:07PM -0700, Frans
> Thamura spoke thusly:
> > I have this problem also.
> > 
> > I am successfull install cocoon 1.82 (use
> intensive
> > now), cocoon 2.0, but in Cocoon 2.1 from CVS I got
> the
> > sitemap error.
> 
> I managed to get it working, by doing the following
> :
> 
> 1) move/remove resin-x.x.x/lib/jaxp.jar
> resin-x.x.x/lib/sax.jar (as per 
> the current docs)
> 2) rename resin-x.x.x/lib/dom.jar
> resin-x.x.x/lib/zdom.jar
> 3) copy xerces-xxx.jar and xalan-xxx.jar
> resin-x.x.x/lib/
> 4) Comment out the  element in
> resin.conf
> 5) Copy the cocoon.war into resin-x.x.x/webapps
> 6) start resin, and browse to localhost:8080/cocoon
> 
> This seems to be working. YMMV, but if it works for
> more than just me, 
> perhaps the dev team would be kind enough to amend
> the INSTALLING doc for 
> C2?
> 
> -- 
> +---+
> | Kevin Sonney[EMAIL PROTECTED] |
> | Systems Programmerwww.webslingerZ.com |
> +---+
> 
> "The weakest link in any civil rights case is always
> the
> defendant. Imagine being a lawyer and getting a call
> from me. That's why I
> try to, uh, behave myself." - Hunter S. Thompson
> 
> 
> 
> -- 
> +---+
> | Kevin Sonney[EMAIL PROTECTED] |
> | Systems Programmerwww.webslingerZ.com |
> +---+
> 
> "The weakest link in any civil rights case is always
> the
> defendant. Imagine being a lawyer and getting a call
> from me. That's why I
> try to, uh, behave myself." - Hunter S. Thompson
> 
> 
>
-
> 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]>
> 


=
Let's Empowering Open Source

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

-
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: 2.1? Stable Software Needed

2001-07-22 Thread Frans Thamura

Who say the commercial software can be more stable
than open source??? I think We are talking software
development process.

If the cocoon team agree to make it beta forever, that
great.. look ICQ, always beta.. and still stable. So
for next release there will be cocoon 2-2b1, 2-3b2
etc..

I think the cocoon team will agree to finish the last
step, QA.. to make it more stable..or launch it.. I
think this cocoon 2-0 is stable enough.. and keep
update it.. like 2-0-1 etcc.

I am following the PHP4 Development, since Beta 1, and
In the day they launch PHP4 (amazing, after that the
php.net is full traffic)..the team wrote something
like this.. we launch the php4 because it is stable
enought, and after 1 year, there still an update.. But
several of the mailinglist member wrote: it is not
stable enought etc...bla..blaa.blaa.. you can read
their archive..

I think stable day is good for a milestone, for next
step of development. Except we agree to used it as
beta forever.

:)

Frans

--- Carlos Araya <[EMAIL PROTECTED]> wrote:
> I would like to point out that the cocoon team has
> done a good job of
> balancing feature requests with development release
> time. If what you need
> is stable and mature software perhaps you'd like to
> consider using Cocoon
> 1.X series and see if it does what you need (which
> is what I did) while
> features are completed and the code matures enough
> to meet your
> requirements.
> 
> Or, more bluntly, use commercial software if it
> gives you the more stable
> and usable system that you're looking for.
> 
> Once upon a time, "Steven Punte" was seen writting:
> 
> > I too agree with Roys' statements.  Stable
> software is
> > everything.  Otherwise Cocoon will just take it's
> > place as some interesting R&D project in the
> Software
> > Halls of History while another project, another
> firm,
> > deliveres a stable usable system to market that
> > becomes the standard.
> > 
> >   Steve Punte
> 
> 
>
-
> 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]>
> 


=
Let's Empowering Open Source

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

-
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.1? Stable Software Needed

2001-07-22 Thread Frans Thamura

Yah.. agree..


--- Steven Punte <[EMAIL PROTECTED]> wrote:
> I too agree with Roys' statements.  Stable software
> is 
> everything.  Otherwise Cocoon will just take it's 
> place as some interesting R&D project in the
> Software
> Halls of History while another project, another
> firm,
> deliveres a stable usable system to market that 
> becomes the standard.
> 
> Steve Punte
> 
> 
> 
> On Thu, 19 Jul 2001 08:40:06 -0700,
> [EMAIL PROTECTED] wrote:
> 
> >  So here I've been waiting for a stable Cocoon 2,
> and I find that the 
> >  development has blown past a stable 2.0 release,
> and now is working 
> >  on 2.1. Is there any hope of a stable release
> anytime soon? I have 
> >  production services running (shakily,
> unfortunately) on 1.8.3, and 
> >  would appreciate having a stable version of 2.x,
> in the (perhaps 
> >  forlorn) hope that my troubles may disappear. Can
> anyone give me a 
> >  sense of the proposed development path? Please
> respond directly to me 
> >  as well as the list, since I cannot deal with
> signing up to a list 
> >  that gets the kind of traffic this list does.
> Thanks,
> >  Roy Tennant
> >  eScholarship
> >  California Digital Library
> >  
> > 
>
-
> >  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]>
> >
> 
> 
> 
> 
> 
>
___
> Send a cool gift with your E-Card
> http://www.bluemountain.com/giftcenter/
> 
> 
> 
>
-
> 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]>
> 


=
Let's Empowering Open Source

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

-
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: Cannot install C2b2

2001-08-01 Thread Frans Thamura

It works in my PC.. I think this is strange.

I still cannot install cocoon b1...

This is my experience to install it, may be help.

I download from CVS, after that..

I open the INSTALL file

set the TOMCAT_HOME

and copy the build.bat bla--bla to the command prompt

and Enter.

The cocoon will create a war and put in tomcat webapps
directory

After that, I run tomcat, and execute it.

You will see the new design of documentation of Cocoon
2. Try to click the documentation, in left area
column. this will guarantee you that your cocoon is
the newest one.

Have a nice try,

Frans thamura


--- "Griffith, Vivienne"
<[EMAIL PROTECTED]> wrote:
> Hello,
> 
> I'm trying to install Cocoon2 beta2 release on
> Tomcat 3.2.1 (Windows NT).
> When I request the cocoon welcome page, I get an
> application error. The beta
> 1 version is fine. Has anyone else experienced this
> problem? I've tried
> another machine and also one with Windows 2000, same
> problem.
> 
> Thanks,
> Vivienne
> 
> 
> 
> Knowledge by Experience
> 
>
-
> 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]>
> 


=
Let's Empowering Open Source

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

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