Re: Sitemap limits

2002-02-20 Thread Carlos Araya

>From previous messages to the list it appears that it can be up to 64kb

Carlos

On 02/20/02 21:44, "Mikhail Fedotov" <[EMAIL PROTECTED]> wrote:

> Hi!
> 
> That are limits of current sitemap limitation ? I.e. how
> huge it can be ?
> 
> Mikhail
> 
> -
> 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]>
> 

-- 
Carlos E. Araya
---+ WebCT Administrator/Trainer
 P | California Virtual Campus
 - | C/O De Anza College
 G | 21250 Stevens Creek Blvd
---+ Cupertino, CA 95014

email   [EMAIL PROTECTED]
web http://www.cvc1.org/ (work)
http://www.silverwolf-net.net (personal)
phone   408 257 0420 (work)
PGP Fingerprint:E629 5DFD 7EAE 4995 E9D7  3D2F 5A9F 0CE7 DFE7 1756

80/20 Rule: Simplicity vs. complexity. 80 percent of the
functionality/feature set of an "ideal" solution set, with only 20 percent
of the complexity of the ideal solution or 20 percent of the effort required
to build the ideal solution; or put another way, the last 20 percent of the
"ideal" feature set is what creates the most complexity


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




Sitemap limits

2002-02-20 Thread Mikhail Fedotov

Hi!

That are limits of current sitemap limitation ? I.e. how
huge it can be ?

Mikhail

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




Tomcat 4.0.2, Cocoon 2.0.1, JDK 1.4.0 Build Problem

2002-02-20 Thread tod . thomas

I'm trying to build the cocoon2.war file and am getting a lot of errors like this:

/cocoon-2.0.1/build/cocoon/src/org/apache/cocoon/components/language/markup/xsp/EsqlConnection.java:22:
 class org.apache.cocoon.components.langu
age.markup.xsp.EsqlConnection must be declared abstract. It does not define 
java.sql.PreparedStatement prepareStatement(java.lang.String, int[]) from interface 
java.sq
l.Connection.
public class EsqlConnection implements Connection {

Is there anybody who has seen this that can offer some advice?  

Thanks.

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




[C2] Netscape Shows Squares For Text

2002-02-20 Thread Peter Hargreaves

Hi Folks,

I'm getting little squares instead of text in Netscape 4.7 - when I view my 
Cocoon application. It also screws up Netscape 6.1. It sounds like a browser 
problem I know, but it depends on where my C2 application is hosted and I need 
to work round it somehow.

The application has tested fine with both Netscape browsers under my own system, 
and under one trial hosting account - it is only under a second trial account 
the problem arises.

http://www.hub.org:8080/self-roster/docs/rows-menu.html

http://web12.2020media.com/self-roster/docs/rows-menu.html

Under this second account the NS4.7 browser seems to have trouble identifying 
the charset, so it shows the text as little squares for each char. Then it 
reloads the page and gets it right the second time!

The following header appears as it should when viewing the source from the 
browsers in all cases:



The second system is a Unix system of some sort, I think, - could this be a clue?

Any tips, similar experiences or ideas very welcome.

Peter.

My system is: Gateway G6-350 (392,612k RAM), NT4.0sp6, jdk-1.3.1, tomcat-4.0.1, 
cocoon 2.0.2-dev, NS Nav 4.7, NS 6.1, IE 5.0,


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




Weird problem with JDK 1.4 on win32

2002-02-20 Thread Stefano Mazzocchi

I just compiled the fresh CVS and I got a bunch of compilation errors
such as

class org.apache.cocoon.components.language.markup.xsp.EsqlConnection
must
be declared abstract. It does not define void setHoldability(int) from
interface java.sql.Connection.
[javac] public class EsqlConnection implements Connection {
[javac]  ^

and so on.

The ant task should be turning that code into comments if JDBC3 is not
found.

Now, if you install JDK 1.4 on windows, it copies java.exe and javaw.exe
in your %WINDOWS_SYSTEM% directory (c:\winnt\system32 on my machine).

But i wanted to use JDK 1.3.1 to compile Cocoon so I updated my profile
to have the JAVA_HOME and PATH set up correctly.

The problem seems to be that Ant calls System.run() and the JDK 1.4
java.exe is picked up, no matter what PATH definition you have.

So, the JVM that runs ant is JDK 1.3, but the one used to check
availability of JDBC3 is JDK 1.4, thus the problem.

Deleting java.exe and javaw.exe from /winnt/system32 resolved the
problem.

-- 
Stefano Mazzocchi  One must still have chaos in oneself to be
  able to give birth to a dancing star.
<[EMAIL PROTECTED]> Friedrich Nietzsche


-
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: Calling MS SQL stored procedure

2002-02-20 Thread neil

Sorry I can't reply to the same thread. I rely on the archives as the
traffic is too high for me to stay subscribed. This is in reply to:
http://marc.theaimsgroup.com/?l=xml-cocoon-users&m=101423330019994&w=2

I use the JDBC escape syntax as Christian Haul suggested in his reply, but I
also had to
modify SQLTransformer.java to handle the ResultSets returned by SQL Server
stored procedures.
I've tried to make it handle multiple returned ResultSets, but can't test
with more than one
because my MS JDBC driver only handles the first one then says there are no
more.

SQLTransformer.java only handled ResultSets as OUT parameters (as used by
Oracle, Postgres etc.) not those returned implicitly as by SQL Server.

I posted the patch to cocoon-users on 2002-02-08
This might take you there:
http://marc.theaimsgroup.com/?l=xml-cocoon-users&m=101316887401395&w=2

Please share any improvements you may have.
Cheers,
Neil.


Subject:  Calling MS SQL stored procedure
From: "Miller, Grant" <[EMAIL PROTECTED]>
Date: 2002-02-20 15:45:47
Hi,
I'm having a problem calling an ms sql server stored procedure with the sql
transformer (using cocoon 2.0.1 and tomcat 4).
The code is:


   
  begin dbo.testformike('hi');
  end;
   


The error message is:

Invalid call syntax: begin dbo.testformike('hi'); end;

I always get this with isstoredprocedure="true".
Also, I'm not sure what the qualifier before the function name should be
(dbo is the owner in this example).
Another thing we have tried is:

This query:


  exec DBO.TESTFORMIKE 'hi'



but this gives:

A server cursor is not allowed on a remote stored procedure or stored
procedure with more than one SELECT statement. Use a default result set or
client cursor

We are completely stuck and do not want to use esql.
Thanks for any help,

Grant Miller



-
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: Stuck setting up Cocoon 2.0.1 with Tomcat 4.0.2

2002-02-20 Thread Faulkner, Perry

Hi Peter,

The message comes from webapp/Web-inf/lib/javac.jar, which is included with
Cocoon2. It must be the old java compiler jar, from 1.2 or 1.3. The JDK jars
were reorganised into rt.jar and tools.jar about then, so its contents are
probably part of one or both of those. I don't know why it's included with
Cocoon though! I suppose you could remove it from the tomcat
(webapps/cocoon/Web-inf/lib) directory and see if anything breaks or works!?

HTH

Perry

-Original Message-
From: Peter Flynn [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 21 February 2002 3:17
To: [EMAIL PROTECTED]
Subject: Re: Stuck setting up Cocoon 2.0.1 with Tomcat 4.0.2


Marcelo F. Ochoa wrote:

[blah]
> >message: error: Invalid class file format in
> >/usr/java/j2sdk1.4.0/jre/lib/rt.jar(java/io/IOException.class). The
> >major.minor version '48.0' is too recent for this tool to understand.
> >
> >What is "this tool"? Cocoon? Java1.4.0? Tomcat4.0.1?

>   Humm, seem to be a problem of jdk1.4.0, replace cocoon and tomcat's 
> tools.jar by the jdk1.4.0 version of this jar.

But neither cocoon nor tomcat has any tools.jar file!

# cd cocoon-2.0.1
# find . -name 'tools*'
./tools
# find /var/tomcat4 -name 'tools*'
#

These are both full, fresh distros downloaded the other day.

Should I be looking for a hidden file or a file called something other
than tools.jar?

I can copy Sun's jdk tools.jar but that seems a little pointless as
it's presumably the one being used anyway.

///Peter

-
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: cocoon setup error

2002-02-20 Thread William Brogden

> -Original Message-
> From: gfitzz [mailto:[EMAIL PROTECTED]] 
> Sent: Wednesday, February 20, 2002 9:58 AM
> To: [EMAIL PROTECTED]
> Subject: cocoon setup error
> 
> 
> My server is Win2K Server using IIS.  I installed JDK 
> 1.3.1_02, Tomcat 4.0.2
> and Cocoon.  When I try to access cocoon I get the following error:
> 
> java.lang.NoClassDefFoundError: javax/xml/transform/URIResolver
> 
> I set this up identically on a Win2K Pro machine and it works fine.
> 
> What is wrong?
> 
> Gary Fitzgerald
> 41 Arlington Street
> Everett, MA 02149
> 617-387-3926
> [EMAIL PROTECTED]
> www.totalinclusion.org

 It is extremely likely that your server with a problem is 
picking up an old version of the JAXP parser before it sees
the one Cocoon comes with. See the findingclasses.html
file in your JDK tooldocs for how this can happen.


[EMAIL PROTECTED]
Author of Soap Programming with Java - Sybex; ISBN: 0782129285





-
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: Calling MS SQL stored procedure

2002-02-20 Thread Christian Haul

On 20.Feb.2002 -- 10:45 AM, Miller, Grant wrote:
> Hi,
> I'm having a problem calling an ms sql server stored procedure with the sql
> transformer (using cocoon 2.0.1 and tomcat 4).
> The code is:
> 
> 
>
>   begin dbo.testformike('hi');
>   end;
>
> 
> 
> The error message is:
> 
> Invalid call syntax: begin dbo.testformike('hi'); end;

Never used any of the above, but you might want to consider the JDBC
escape syntax

   {?= call [,, ...]}
   {call [,, ...]}

Maybe that'll make your driver happier

Chris.

-- 
C h r i s t i a n   H a u l
[EMAIL PROTECTED]
fingerprint: 99B0 1D9D 7919 644A 4837  7D73 FEF9 6856 335A 9E08

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




404 Question

2002-02-20 Thread Anthony Diodato

Im using Cocoon 1.8.2 & Tomcat 3.2.4

When I try access an XML file that doesn't exist, I get a SaxParseException
Below is my error message.
How can I redirect this to a 404 page that I've created??
This would be very helpful for my website.

Error found handling the request.
org.xml.sax.SAXParseException: File
"file:C:/jakarta-tomcat-3.2.4/webapps/cocoon/foo.xml" not found.
at
org.apache.cocoon.parser.AbstractParser.fatalError(AbstractParser.java:105)
at
org.apache.xerces.framework.XMLParser.reportError(XMLParser.java:1037)
at
org.apache.xerces.readers.DefaultEntityHandler.startReadingFromDocument(Defa
ultEntityHandler.java:512)
at
org.apache.xerces.framework.XMLParser.parseSomeSetup(XMLParser.java:304)
at
org.apache.xerces.framework.XMLParser.parse(XMLParser.java:899)
at
org.apache.cocoon.parser.XercesParser.parse(XercesParser.java:85)
at
org.apache.cocoon.parser.AbstractParser.parse(AbstractParser.java:83)
at
org.apache.cocoon.producer.ProducerFromFile.getDocument(ProducerFromFile.jav
a:78)
at org.apache.cocoon.Engine.handle(Engine.java:359)
at org.apache.cocoon.Cocoon.service(Cocoon.java:183)
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:80
6)
at
org.apache.tomcat.core.ContextManager.service(ContextManager.java:752)
at
org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection
(Ajp12ConnectionHandler.java:166)
at
org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
at
org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
at java.lang.Thread.run(Thread.java:484)

Any suggestions would be greatly appreciated.
Thanks in advance
Tony


Anthony Diodato
Webmaster - IT
Prophet 21, Inc.
19 West College Avenue
Yardley, PA 19067
1-800-776-7438, ext. 4600
Fax: 215-321-8014 
[EMAIL PROTECTED]
http://www.p21.com/
Prophet 21 -- Powering the Distribution Industry for the Digital Age 

For the latest press releases from Prophet 21 --
http://www.p21.com/press/press.html 
*   2/12/2001 - Trading Partner Connect Offers Enterprise-to-Enterprise
(E2E) Commerce 
*   2/9/2001 -- Prophet 21 CommerceCenter 8.0 is Now Available
*   2/9/2001 -- Prophet 21 Upgrades and Enhances Prophet 21 Acclaim
For the latest articles on Prophet 21
http://www.manufacturing.net/magazine/id/archives/2001/ind010.02/techupdate.
htm 
http://www.manufacturing.net/magazine/id/develop/techmain01.1.htm 
http://www.manufacturing.net/magazine/id/archives/2000/ind1201/news.htm




Visit our website at http://www.p21.com/visit 
The information in this e-mail is confidential and may contain legally
privileged information.  It is intended solely for the person or entity to
which it is addressed.  Access to this e-mail by anyone else is
unauthorized. If you are not the intended recipient, any disclosure,
copying, distribution, action taken, or action omitted to be taken in
reliance on it, is prohibited and may be unlawful.  If you received this
e-mail in error, please contact the sender and delete the material from any
computer. 



-
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 Portal: Great!

2002-02-20 Thread Brian Blakeley

Hi Matthew,

Your assessment was bang on!

Your work looks even more impressive when served from my server!

Thanks again.

Brian


- Original Message - 
From: "Matthew Langham" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, February 20, 2002 3:10 AM
Subject: RE: Cocoon Portal: Great!


Brian,

looks like something went wrong when you checked the stuff out of CVS
(therefore the missing files).

Matthew

--
Open Source Group   sunShine - Lighting up e:Business
=
Matthew Langham, S&N AG, Klingenderstrasse 5, D-33100 Paderborn
Tel:+49-5251-1581-30 [EMAIL PROTECTED] - http://www.s-und-n.de
   Weblogging at: http://www.need-a-cake.com
=




-Original Message-
From: Brian Blakeley [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 19, 2002 8:44 PM
To: [EMAIL PROTECTED]
Subject: Re: Cocoon Portal: Great!


Hi all,

This is likely an easy question so here it is:

I have obtained and built cocoon2 from the cvs and it loads and operates as
expected with this one issue. When I select the Portal & Authorization link
to get to the sunspotdemo I receive a file not found 404 message back from
Apache Tomcat/4.01.

So I looked in the my COCOON_HOME and noticed that there is no sitemap.xmap
in the sunspotdemo directory only four directories images/ profiles/
resources/ and styles/ with no other files.

The build command I used was:

./build.sh -Dinclude.webapps.libs=yes -Dinclude.scratchpad.libs=yes
webapp

Anyone see what I missed?

Thanks for any and all assistance.

Brian



-
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: writing xml to file

2002-02-20 Thread Automatic



Thank you very much to respond me : )

Did you made changes in your "xmap" or "xconf" files ?

Could you check the existence  of cocoon/WEB-INF/classes/org/apache/xalan/xslt/extensions
 directory ?
The XSLT/EXTENSIONS part don't match in my system.

I just want to write a single sentence in a text file to start.

Could you tell me wich Xalan version you use, mine is perhaps differente
(xalan-2.2.0-D13.jar) ?



Xavier




Ferran Urgell wrote:
[EMAIL PROTECTED]">
  
  
  Ok, I don't know what is ... but 
here you have a piece of my xsl file, with the xsl, I'm  writing into file
on hard disk...
  Please send me the xml...and more details
 
   
  
"http://www.w3.org/1999/XSL/Transform"
   xmlns:sql="http://apache.org/cocoon/SQL/2.0"
  xmlns:redirect="org.apache.xalan.xslt.extensions.Redirect"
  extension-element-prefixes="redirect">




  1.01



text=LABORATORIS





   
  

   
  Regards...
  Ferran Urgell 
  

- Original Message - 

From:
Jevous site


To:
[EMAIL PROTECTED]


Sent: Wednesday, February 20, 2002 4:37PM

Subject: Re: writing xml to file


Hello,

I'm new to cocoon

I want to write an xmlfile on hard disk. So I've tried what you said.
It didn't run.
I havemodify your piece of  XSL to fit my configuration because, i've
found aRedirect class in Xalan.jar with a different path. It still don't
   run.

Could you say me what i have forgot, please.

Thank you :Xavier




"http://www.w3.org/1999/XSL/Transform"
version="1.0"
           xmlns:redirect="org.apache.xalan.lib.redirect"extension-element-prefixes="redirect">




 Here putthe xsl sentenceslike applytemplates.





Ferran Urgellwrote:
[EMAIL PROTECTED]" type="cite">
  In the xsl you can try something like:xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  xmlns:sql="http://apache.org/cocoon/SQL/2.0" xmlns:redirect="org.apache.xalan.xslt.extensions.Redirect" extension-element-prefixes="redirect">  < Here put the xsl sentenceslike apply templates.>- Original Message -From: "Bert Van Kets" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>Sent: Thursday, February 14, 2002 10:54 AMSubject: writing xml to file
  
I have built a system where I can edit the content of an xml file in abrowser by using html forms.  Comparing the request object with theoriginal XML (by use of ID's and aggregation) lets me contruct the updatedxml file with the original structure.I would like to write this file to disk, well actually overwrite theoriginal xml file.How do I go about this in Cocoon?Thanks,Bert-Please check that your question has not already been answered in theFAQ 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 theFAQ 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:For additional commands,
e-mail:






-
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 setup error

2002-02-20 Thread gfitzz

My server is Win2K Server using IIS.  I installed JDK 1.3.1_02, Tomcat 4.0.2
and Cocoon.  When I try to access cocoon I get the following error:

java.lang.NoClassDefFoundError: javax/xml/transform/URIResolver

I set this up identically on a Win2K Pro machine and it works fine.

What is wrong?

Gary Fitzgerald
41 Arlington Street
Everett, MA 02149
617-387-3926
[EMAIL PROTECTED]
www.totalinclusion.org



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




COCOON2 INSTALLATION PROBLEM

2002-02-20 Thread Stefano Bonnin

I have just installed tomcat 4.0.2 and Cocoon 2.0.1.

Steps:
* download the file
* copy cocoon.war under webapps ...
* restart Tomcat


Tomcat works correctly but when I try to use Cocoon I get the following
error:

Apache Tomcat/4.0.2 - HTTP Status 500 - Internal Server Error




type Exception report

message Internal Server Error

description The server encountered an internal error (Internal Server Error)
that prevented it from fulfilling this request.

exception

javax.servlet.ServletException: Servlet.init() for servlet Cocoon2 threw
exception
 at
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:93
5)
 at
org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:214)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:190)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
 at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
java:170)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170
)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:174)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:
1012)
 at
org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1107
)
 at java.lang.Thread.run(Thread.java:484)


root cause

java.lang.NoClassDefFoundError: javax/xml/transform/URIResolver
 at java.lang.ClassLoader.defineClass0(Native Method)
 at java.lang.ClassLoader.defineClass(ClassLoader.java:493)
 at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:111)
 at
org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLo
ader.java:1631)
 at
org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.jav
a:926)
 at
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.jav
a:1360)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:292)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
 at
org.apache.avalon.excalibur.component.ExcaliburComponentManager.configure(Ex
caliburComponentManager.java:408)
 at org.apache.cocoon.Cocoon.configure(Cocoon.java:406)
 at org.apache.cocoon.Cocoon.initialize(Cocoon.java:267)
 at
org.apache.cocoon.servlet.CocoonServlet.createCocoon(CocoonServlet.java:991)
 at org.apache.cocoon.servlet.CocoonServlet.init(CocoonServlet.java:308)
 at
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:91
6)
 at
org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:214)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:190)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
 at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.

Re: Cocoon 2.0.1 problem

2002-02-20 Thread Brian Blakeley

Have you read the replies to your earlier email?


- Original Message -
From: "Stefano Bonnin" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, February 20, 2002 5:30 AM
Subject: Cocoon 2.0.1 problem


> Hi,
>
> I tried to install Tomcat 4.0.2 + Cocoon 2.0.1 on a Windows 98 PC (only
for
> a test).
>
> Tomcat works well.
>
> After Tomcat, I installed Cocoon 2.0.1:
>
> I downloaded the file
> I copied cocoon.war under webapps ...
> I restart Tomcat
>
> (I have done only these steps)
>
> ... after this when I try to connect at
>
> http://ipaddress:8080/cocoon I get the following error:
>
>
>
>
> Apache Tomcat/4.0.2 - HTTP Status 500 - Internal Server Error
>
> --
--
> 
>
> type Exception report
>
> message Internal Server Error
>
> description The server encountered an internal error (Internal Server
Error)
> that prevented it from fulfilling this request.
>
> exception
>
> javax.servlet.ServletException: Servlet.init() for servlet Cocoon2 threw
> exception
>  at
>
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:93
> 5)
>  at
>
org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
>  at
>
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> va:214)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
>  at
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>  at
>
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
> va:190)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
>  at
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>  at
> org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
>  at
>
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
> )
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
>  at
>
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
> java:170)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 64)
>  at
>
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170
> )
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 64)
>  at
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 64)
>  at
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>  at
>
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
> :174)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
>  at
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>  at
>
org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:
> 1012)
>  at
>
org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1107
> )
>  at java.lang.Thread.run(Thread.java:484)
>
>
> root cause
>
> java.lang.NoClassDefFoundError: javax/xml/transform/URIResolver
>  at java.lang.ClassLoader.defineClass0(Native Method)
>  at java.lang.ClassLoader.defineClass(ClassLoader.java:493)
>  at
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:111)
>  at
>
org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLo
> ader.java:1631)
>  at
>
org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.jav
> a:926)
>  at
>
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.jav
> a:1360)
>  at java.lang.ClassLoader.loadClass(ClassLoader.java:292)
>  at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
>  at
>
org.apache.avalon.excalibur.component.ExcaliburComponentManager.configure(Ex
> caliburComponentManager.java:408)
>  at org.apache.cocoon.Cocoon.configure(Cocoon.java:406)
>  at org.apache.cocoon.Cocoon.initialize(Cocoon.java:267)
>  at
>
org.apache.cocoon.servlet.CocoonServlet.createCocoon(CocoonServlet.java:991)
>  at org.apache.cocoon.servlet.CocoonServlet.init(CocoonServlet.java:308)
>  at
>
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:91
> 6)
>  at
>
org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
>  at
>
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> va:214)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
>  at
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472

Re: howto make use of default database add, delete, update action for mutilple table at a time

2002-02-20 Thread Christian Haul

On 20.Feb.2002 -- 03:49 PM, marco wrote:
> I have a user input form and which is used to add/update/delete records in
> serveral tables. I found a sample that came with cocoon, but it is simple
> example that only one table is handled at a time.
> 
> How can I make use the default DatabaseAddAction, DatabaseUpdateAction,
> DatabaseDeleteAction to manipulate the data of mutiple tables at a time.

Easy: just add another table to the descriptor file. The action will
attempt to insert data in all tables listed. Of cause, if it's not
feeded enough data it will rollback the complete transaction.

You may not use autoincrement columns with the default database
actions if you need the column's value lateron. You may use the manual
mode for autoincrement columns but that could have concurrency issues
depending on your database setup.

In scratchpad you'll find actions that don't have these
limitations. While the descriptor file syntax will not change (being
different from descriptor file for main trunk db actions!), the
actions (including their name and how to employ the helpers) will
change shortly.

Chris.

-- 
C h r i s t i a n   H a u l
[EMAIL PROTECTED]
fingerprint: 99B0 1D9D 7919 644A 4837  7D73 FEF9 6856 335A 9E08

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




Tweaking the HTML serializer

2002-02-20 Thread Steven Sedlmeyer

I'm just starting with cocoon and I have a couple of questions I'm having a
hard time finding answers for:

1.  I have an existing XML and XSLT file that, when run through xalan
produce an HTML page wrapper.  However, when I use them with cocoon the
resulting HTML gets munged on the way out and there are s inserted
between the end of the content and closing table cell and table row tags.
Unfortunately, while this is correct HTML, it screws up the formatting under
IE and Netscape 4.x as both fail to ignore the whitespace.  Is there a way
to tweak how cocoon (I assume using JTidy) is "fixing" the HTML?  I was
unable to identify where  the modifications are happening (ignorance sucks).


2.  The HTML above is a static wrapper that goes around the results of a
database query.  I'd like to be able to include the HTML resulting from the
query into the resulting page, formatting it using an xslt, without having
to regenerate the wrapper each time.  How would I go about configuring a
pipeline that will accomplish something like that?

Thanks in advance.

Steve Sedlmeyer
[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]>




X Server problem solved with Java 1.4 ?

2002-02-20 Thread Christophe de Kerviler

Hello,

I'm running C2 on Tomcat3.3 with Java1.4 under Solaris 7.
I was told the X Server problem would be solved with Java1.4 but I still
have the same problem : C2 doesn't work (http://myserver/cocoon/ doesn't 
reply) if I am not logged on the server
(I start tomcat in a telnet session).
If I log on the server and restart tomcat, it's ok.
Thanks for any help.
Christophe


-
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 2.0.1 problem

2002-02-20 Thread Stefano Bonnin

Hi,

I tried to install Tomcat 4.0.2 + Cocoon 2.0.1 on a Windows 98 PC (only for
a test).

Tomcat works well.

After Tomcat, I installed Cocoon 2.0.1:

I downloaded the file
I copied cocoon.war under webapps ...
I restart Tomcat

(I have done only these steps)

... after this when I try to connect at

http://ipaddress:8080/cocoon I get the following error:




Apache Tomcat/4.0.2 - HTTP Status 500 - Internal Server Error




type Exception report

message Internal Server Error

description The server encountered an internal error (Internal Server Error)
that prevented it from fulfilling this request.

exception

javax.servlet.ServletException: Servlet.init() for servlet Cocoon2 threw
exception
 at
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:93
5)
 at
org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:214)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:190)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
 at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
java:170)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170
)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:174)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:
1012)
 at
org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1107
)
 at java.lang.Thread.run(Thread.java:484)


root cause

java.lang.NoClassDefFoundError: javax/xml/transform/URIResolver
 at java.lang.ClassLoader.defineClass0(Native Method)
 at java.lang.ClassLoader.defineClass(ClassLoader.java:493)
 at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:111)
 at
org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLo
ader.java:1631)
 at
org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.jav
a:926)
 at
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.jav
a:1360)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:292)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
 at
org.apache.avalon.excalibur.component.ExcaliburComponentManager.configure(Ex
caliburComponentManager.java:408)
 at org.apache.cocoon.Cocoon.configure(Cocoon.java:406)
 at org.apache.cocoon.Cocoon.initialize(Cocoon.java:267)
 at
org.apache.cocoon.servlet.CocoonServlet.createCocoon(CocoonServlet.java:991)
 at org.apache.cocoon.servlet.CocoonServlet.init(CocoonServlet.java:308)
 at
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:91
6)
 at
org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:214)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:190)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
 at
org.ap

Uninterruptable Sleep

2002-02-20 Thread Colin Hall

Hi all,
We currently are running four sites under the same cocoon instance and for
the most part things are going well.

There is one serious re-occuring problem however...One or more java threads
will go into an Uninterruptable Sleep.  This results in the sites being
crippled to the point that NOTHING is being served.  I have observed the
dead threads coming back to life as well as staying dead until I have to
kill the java process and restart the server.

Needless to say, this is causing us a great deal of anxiety.
Has anyone else seen this type of behaviour?  Does anyone know how to deal
with it?

Setup:
dual PIII with 512 SDRAM
Linux (RH6.1) (2.2.12-20 kernel)
Tomcat 3.2.3
cocoon2.0.1

Any help is greatly appreciated.

---
Colin Hall
The Level
www.thelevel.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: Having a function in a XSP.

2002-02-20 Thread Mauricio Souza Lima

Ed Jenkins wrote:

> 
> 
>  > Can I create an inner class with methods inside a XSP?
> 
> Don't think so. All XSP code goes in the resulting Generator's generate()
> method. What you should do IMHO is to use helper classes.


All xsp:logic tags before the main tag (the first tag after xsp:page, 
like ), are put before de generate() method, so, i think you can 
do it.
But if you want to work with some custom classes inside the xsp, i think 
that a better pratice, is to create the class outside the xsp page, put 
it in the WEB-INF/lib on a jar file and them import it inside the xsp page.

> 
> For more information on taglibs, I suggest you to look at the cocoon 
> builtin
> taglibs in the sourcecode.
> 
> -- 
> Nicola Ken Barozzi [EMAIL PROTECTED]
> - verba volant, scripta manent -
>(discussions get forgotten, just code remains)
> -
> 
Regards...

Mauricio Souza Lima
Rational Consulting
[EMAIL PROTECTED]
Rua Helena, 140 / cj. 82
São Paulo - SP - Brazil
Fone / Direct: +55 11 3842-7138


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




Problems with FOP 0.20.3rc and Cocoon2

2002-02-20 Thread Breiter, Andreas

Hi,

the current version 0.20.3rc of FOP (which is used by Cocoon2) seems to have
some problems. It's not even possible to transform its own glossary-example
(docs/examples/markers) correctly. I think that's why I have some trouble
with fo2pdf in Cocoon:

fop -xml docs\examples\markers\glossary.xml -xsl
docs\examples\markers\glossary.xsl -pdf x.pdf
java -cp
build\fop.jar;lib\batik.jar;lib\xalan-2.0.0.jar;lib\xerces-1.2.3.jar;lib\ava
lon-framework-4.0.jar;lib\logkit-1.0b4.jar;lib\jimi-1.0.jar
org.apache.fop.apps.Fop -xml docs\examples\markers\glossary.xml -xsl
docs\examples\markers\glossary.xsl -pdf x.pdf

[INFO]: FOP 0.20.3rc
[INFO]: building formatting object tree
[INFO]: [1]
[INFO]: Parsing of document complete, stopping renderer
javax.xml.transform.TransformerException
at
org.apache.xalan.transformer.TransformerImpl.transformNode(TransformerImpl.j
ava:1212)
at
org.apache.xalan.transformer.TransformerImpl.run(TransformerImpl.java:2894)
at java.lang.Thread.run(Thread.java:484)
-
java.lang.NullPointerException
at org.apache.fop.fo.FObjMixed.addCharacters(FObjMixed.java:47)
at
org.apache.fop.fo.FOTreeBuilder.characters(FOTreeBuilder.java:166)
at
org.apache.xalan.transformer.ResultTreeHandler.characters(ResultTreeHandler.
java:446)
at
org.apache.xalan.stree.TextImpl.dispatchCharactersEvent(TextImpl.java:157)
at
org.apache.xalan.stree.Parent.dispatchCharactersEvent(Parent.java:466)
at
org.apache.xalan.templates.ElemValueOf.execute(ElemValueOf.java:279)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2154)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2097)
at
org.apache.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java:
739)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2154)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2097)
at
org.apache.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java:
739)
at
org.apache.xalan.templates.ElemForEach.transformSelectedNodes(ElemForEach.ja
va:495)
at
org.apache.xalan.templates.ElemApplyTemplates.execute(ElemApplyTemplates.jav
a:193)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2154)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2097)
at
org.apache.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java:
739)
at
org.apache.xalan.templates.ElemForEach.transformSelectedNodes(ElemForEach.ja
va:495)
at
org.apache.xalan.templates.ElemApplyTemplates.execute(ElemApplyTemplates.jav
a:193)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2154)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2097)
at
org.apache.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java:
739)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2154)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2097)
at
org.apache.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java:
739)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2154)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2097)
at
org.apache.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java:
739)
at
org.apache.xalan.templates.ElemForEach.transformSelectedNodes(ElemForEach.ja
va:495)
at
org.apache.xalan.templates.ElemApplyTemplates.execute(ElemApplyTemplates.jav
a:193)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2154)
at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
erImpl.java:2097)
at
org.apache.xalan.transformer.TransformerImpl.applyTemplateToNode(Transformer
Impl.java:2029)
at
org.apache.xalan.transformer.TransformerImpl.transformNode(TransformerImpl.j
ava:1189)
at
org.apache.xalan.transformer.TransformerImpl.run(TransformerImpl.java:2894)
at java.lang.Thread.run(Thread.java:484)
[ERROR]: null

First I used the binary release, but compiling the sources on my own didn't
change anything.

Hope someone has any idea how to fix this ...

Andreas

P.S.: I'm using JDK 1.3.0 on Windows NT 4/SP5

Andreas Breiter
T-Systems GEI mbH
Flughafensysteme
Hausanschrift: Pascalstraße 8, 52076 Aachen
Postanschrift: Postfach 500 144, 52085 Aachen
Telefon: +49 (2408) 943-1114
Telefax: +49 (2408) 943-1430
E-Mail: mailto:[EMAIL PROTECTED]
Internet: http://www.t-systems.de



--

Re: Stuck setting up Cocoon 2.0.1 with Tomcat 4.0.2

2002-02-20 Thread Peter Flynn

Marcelo F. Ochoa wrote:

[blah]
> >message: error: Invalid class file format in
> >/usr/java/j2sdk1.4.0/jre/lib/rt.jar(java/io/IOException.class). The
> >major.minor version '48.0' is too recent for this tool to understand.
> >
> >What is "this tool"? Cocoon? Java1.4.0? Tomcat4.0.1?

>   Humm, seem to be a problem of jdk1.4.0, replace cocoon and tomcat's 
> tools.jar by the jdk1.4.0 version of this jar.

But neither cocoon nor tomcat has any tools.jar file!

# cd cocoon-2.0.1
# find . -name 'tools*'
./tools
# find /var/tomcat4 -name 'tools*'
#

These are both full, fresh distros downloaded the other day.

Should I be looking for a hidden file or a file called something other
than tools.jar?

I can copy Sun's jdk tools.jar but that seems a little pointless as
it's presumably the one being used anyway.

///Peter

-
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: writing xml to file

2002-02-20 Thread Ferran Urgell



Ok, I don't know what is ... but here you have a piece of my xsl file, with the xsl, I'm 
writing into file on hard disk...
Please send me the xml...and more details 

 
  
xmlns:sql="http://apache.org/cocoon/SQL/2.0" 
xmlns:redirect="org.apache.xalan.xslt.extensions.Redirect" 
extension-element-prefixes="redirect"> 
1.01text=LABORATORIS
 

 
Regards...
Ferran Urgell 

  - Original Message - 
  From: 
  Je 
  vous site 
  To: [EMAIL PROTECTED] 
  Sent: Wednesday, February 20, 2002 4:37 
  PM
  Subject: Re: writing xml to file
  Hello,I'm new to cocoonI want to write an xml 
  file on hard disk. So I've tried what you said. It didn't run.I have 
  modify your piece of  XSL to fit my configuration because, i've found a 
  Redirect class in Xalan.jar with a different path. It still don't 
  run.Could you say me what i have forgot, please.Thank you : 
  Xavier"http://www.w3.org/1999/XSL/Transform" 
  version="1.0"            
  xmlns:redirect="org.apache.xalan.lib.redirect" 
  extension-element-prefixes="redirect"> Here put 
  the xsl sentenceslike apply 
  templates.Ferran Urgell 
  wrote:
  [EMAIL PROTECTED]" type="cite">In the xsl you can try something like:xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  xmlns:sql="http://apache.org/cocoon/SQL/2.0" xmlns:redirect="org.apache.xalan.xslt.extensions.Redirect" extension-element-prefixes="redirect">  < Here put the xsl sentenceslike apply templates.>- Original Message -From: "Bert Van Kets" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>Sent: Thursday, February 14, 2002 10:54 AMSubject: writing xml to file
I have built a system where I can edit the content of an xml file in abrowser by using html forms.  Comparing the request object with theoriginal XML (by use of ID's and aggregation) lets me contruct the updatedxml file with the original structure.I would like to write this file to disk, well actually overwrite theoriginal xml file.How do I go about this in Cocoon?Thanks,Bert-Please check that your question has not already been answered in theFAQ 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 theFAQ 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: Having a function in a XSP.

2002-02-20 Thread Ed Jenkins

You can have functions in XSP.
Just put them in a CDATA section, in a logic tag, between include and page.

Ed


java.util.*







---

From: "Nicola Ken Barozzi" <[EMAIL PROTECTED]>
Reply-To: "Nicola Ken Barozzi" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: Re: Having a function in a XSP.
Date: Tue, 19 Feb 2002 09:11:06 +0100

From: "Olivier Rossel" <[EMAIL PROTECTED]>

 > Supposing I repeat the same XSP fragment several times in my XSP page.
 > And I wish to "factorize" that with a function which receives
 > parameters,  and
 > is a kind of "XSP" fragment.
 > Is it possible?

Taglibs have this role, to become libraries of commonly used xsp fragments.
But they are not functions, they behave similarly to macros AFAIK.

Taglibs are basically stylesheets that are applied to your XSP before it
gets compiled. This means that you cannot use taglibs as functions that
recieve live data; you can call taglibs only with predefined parameters. A
common way is to use attributes.

What can be done, is passing code fragments, so that the taglib uses those
to get live data.
I think that call-template can help you in calling taglibs with parameters.

A simple way of doing taglibs is to transform your xsp with your taglib
using Xalan and checking that the resulting file is the xsp that you want;
it's the xsp that gets compiled.

 > Can I create an inner class with methods inside a XSP?

Don't think so. All XSP code goes in the resulting Generator's generate()
method. What you should do IMHO is to use helper classes.

For more information on taglibs, I suggest you to look at the cocoon builtin
taglibs in the sourcecode.

--
Nicola Ken Barozzi [EMAIL PROTECTED]
 - verba volant, scripta manent -
(discussions get forgotten, just code remains)
-


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


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.


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




Css stylesheet problem

2002-02-20 Thread Je vous site

Hello,

I would like to apply a Css stylesheet to the HTML file i have generated 
on Cocoon.
Is there a solution to this problem, without changing my configuration 
(Tomcat 4.0.1 / Cocoon 2 under W2k)


http://www.w3.org/1999/XSL/Transform"; 
version="1.0" >


  
  

  
...

Thank you for all kind of help : Xavier


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




[C1] New version of Xerces

2002-02-20 Thread Aleksey Globets

Hi,

I'm trying to install a newer version of Xerces. I have two systems:

(1)FreeBSD 4.4
JDK 1.1.8
Tomcat 3.2.3
Cocoon 1.8.2

(2)Red Hat Linux 6.2
JDK 1.3
Tomcat 3.2.2
Cocoon 1.8.2

All versions of Xerces are compiled from sources. On the first system I
can't start it normally. After I change old 1.2.0 JAR to new, I receive an
error after restarting of the Tomcat:

java.lang.IncompatibleClassChangeError: Unimplemented interface method
 at
org.apache.xalan.xslt.XSLTEngineImpl.processStylesheet(XSLTEngineImpl.java:7
10)
 at org.apache.xalan.xslt.XSLTEngineImpl.process(XSLTEngineImpl.java:572)
 at
org.apache.cocoon.transformer.XalanTransformer.transform(XalanTransformer.ja
va:107)
 at
org.apache.cocoon.processor.xslt.XSLTProcessor.process(XSLTProcessor.java:11
6)
 at org.apache.cocoon.Engine.handle(Engine.java:384)
 at org.apache.cocoon.Cocoon.service(Cocoon.java:183)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
 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.connector.Ajp13ConnectionHandler.processConnection
(Ajp13ConnectionHandler.java:160)
 at
org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
 at
org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
 at java.lang.Thread.run(Thread.java)

And I receive another error after refreshing of a page:

java.lang.NoClassDefFoundError: org/apache/xalan/xslt/StylesheetRoot
 at
org.apache.xalan.xslt.XSLTEngineImpl.processStylesheet(XSLTEngineImpl.java:7
10)
 at org.apache.xalan.xslt.XSLTEngineImpl.process(XSLTEngineImpl.java:572)
 at
org.apache.cocoon.transformer.XalanTransformer.transform(XalanTransformer.ja
va:107)
 at
org.apache.cocoon.processor.xslt.XSLTProcessor.process(XSLTProcessor.java:11
6)
 at org.apache.cocoon.Engine.handle(Engine.java:384)
 at org.apache.cocoon.Cocoon.service(Cocoon.java:183)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
 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.connector.Ajp13ConnectionHandler.processConnection
(Ajp13ConnectionHandler.java:160)
 at
org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
 at
org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
 at java.lang.Thread.run(Thread.java)

On the second system I haven't such problems.

Help!!!

Thanks,

Alex



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




Calling MS SQL stored procedure

2002-02-20 Thread Miller, Grant

Hi,
I'm having a problem calling an ms sql server stored procedure with the sql
transformer (using cocoon 2.0.1 and tomcat 4).
The code is:


   
  begin dbo.testformike('hi');
  end;
   


The error message is:

Invalid call syntax: begin dbo.testformike('hi'); end;

I always get this with isstoredprocedure="true". 
Also, I'm not sure what the qualifier before the function name should be
(dbo is the owner in this example).
Another thing we have tried is:

This query:


  exec DBO.TESTFORMIKE 'hi'



but this gives:

A server cursor is not allowed on a remote stored procedure or stored
procedure with more than one SELECT statement. Use a default result set or
client cursor

We are completely stuck and do not want to use esql.
Thanks for any help,

Grant Miller


This message may contain privileged and/or confidential information.  If you
have received this e-mail in error or are not the intended recipient, you
may not use, copy, disseminate or distribute it; do not open any
attachments, delete it immediately from your system and notify the sender
promptly by e-mail that you have done so.  Thank you.

-
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: Stuck setting up Cocoon 2.0.1 with Tomcat 4.0.2

2002-02-20 Thread Marcelo F. Ochoa

Peter Flynn wrote:

>Marcelo F. Ochoa wrote:
>
>>>Dirk Louwers
>>>
>>  Copy  xml-apis.jar, xalan.jar and batik.jar from Cocoon Home lib 
>>directory to Tomcat Home common/lib directory.
>>
>
>./tools/lib/xml-apis.jar OK
>No such file as xalan.jar, should I use ./tools/lib/xalan-2.2.0.jar
>No such file as batik.jar, should I use ./lib/optional/batik-libs-1.1.1.jar
>
>Aha! Yes! Restarting Apache *and* tomcat suddenly causes the .war
>file to be unwrapped. Excellent. This needs to be documented.
>
>But now http://localhost:8180/cocoon at least produces something,
>although it's the error message Cocoon 2 - Internal server error:
>
>type fatal
>
>message Language Exception
>
>description org.apache.cocoon.ProcessingException: Language Exception:
>org.apache.cocoon.components.language.LanguageException: Error
>compiling sitemap_xmap: Line 0, column 0: could not parse error
>message: error: Invalid class file format in
>/usr/java/j2sdk1.4.0/jre/lib/rt.jar(java/io/OutputStream.class). The
>major.minor version '48.0' is too recent for this tool to
>understand. 
>/var/tomcat4/work/localhost/cocoon/cocoon-files/org/apache/cocoon/www/sitemap_xmap.java:12:
>Class java.io.OutputStream not found in import. import
>java.io.OutputStream; ^ Line 0, column 0: could not parse error
>message: error: Invalid class file format in
>/usr/java/j2sdk1.4.0/jre/lib/rt.jar(java/io/IOException.class). The
>major.minor version '48.0' is too recent for this tool to understand.
>
>What is "this tool"? Cocoon? Java1.4.0? Tomcat4.0.1?
>
>///Peter
>
  Humm, seem to be a problem of jdk1.4.0, replace cocoon and tomcat's 
tools.jar by the jdk1.4.0 version of this jar.
  Best regards, Marcelo.

PD: I have working Cocoon 2.0.0-final with jdk1.3.1 and Tomcat 4.0.2
look at http://www.dbprism.com.ar/dbprism/welcome

-- 
Marcelo F. Ochoa - [EMAIL PROTECTED]
Do you Know DB Prism? Look @ http://www.plenix.com/dbprism/
More info?
Chapter 21 of the book "Professional XML Databases" (Wrox Press 
http://www.wrox.com/)
Chapter 8 of the book "Oracle & Open Source" (O'Reilly 
http://www.oreilly.com/catalog/oracleopen/)
---
Lab. de Sistemas - Fac. de Cs. Exactas - UNICEN
Paraje Arroyo Seco - Campus Universitario
(7000) Tandil - Bs. AS. - Argentina
Te: +54-2293-30 Fax: +54-2293-31




-
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: COCOON2 Installation Problem

2002-02-20 Thread Marcelo F. Ochoa

Stefano Bonnin wrote:

>I have just installed tomcat 4.0.2 and Cocoon 2.0.1.
>
>Steps:
>* download the file
>* copy cocoon.war under webapps ...
>* restart Tomcat
>
>
>Tomcat works correctly but when I try to use Cocoon I get the following
>error:
>
>Apache Tomcat/4.0.2 - HTTP Status 500 - Internal Server Error
>
  Look for the thread "Stuck setting up Cocoon 2.0.1 with tomcat 4.0.2
  Best regards, Marcelo.

-- 
Marcelo F. Ochoa - [EMAIL PROTECTED]
Do you Know DB Prism? Look @ http://www.plenix.com/dbprism/
More info?
Chapter 21 of the book "Professional XML Databases" (Wrox Press 
http://www.wrox.com/)
Chapter 8 of the book "Oracle & Open Source" (O'Reilly 
http://www.oreilly.com/catalog/oracleopen/)
---
Lab. de Sistemas - Fac. de Cs. Exactas - UNICEN
Paraje Arroyo Seco - Campus Universitario
(7000) Tandil - Bs. AS. - Argentina
Te: +54-2293-30 Fax: +54-2293-31




-
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: writing xml to file

2002-02-20 Thread Je vous site



Hello,

I'm new to cocoon

I want to write an xml file on hard disk. So I've tried what you said. It
didn't run.
I have modify your piece of  XSL to fit my configuration because, i've found
a Redirect class in Xalan.jar with a different path. It still don't run.

Could you say me what i have forgot, please.

Thank you : Xavier



"http://www.w3.org/1999/XSL/Transform" version="1.0"
            xmlns:redirect="org.apache.xalan.lib.redirect" extension-element-prefixes="redirect">




 Here put the xsl sentenceslike apply templates.





Ferran Urgell wrote:
[EMAIL PROTECTED]">
  In the xsl you can try something like:xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  xmlns:sql="http://apache.org/cocoon/SQL/2.0" xmlns:redirect="org.apache.xalan.xslt.extensions.Redirect" extension-element-prefixes="redirect">  < Here put the xsl sentenceslike apply templates.>- Original Message -From: "Bert Van Kets" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>Sent: Thursday, February 14, 2002 10:54 AMSubject: writing xml to file
  
I have built a system where I can edit the content of an xml file in abrowser by using html forms.  Comparing the request object with theoriginal XML (by use of ID's and aggregation) lets me contruct the updatedxml file with the original structure.I would like to write this file to disk, well actually overwrite theoriginal xml file.How do I go about this in Cocoon?Thanks,Bert-Please check that your question has not already been answered in theFAQ 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 theFAQ 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]>



Best way to debug xsl for cocoon?

2002-02-20 Thread Stephen Clarke


Hi,

Thanks to this list, I now have the following DOS batch file for running my
XML/XSL from the command line in win2k.

set C2_HOME=c:\tomcat40\webapps\cocoon
set
CLASSPATH=%CLASSPATH%;%C2_HOME%\WEB-INF\lib\xalan-2.2.0-D13.jar;%C2_HOME%\WE
B-INF\lib\xerces-1.4.4.jar:%C2_HOME%\WEB-INF\lib\xml-apis.jar
java org.apache.xalan.xslt.Process -IN %1 -XSL %2 -OUT %3

When I do, I get error XSL:sort on line 152 of
file:/c:/Tomcat40/webapps/cocoon/resume/resume.xsl:
 Attribute test is not allowed on this element.

But when I run it in cocoon, it works fine.

On another one, I get no error, but it fails to run in cocoon.

What's the best way to debug XML/XSL in cocoon?

grateful for any ideas.

--
Best,
Stephen Clarke


-
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: COCOON2 Installation Problem

2002-02-20 Thread Brian Blakeley

Stefano,

There seems to be difficulties with Tomcat 4.02 - You might want to try
4.01.

Brian

- Original Message -
From: "Stefano Bonnin" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, February 20, 2002 9:36 AM
Subject: COCOON2 Installation Problem


> I have just installed tomcat 4.0.2 and Cocoon 2.0.1.
>
> Steps:
> * download the file
> * copy cocoon.war under webapps ...
> * restart Tomcat
>
>
> Tomcat works correctly but when I try to use Cocoon I get the following
> error:
>
> Apache Tomcat/4.0.2 - HTTP Status 500 - Internal Server Error
>
> --
--
> 
>
> type Exception report
>
> message Internal Server Error
>
> description The server encountered an internal error (Internal Server
Error)
> that prevented it from fulfilling this request.
>
> exception
>
> javax.servlet.ServletException: Servlet.init() for servlet Cocoon2 threw
> exception
>  at
>
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:93
> 5)
>  at
>
org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
>  at
>
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> va:214)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
>  at
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>  at
>
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
> va:190)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
>  at
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>  at
> org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
>  at
>
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
> )
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
>  at
>
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
> java:170)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 64)
>  at
>
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170
> )
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 64)
>  at
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 64)
>  at
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>  at
>
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
> :174)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
>  at
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>  at
>
org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:
> 1012)
>  at
>
org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1107
> )
>  at java.lang.Thread.run(Thread.java:484)
>
>
> root cause
>
> java.lang.NoClassDefFoundError: javax/xml/transform/URIResolver
>  at java.lang.ClassLoader.defineClass0(Native Method)
>  at java.lang.ClassLoader.defineClass(ClassLoader.java:493)
>  at
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:111)
>  at
>
org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLo
> ader.java:1631)
>  at
>
org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.jav
> a:926)
>  at
>
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.jav
> a:1360)
>  at java.lang.ClassLoader.loadClass(ClassLoader.java:292)
>  at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
>  at
>
org.apache.avalon.excalibur.component.ExcaliburComponentManager.configure(Ex
> caliburComponentManager.java:408)
>  at org.apache.cocoon.Cocoon.configure(Cocoon.java:406)
>  at org.apache.cocoon.Cocoon.initialize(Cocoon.java:267)
>  at
>
org.apache.cocoon.servlet.CocoonServlet.createCocoon(CocoonServlet.java:991)
>  at org.apache.cocoon.servlet.CocoonServlet.init(CocoonServlet.java:308)
>  at
>
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:91
> 6)
>  at
>
org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
>  at
>
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> va:214)
>  at
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> 66)
>  at
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
>  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>  at
>
org.apache.catalina.cor

COCOON2 Installation Problem

2002-02-20 Thread Stefano Bonnin

I have just installed tomcat 4.0.2 and Cocoon 2.0.1.

Steps:
* download the file
* copy cocoon.war under webapps ...
* restart Tomcat


Tomcat works correctly but when I try to use Cocoon I get the following
error:

Apache Tomcat/4.0.2 - HTTP Status 500 - Internal Server Error




type Exception report

message Internal Server Error

description The server encountered an internal error (Internal Server Error)
that prevented it from fulfilling this request.

exception

javax.servlet.ServletException: Servlet.init() for servlet Cocoon2 threw
exception
 at
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:93
5)
 at
org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:214)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:190)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
 at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
java:170)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170
)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:174)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:
1012)
 at
org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1107
)
 at java.lang.Thread.run(Thread.java:484)


root cause

java.lang.NoClassDefFoundError: javax/xml/transform/URIResolver
 at java.lang.ClassLoader.defineClass0(Native Method)
 at java.lang.ClassLoader.defineClass(ClassLoader.java:493)
 at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:111)
 at
org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLo
ader.java:1631)
 at
org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.jav
a:926)
 at
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.jav
a:1360)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:292)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
 at
org.apache.avalon.excalibur.component.ExcaliburComponentManager.configure(Ex
caliburComponentManager.java:408)
 at org.apache.cocoon.Cocoon.configure(Cocoon.java:406)
 at org.apache.cocoon.Cocoon.initialize(Cocoon.java:267)
 at
org.apache.cocoon.servlet.CocoonServlet.createCocoon(CocoonServlet.java:991)
 at org.apache.cocoon.servlet.CocoonServlet.init(CocoonServlet.java:308)
 at
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:91
6)
 at
org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
 at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:214)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:190)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
 at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
 at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
)
 at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.

Re: Re: Cocoon 2.0.1 + Tomcat 4.0 + JDK 1.4

2002-02-20 Thread Peter Flynn

Peter Baer writes:
> 
> Dear Daniel,
> 
> thank you for making this info public. Especially your hints about
> what versions to use helped me to finally get C2 working.
> 
> The combination that works for us here is:
> 
> - Java: Sun J2SDK 1.4.0
> 
> - Cocoon: Development snapshot xml-cocoon2_20020219112118.tar.gz,
>   built with JNDI using Java 1.4 from Sun

I just tried to build the only snapshot available in the CVS directory
close to this date (xml-cocoon2_20020219172103.tar.gz) and it doesn't
produce a cocoon.war file. It produces a cocoon.jar file instead. What
should I do with it? Have you got a copy of the snapshot you used that
I can download?

My problem is that under no circumstances will tomcat do anything with
cocoon.war. It just sits there in /var/tomcat/webapps. Is something
supposed to happen when I restart tomcat? I'm still getting a 404
for my http://localhost:8180/cocoon

> - Tomcat: Jakarta-Tomcat 4.0.1 binary release
> 
> - SuSE Linux 7.3
> 
> With all other combinations we got one of the well-known errors:
> Sitemap not available, major minor version number 48.0 etc.
> 
> Eg, it *has not worked* with the Tomcat 4.0.2 binary release.
> And it *does not work* with C2 release version 2.0.1.
> 
> So, please, folks on this list who have trouble to get C2 running:
> 
> Your *best chance* appears to be to try a *C2 development snapshot* with 
> *Tomcat 4.0.1* binary release!
> 
> And thanks again, Daniel! Your XML page is of great value!

Could you please repost this URL?

///Peter

-
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: Stuck setting up Cocoon 2.0.1 with Tomcat 4.0.2

2002-02-20 Thread Peter Flynn

Dirk Louwers writes:

> I've set up all the env variables. I've copied the cocoon.war file to =
> the webapps directory and tomcat unpacked the file and created a cocoon =
> directory structure, but when I try to access =
> http://localhost:8080/cocoon I get an error page. Can anybody help me =
> solve this problem? 

I get the same. No-one has suggested anything to do yet.
It appears that Apache + tomcat + cocoon simply doesn't work
at the moment: tomcat just fails to recognise cocoon.war

///Peter


-
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 attributes vs. request parameters

2002-02-20 Thread Christian Joelly

Hi!

i'm playing with the session tag lib, and have some problems with
session attributes, especially when they have the same name as request
parameters.

have session and request parameters/attributes to be unique to avoid
problems?

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




msg08289/pgp0.pgp
Description: PGP signature


Re: Stuck setting up Cocoon 2.0.1 with Tomcat 4.0.2

2002-02-20 Thread Peter Flynn

Marcelo F. Ochoa wrote:

> > Dirk Louwers
> >
>   Copy  xml-apis.jar, xalan.jar and batik.jar from Cocoon Home lib 
> directory to Tomcat Home common/lib directory.

./tools/lib/xml-apis.jar OK
No such file as xalan.jar, should I use ./tools/lib/xalan-2.2.0.jar
No such file as batik.jar, should I use ./lib/optional/batik-libs-1.1.1.jar

Aha! Yes! Restarting Apache *and* tomcat suddenly causes the .war
file to be unwrapped. Excellent. This needs to be documented.

But now http://localhost:8180/cocoon at least produces something,
although it's the error message Cocoon 2 - Internal server error:

type fatal

message Language Exception

description org.apache.cocoon.ProcessingException: Language Exception:
org.apache.cocoon.components.language.LanguageException: Error
compiling sitemap_xmap: Line 0, column 0: could not parse error
message: error: Invalid class file format in
/usr/java/j2sdk1.4.0/jre/lib/rt.jar(java/io/OutputStream.class). The
major.minor version '48.0' is too recent for this tool to
understand. 
/var/tomcat4/work/localhost/cocoon/cocoon-files/org/apache/cocoon/www/sitemap_xmap.java:12:
Class java.io.OutputStream not found in import. import
java.io.OutputStream; ^ Line 0, column 0: could not parse error
message: error: Invalid class file format in
/usr/java/j2sdk1.4.0/jre/lib/rt.jar(java/io/IOException.class). The
major.minor version '48.0' is too recent for this tool to understand.

What is "this tool"? Cocoon? Java1.4.0? Tomcat4.0.1?

///Peter

-
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: disable-output-escaping="yes"

2002-02-20 Thread Vadim Gritsenko

See simple.xsp in the sample webapp and , 
tags.

while (rs.next()){
  rs.getString("name")
}

Vadim

> -Original Message-
> From: Duy Tran [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, February 20, 2002 12:38 AM
> To: [EMAIL PROTECTED]
> Subject: disable-output-escaping="yes"
> 
> Hi
> 
> I believe this is bad programming practice as you
> said...
> 
> Please show me a way to get around the problem.
> I use XSP to retrieve data from the database to make a
> combobox with the options from the data
> 
> ... while (rs.next()){
> str = str +  " " +
> rs.getString("name") + "";
> }
>   return str;
> 
> Because str is a string, therefor '<' is < So the
> XSL does not consider it as
> a markup...
> 
> 
> How can I make a '<' in a string not < so that
> xsl considers it as a markup
> 
> Please help.
> 
> Regards
> 
> Paul White
> 
> http://movies.yahoo.com.au - Yahoo! Movies
> - Vote for your nominees in our online Oscars pool.


-
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: DocBook stylesheets not processed by Cocoon?

2002-02-20 Thread David Crossley

Derek Hohls wrote:
> David
> Thanks for the information - and the lecture...

Oh dear, i did not intend it to come across as a lecture.
Sorry. I do tend to over-explain an answer for the benefit
of everyone and various levels of understanding.

> FWIW, the subject heading reflected my perception of the problem
> *at the time*.  As people posted replies, that perception changed.
> I don't think it was any less obvious than some of the queries
> which get posted on the list.  And, yes, if no one replied or gave
> any useful answers I would try and repost in some other way...

That is a good approach. I understand now.

> As for the logfiles you suggest examining, one of my frustrations 
> was that they were too  big (over 100MB) to open with any editor 
> I have; my machine just fell over.

Yes this is definitely an issue. Cocoon has many parts
to it. If you set the log level to DEBUG then they all
contribute messages to what becomes a big logfile.

On UNIX there are no problems with text editors
reading these and using internal search facilities to
find the type of log entries that you want. On other
systems that may be an issue.

I certainly agree - i too have a hard time interpreting the
logfiles.

That cries out for some clever cookie to develop a
Cocoon application that can interpret its own logfiles.
A logfile is structured data so a generator could be written.

> I am considering *downgrading*
> the verbosity level.

That is the intent. Start with DEBUG level. When all is
running OK, then change the level to something
appropriate for production.

However, when i talked about "verbosity", i was not
referring to the general Cocoon DEBUG level in
logkit.xconf  Rather i was meaning the Entity Resolver
verbosity parameter. This is only for specific messages
coming from the resolver. The default level is 1 (not much).
Turn it up to see any errors. If there are any problems
with the entity resolver, then they will be apparent at
the begiining of the logfile.

> I will now go away and do the reading you suggested...
> 
> Derek
> 
> PS The pages do now work - not sure what (if anything) changed
> (maybe the restart of Tomcat??).

Excellent news.

That is possible. If i supsect a problem i always stop Tomcat
clean out its work/ directory, a re-start Tomcat. If i have been
fiddling with the source or updating the code, then i build clean
and then build.

--David

> >>> [EMAIL PROTECTED] 20/02/2002 01:10:37 >>>
> Derek Hohls wrote:
> > I have feeling that the link to the oasis site needs to
> > have to work properly...
> 
> No it does not. This is one of the reasons for using
> the Entity Resolver. You should be able to do your
> Cocoon processing with absolutely no connection
> to the Internet. Cocoon can then use local copies
> of the DTDs. Have you looked at the documentation
> userdocs/concepts/catalog.html ?
> 
> I think that you need to look more carefully at your
> logfiles. And please do what the documentation
> advises you to do  if you suspect problems with the
> resolution of DTDs and other entities, then raise
> the verbosity level in CatalogManager.properties
> This will send messages to standard output during
> Tomcat/Cocoon startup. There is also another verbosity
> setting in webapp/cocoon.xconf which will re-set the
> level during Cocoon operation after startup.
> (Remember that this, and many other, section of the
> xconf is incorporated at build time.)
> 
> You can, of course, bypass the entity resolver completely
> and hack your XML instance documents to have a local
> System Identifier in the doctype declaration. This will
> force the parser to use local copies of the DTDs.
> However, this is not the desired option. The entity
> resolver should find the local DTDs for you and so you
> do not need to mess about with the input XML instances.
> 
> By the way, this issue has nothing to do with the
> "stylesheets" as the email subject indicates.
> Everyone needs to be very careful with email subject
> lines, or your postings will get missed on these very
> busy lists.
> 
> --David


-
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) i18n:text passed for attribute

2002-02-20 Thread Piroumian, Konstantin

> Hello,

For attribute translation use this:


In i18n:attr attribute's value you can place a space separated list of
attribute names that you want to translate. The key for translation is the
value of the attribute to be translated.

Look at the i18n transformer documentation and i18n samples - you'll learn a
lot from there.

Regards,
Konstantin Piroumian

> I want to have on a form button with 'i18n key' text.
> Because it is not possible to pass another xml tag as attribute I tried:
>  name='value'>selectbutton
> But xsp transformer is removing i18n tag completely. How to do this???
> (One solution would be to assign i18n.text value to java variable, but
> i18n doesn't want to work like this - probably becasue it is pipeline
> transformer, not xslt)
>  Thanks,
> Tomasz
>
>
>
>
> -
> 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]>




(xsp) i18n:text passed for attribute

2002-02-20 Thread Tomasz Bech

Hello,
I want to have on a form button with 'i18n key' text.
Because it is not possible to pass another xml tag as attribute I tried:
selectbutton
But xsp transformer is removing i18n tag completely. How to do this???
(One solution would be to assign i18n.text value to java variable, but 
i18n doesn't want to work like this - probably becasue it is pipeline 
transformer, not xslt)
 Thanks,
Tomasz




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

2002-02-20 Thread Jeremy Quinn

At 11:40 am +0100 19/2/02, Bert Van Kets wrote:
>At 17:21 18/02/2002 +, you wrote:
>
>>At 5:05 pm +0100 18/2/02, Bert Van Kets wrote:
>>>SUCCESS!!
>>
>>What was it that solved the problem?
>>
>
>Apparently the different file system.  I can't think of anything else
>since I try to keep the Linux and Win2K setups as similar as possible.
>


Has anybody else tested FileWriterTransformer on Windows?
Do you get the same problems?

Thanks

regards Jeremy
-- 
   ___

   Jeremy Quinn   Karma Divers
   webSpace Design
HyperMedia Research Centre

   


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




Uploading files and managing their path.

2002-02-20 Thread Olivier Rossel

I want to use the add-employee.xsp+process-employee.xsp system.
But what I want to add is a photo of the employee.
SO I add in the form a field that is of type="file".

The file is correctly uploaded into the upload-dir.
But in the process-employee.xsp, the POSTed data
corresponding to the image is the absolute path  of the file uploaded
(in my case, /opt/TOMCAT/webapps/cocoon/upload/foobar.jpg).

Can you give me a piece of advice about how to manage this path in order to
create a HTML tag 

What's the point of giving the absolute path? To be able to make any 
kind of
Java processing on it?
In my case, should I make my  tag by appending the "value of the 
upload-dir"+"name of the file" ?
Is there a standard way of doing that?

(I presume there is a problem of coherence between the sitemap and the 
URL of the ,
that's why a manual processing is mandatory in any case).


-
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: OT: Poll - Cocoon usage

2002-02-20 Thread Bert Van Kets

I'm doing two projects now.  Both are web sites, but with some extra "kick 
butt" features.
1) A site for a society where different people need to manage different 
parts of the site.  One is responsible for the member administration, 
another for the financial part, another for the organization of conferences 
and another for the content of a magazine.  Since all these people are 
scattered across Belgium the administration of this society was sometimes 
real chaos.
The site will serve two purposes: let the people responsible for their part 
edit the content of only that part and an administration part where they 
can administer everything regarding the members.  Everybody only has access 
to the part he/she's responsible for.  As well as the site (public and 
member only part) as the administrative part.
I chose Cocoon for this because it lets me generate PDF documents 
on-line.  This will be used to generate welcome letters, mailings, 
subscription confirmations, etc ...

2) An intranet application to administer everything (really everything) 
that has to do with the internships of the residents in anesthesiology of a 
the largest hospital in Belgium.  This is mainly reporting and rule 
defining.  ex.  When someone is ill or pregnant for more than 15 weeks his 
residency will be prolonged for the time he/she is over those 15 
weeks.  Lists of the people on call need to be defined keeping in mind 
every possible exception (illness, holiday, conference, been on call, ...)
Lists of classes, people on call, vacations, illnesses, conferences, 
residencies abroad, ...  everything must be included.
This site will be accessible within the hospital and every resident will be 
able to get and enter the info relevant for him/her.  This info can change 
quiet a lot during the 5 year of residency.
In a later phase the staff members will be added too.
For this project I chose Cocoon to be able to build a complete platform 
where I can create and edit forms and pages on-line by combining the 
development from both projects.

Once the complete platform is finished I will look into plugging it on top 
of SAP (one of the worlds biggest administration programs).  Since SAP runs 
on a multitude of OSes I needed a platform that could run on all those 
platforms.  Java, XML and XSLT seemed the logical solution.  Cocoon has all 
of this, and a lot more.

Bert

At 07:37 20/02/2002 +0200, you wrote:
>Hi,
>
>just curious -- how do you guys and girls use Cocoon for anything except
>building websites?
>
>Some good examples I've seen on the list:
>  -> generation of documentation
>  -> integration into products
>  -> creation of custom content management systems
>  -> generation of reports
>  -> add your own, preferably with the most intriguing details :-)
>
>Please e-mail me privately and I'll post the summary to the list.
>
>~/.viktors
>--
> > E-Comm. 1995..2002 :: http://rotanovs.com/  > CMS weblog ::
>http://rotanovs.com/cms
>
>
>
>
>
>-
>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: Poll - Cocoon usage

2002-02-20 Thread Sparkes, Peter
Title: RE: Poll - Cocoon usage





generation of documentation
integration into product


Peter


> -Original Message-
> From: Viktors Rotanovs [mailto:[EMAIL PROTECTED]]
> Sent: 20 February 2002 05:38
> To: [EMAIL PROTECTED]
> Subject: OT: Poll - Cocoon usage
> 
> 
> Hi,
> 
> just curious -- how do you guys and girls use Cocoon for 
> anything except
> building websites?
> 
> Some good examples I've seen on the list:
>  -> generation of documentation
>  -> integration into products
>  -> creation of custom content management systems
>  -> generation of reports
>  -> add your own, preferably with the most intriguing details :-)
> 
> Please e-mail me privately and I'll post the summary to the list.
> 
> ~/.viktors
> --
> > E-Comm. 1995..2002 :: http://rotanovs.com/  > CMS weblog ::
> http://rotanovs.com/cms
> 
> 
> 
> 
> 
> -
> 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]>
> 




**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**