irclog2html for #tomcat on 20030502

00:36.54*** join/#tomcat Hags (~Hags@H211.C233.tor.velocet.net)
00:36.58Hagshey all
00:38.34HagsI am having a problem displaying a servlet. I have the directory structure set up properly and the webapp installed. There is a web.xml file in the WEB-INF directory with the appropriate settings, but I continue to get "requested resource not available". Any ideas??
00:43.48*** join/#tomcat Hags (~jhagan@H211.C233.tor.velocet.net)
00:45.53HellaenergyHags: recheck your web.xml
00:46.20Hagshehe...I have about 20 times
00:55.38Hellaenergypaste it on hellabot
00:55.59Hellaenergydo your tomcat examples work
00:56.27Hagshellaenergy: yes
00:56.48Hellaenergyhttp://www.hellaweb.com:8888/
00:57.48hellabotSomeone pasted <?xml version="1.0" encoding=" at http://www.hellaweb.com:8888/6
00:58.06hellabot"Hags" pasted <?xml version="1.0" encoding=" at http://www.hellaweb.com:8888/7
00:58.31Hellaenergyone sec
00:58.36Hagsk
00:58.40Hellaenergyhave you heard of the invoker?
00:59.27Hagsyeah, I think so - it can be used like http://localhost/servlet/Servlet, correct
00:59.30Hags?
00:59.36Hellaenergyyes
00:59.56HagsI want this installation in a separate place, so I have created a webapp
01:00.28HagsI can get to the root of the webapp, but if I try to access the server, I get resource not available
01:00.38Hagsservlet, not server, sorry
01:00.44hellabot"Hellaenergy" pasted Simple web.xml that works :) at http://www.hellaweb.com:8888/8
01:01.54Hellaenergythat should be in your local WEB-INF file ;)
01:02.02Hellaenergydir sorry
01:03.18Hagsok, I'll try it
01:04.59Hagshellaenergy: so, should I access it by going to http://localhost/<webapp_name>/<servlet_name>?
01:05.57Hellaenergyif your using the invoker you put your class in WEB-INF classes and call it like so:
01:06.11Hellaenergyhttp://localhost:8080/servlet/blah
01:06.30Hellaenergyif you use the <servlet-mapping>
01:06.41Hellaenergyyou can call it to any url you want
01:07.27Hellaenergyyou can also change the name of the servlet with <servlet-name>
01:14.15HellaenergyWell Hags how did it go?
01:17.18Hagshellaenergy: I figured it out - I missed putting my context entry in the server.xml file...thanks for you help
01:17.43Hellaenergynp
01:31.29CSManhey guys, after a href to /servlet/myServlet and in the servlet i dispatch to /Main.jsp i get the links in that page with the additional /servlet/ path
01:31.33CSManany idea?
03:49.47*** join/#tomcat daddius (~daddius@24-193-64-140.nyc.rr.com)
03:49.52daddiushello is anyone around?
03:52.43tang^lol
03:53.14tang^hmm, my first thought was "is a square"... second thought outranked the first
03:53.24tang^lucky me
03:53.46daddiusha ha ha
03:53.47daddiushello
03:53.51daddiuscould you help
03:53.59Splinehey what would you guys name a class that implements both Provider and Modifier
03:54.03Splinenever mind what those interfaces do
03:54.39tang^ChangeMachine?
03:54.59SplineI was thinking *Machine is too general
03:55.10Splinebecause I also have a Performer interface that this does not implement
03:55.30daddiusanyone know anything about init(servletconfig config)
03:55.41Splinesure, it runs when the servlet instance is created
03:55.42Splinethats it
03:56.02tang^ChangeMaker comes to mind as well
03:56.34tang^ArcadeDude :-P
03:56.38Splinehaha
03:56.39daddiuswhat is that argument?
03:57.03daddiuswell the reason i ask is because this application demo doesn't work right at all
03:57.09SplineIts defined in the spec, it is an object that contains information you can use on startup of your servlet
03:57.20daddiusi got it from a book called devloeping java servlets second edition
03:57.21daddiusnothign works
03:57.33tang^isn't init with config deprecated?
03:57.53Splinehmm could be
03:58.18daddiusthat is what i am saying tang
03:58.24daddiusthat is what i understand
03:58.28daddiusand it won't work
03:58.29tang^I recall that you can just use init() if you don't actually process config
03:58.43Splinenah
03:58.44tang^daddius: error logged?
03:58.51Splineinterface Servlet has init(ServletConfig config) in 2.3
03:58.52daddiusyeah
03:58.56daddiusi have an ass for a teacher
03:59.04daddiusand he will fail us if we don't do this demmo
03:59.13daddiusi don't know why but that is the way he is
03:59.18daddiusi think he does this on purpose
03:59.34Spline"A ServletConfig object is used to pass initialization parameters (name-value pairs) to a servlet during its initialization"
03:59.55Splinemaybe your initparameters arent set up right in your web.xml
04:00.40daddiusyeah
04:00.55daddiusi understand the init
04:01.01daddiusbut don't understand what the hell this book talks about
04:01.17tang^my o'reilly java servlet programming book uses init() in all its examples. I think it also mentioned that init(config) is used less these days
04:01.24daddiustang i have the same book
04:01.28daddiusi know about it
04:01.34daddiusnice example in chapter 2 i think
04:01.39Splineaccording to this book, Servlet does not define init()
04:01.40daddiusbut this other book i have
04:01.58daddiusDeveloping java servlets second edition is where the example code is in
04:02.00SplineWrox Professional Java Servlets 2.3
04:02.28daddiusi know it gets parameters from web.xml
04:02.34daddiusfrom my understanding of it
04:02.44daddiusthe problem i have is stock quote program
04:02.59daddiusthere is a service interface and a contorller interface
04:03.04daddiuswell not a controller interface
04:03.09daddiusbut a regular controller class
04:03.23daddiusthis service interface defines an executable method
04:03.43Splineis there any other kind of method?
04:03.46daddiusthis is not placed in web app, but in classpath
04:03.49daddiusno
04:03.52daddius1
04:04.08daddiusthen i say soemthing like this buy implemtns service
04:04.17daddiusand sell implements service
04:04.17Splinewith tomcat, you dont put stuff in tomcat's classpath to get webapps to see it
04:04.35daddiusi didn't do that
04:04.41daddiusi place in my regular classpath
04:04.48SplineWEB-INF/lib and WEB-INF/classes
04:04.50daddiuswhere i place everyting else
04:04.55daddiusi didn't put in there
04:04.56Splinethats where stuff goes that webapps should be
04:05.01daddiusbut then i figured should i put in there also
04:05.03Splinei mean that webapps should see
04:05.03daddiusstill same problem
04:05.11daddiusyeah i had all of that
04:05.14Splineproblem = NoClassDefFound?
04:05.19daddiushere is file structure
04:05.23Splinewhat is the error
04:05.25Splineand use hellabot
04:05.28tang^from the tomcat-4.1 docs: A convenience method which can be overridden so that there's no need to call super.init(config).
04:05.35daddiusclass not found error on the controller
04:05.49daddiusbut book never says to put controller in WEB-INF/CLASSES
04:06.05Splinego check the book's errata on the publisher's web site
04:06.14Splinethen if its not there, add the class and see what happens
04:06.22Splineif it fixes it, submit a new errata
04:06.24daddiusall my other apps work fine
04:06.24Splineerrratum :)
04:06.39daddiusdoesn't have one
04:06.47daddiushere is publisher's site
04:06.49daddiushttp://www.virtuas.com/publications.html
04:07.14Splinedid you try putting controller in the webapp's /WEB-INF/lib or /WEB-INF/classes?
04:07.25daddiusi tried it in classes
04:07.32daddiusit also needs a connection pool
04:07.37Splinewith appropriate directory structure?
04:07.38daddiusto a access db
04:08.12daddiusWEB-INF/classes
04:08.34daddiusi jar my connectionpool, service interface in a jar file
04:08.36SplineWEB-INF/classes/com/package/name/Controller?
04:08.40daddiusso i can compile nicely using 1 file
04:08.46daddiusthere was no package in there
04:08.52Splineah
04:08.56daddiusso no need for that
04:09.02daddiusi tried everyting
04:09.05Splinewhat class in particular is it not finding
04:09.08daddiusthe code is screwed up
04:09.24Splinewhats the error message
04:09.25daddiuswait let me start tomcat and U can see
04:09.30daddiusI want U to see
04:11.46daddiussite is this
04:12.00daddiushttp://daddius.zapto.org:8080/trader1/
04:12.20daddiuswait give me a ssec
04:12.51daddiusohh yeah
04:12.55daddiusit won't even start on my system
04:13.01daddiusi got all the errors on my friends laptop
04:13.13daddiusbut here is another app that does the same basci thing with out connection pool
04:13.25daddiushttp://daddius.zapto.org:8080/chp13/
04:13.54SplineI am lost
04:13.57Splinewhat is your error
04:14.08daddiusgoto site and see
04:14.22daddiusdamn
04:14.24daddiusgive me a sec
04:15.23tang^but the most interesting information will be in your log files, not on your site
04:15.41daddiushttp://daddius.zapto.org:8080/chp13/Controller
04:16.57*** join/#tomcat Gnug225 (Gnug225@24.236.252.213.gha.mi.chartermi.net)
04:18.05daddiushold on let me check
04:18.22daddiusi am also trying to get log file from friend's laptop
04:21.29daddiusman i have alot of logs
04:22.03Spline404 error
04:22.11Splinesays /chp13/Controller is not available
04:22.17Splinethat has nothing to do with classloaders
04:22.24daddiusbut it should be according to book
04:22.31daddiusi hate this book
04:22.53Splinelook
04:22.58Splinethe URL says /chp13/Controller
04:23.19Splinedo you have a servlet mapping for /Controller in your web.xml?  And is your Context /chp13?
04:25.51daddiusno
04:25.59daddiushe giave no web.xml file with it
04:26.03Splineok
04:26.04Splinemake one
04:26.14daddiusagain my understanding is that U don't have to have it
04:26.17SplineI have an easier answer for you, you know.  The problem is you are spoiled
04:26.22daddiusurl wiould be /servlet/theservlet
04:26.27SplineInvoker servlet == evil
04:26.46daddiusno no not spoiled
04:26.50daddiuswell to be honest with U
04:27.02daddiusi am doing data-mining project and i am helping out girl with this project
04:27.09Splinein recent versions of tomcat, the INvoker servlet is off by default for security reasons
04:27.13daddiusi also have a java app progrect also
04:27.21daddiusso for me time is very very tight
04:27.23Splinesure
04:27.28daddiusso i ask for help from people who know more then me
04:27.32SplineI think its quicker to make a web.xml than to enable the Invoker servlet
04:27.34daddiusis that ok with U man?
04:27.36Splineand its also a better solution
04:27.55daddiusthis app is only demo app ya know
04:27.57SplineIts not your fault you're spoiled
04:28.00daddiusnot real production app
04:28.03Splineold versions of Tomcat spoiled lots of people
04:28.15daddiusi never ran old version before
04:28.16daddiusLOL
04:28.25daddiusi just need this to run and if it does i will mapp it all
04:28.37daddiusbut must run
04:28.50Splineweb.xml will make it run
04:29.02Spline<servlet><servlet-name>Controller</servlet-name></servlet>
04:29.07daddiusok again
04:29.11daddiusi understand that
04:29.12Splineetc
04:29.15daddiusbut listen to me for a sec
04:29.23daddiusi follow book for what she wants
04:29.35daddiusthis app is sort of like would i read about struts
04:29.39daddiusmvc
04:29.44daddiusthey said
04:29.49daddiusaccording to book now
04:29.56SplineI understand, but it looks like the book's example depends on something your version of Tomcat doesn't support, namely the Invoker serlet
04:29.57daddiusplace Controler in classpath
04:30.16daddiusi did this on version in book
04:30.19daddiusand new version of tomcat
04:30.23Splinehmm
04:30.32daddiusman i am not totally stupid here
04:30.37Splinewell what can I say I don't have the book
04:31.04daddiusi had a feeling it was init(servletcofig config)
04:31.18SplineEither a directory in the webapp, a servlet-mapping, or the Invoker servlet
04:31.26Splinebecause /chp13/Controller is going to 404 unless something tells Tomcat what to map that to
04:31.57daddiusU will be here right?
04:32.13daddiusI will do what U ask
04:32.16daddiusgive me a sec
04:32.22daddiusplease
04:32.35Splineyea no prob
04:32.42SplineI'll be around for anhour or so, then bed
04:37.57daddiusok done
04:38.06daddiusi gave it /controller/*
04:38.27johnjohn7Question: Does anyone know if there is an eclipse plugin for Web Work?
04:39.04tang^you check the plugin database?
04:40.03daddiusman in managment it is running
04:40.07daddiuslet me check
04:47.42daddiusis it ok to send web.xml content in here?
04:47.55tang^use the pastebot
04:48.11daddius<web-app>
04:48.11daddius<PROTECTED>
04:48.11daddius<PROTECTED>
04:48.11daddius<PROTECTED>
04:48.11daddius<PROTECTED>
04:48.13daddius<PROTECTED>
04:48.15daddius<servlet-name>
04:48.17daddiusController
04:48.19daddius</servlet-name>
04:48.21daddius<servlet-class>
04:48.23daddiusController
04:48.25daddius</servlet-class>
04:48.27daddius<PROTECTED>
04:48.29daddius<PROTECTED>
04:48.31daddius<servlet-name>
04:48.33daddiusController
04:48.35daddius</servlet-name>
04:48.37daddius<url-pattern>
04:48.39daddius/controller/*
04:48.41daddius</url-pattern>
04:48.43tang^that's not the pastebot
04:48.45daddius<PROTECTED>
04:48.47daddius</web-app>
04:48.49daddiusi hope this is not offensive in this room
04:49.09daddiussorry not an irc person here
04:49.12daddiusplease excuse me
04:49.26tang^take a peek at /topic
04:50.08tang^geez I need sleep
04:50.38daddiusok
04:50.39daddiussorrry
04:53.59hellabot"daddius" pasted web.xml file i am using at http://www.hellaweb.com:8888/9
04:54.08daddiusi hope U can see this
04:54.13daddiusI lofe that tool
05:00.43daddiuseveryone gone?
05:05.41daddiuseveryone gone huh
05:05.43daddiusoh well
05:28.46Splineback
05:28.49Splinetoo late i guess
06:22.29*** join/#tomcat JamesInSD (~chatzilla@host-182-198-220-24.midco.net)
07:32.36*** join/#tomcat KarolR (~nobody@c169248.adsl.hansenet.de)
07:37.23*** join/#tomcat spikes (~spikes@202.164.169.210)
07:41.07spikesi get DBCP borrowObject failed: java.sql.SQLException: Server connection failure during transaction, whats d prob?
07:45.53KarolRTomcat is using DBCP for connection pooling by default. By the message, a connection to your database server failed during a transaction...
07:45.57KarolRcheck your db server.
07:47.27*** join/#tomcat Adelheit (~none@80.146.165.65)
07:55.44spikesKarolR: i tried using a simple jsp without using dbcp and i managed to connect to it
07:56.41KarolRDid you define a JNDI datasource?
07:57.16KarolR(in your context)
07:57.36spikesyup in conf/server.xml and web-inf/web.xml
07:58.02KarolRahm, are you sure those are the right places to define the datasource?...
07:58.28KarolRanyways. Take a look at the <ResourceParams/> for your datasource and check if it's ok.
07:58.30spikesyup, i have diff ds for other dbs, that are working, but i cant seem to make it work on an mysql, i
07:58.32*** join/#tomcat vakYpollo (~higopico@151.Red-80-36-135.pooles.rima-tde.net)
07:59.12KarolRI never had that error, we are using the integrated DBCP pooled JDBC connections, managed by Tomcat.
07:59.18KarolR...using MySQL, too.
07:59.51spikesyup, actually ive succeful with it b4 but it seems that i might have changed/installed something anyways, thx, i just look at it more carefully
08:00.20KarolRgl
08:00.54spikesKarolR: anyways, ill just take this opprotunity to get some ideas on implementing dbcp, any tips for me then, currently im using jsp, then access db via bean
08:02.59KarolRdbcp is fully transparrent, when you're using the Tomcat facilities
08:03.38KarolRthat means, you perform a JNDI lookup() for your datasource. Normally, it would give you a straight and simple connection. Now it gives you a pooled connection.
08:04.05spikesKarolR: r u using it in productn, we have apache 1.3.27 with mod_jk/tomcat 4.1.24
08:04.12KarolRso I never explicitelly used DBCP...
08:04.33KarolRyes, we are using it in production.
08:18.18*** join/#tomcat KarolR (~nobody@c169248.adsl.hansenet.de)
08:22.52*** part/#tomcat spikes (~spikes@202.164.169.210)
09:13.04*** join/#tomcat KarolR (~nobody@c169248.adsl.hansenet.de)
09:52.33*** join/#tomcat KarolR (~nobody@c169248.adsl.hansenet.de)
10:05.08*** join/#tomcat KarolR (~nobody@c169248.adsl.hansenet.de)
10:31.12*** join/#tomcat akb (~akb@62.215.43.169)
10:31.22akbKarolR
10:33.01akbvakYpollo
10:33.54*** part/#tomcat akb (~akb@62.215.43.169)
10:37.50vakYpolloakb
10:41.58KarolRakb
10:43.08vakYpolloKarolR: are your Commons Digester problems solved?
10:43.32KarolRno... :/
10:43.38KarolRI gave up temporarilly.
10:44.13KarolRwon't validate against a schema for now. Couldn't make it run.
10:44.53vakYpollobtw: what was the schame problem with digester?
10:45.07KarolRI am not happy about my solutions but I already spent too much time on that. So I'm doing the ISO date conversion manually using SimpleDateFormat and it's patterns support.
10:45.15KarolRyes, the schema problem.
10:45.49KarolRa) I need to be able to check if the XML document is an instance of a specified schema
10:46.11KarolRb) I need to make Digester convert the dates, dateTimes, numbers etc. for me onto Java objects.
10:46.48KarolR...a) means validate against a schema in a specified file.
10:54.54vakYpolloKarolR: so, for example you have in the xs something like <element name="birthdate" type="date"/>  and you want that when digester gets "<birthdate>12-04-197</birthdate>"  you get the date string converted to java date object.
10:55.20vakYpolloyou are using xerces + commons digester, isn't it?
10:55.29KarolRyes
10:55.44KarolRthat's what I want to get.
10:55.51vakYpollolet's check
10:56.16KarolRI believe that the problem was that I couldn't make Digester understand/include/process the schema file that I told him to use
10:56.55vakYpolloI suspect that.. because xerces will only check just for validation.
10:57.41KarolRAs soon as I set digester.setValidating(true) and digester.setSchema("schema.file.location"),
10:58.02KarolRit began throwing exceptions, claiming that the elements were not defined (not true)
10:58.39vakYpolloyou have checked ur xs is valid, isn't it?
10:59.09KarolRit is valid.
10:59.24KarolRand the XML document is an instance of that schema. 100%
10:59.35vakYpollo:)
10:59.50vakYpollojum... let me check digester source code..
10:59.55KarolRI did that
11:00.05KarolRat the end, they set the schema location for the SAX parser.
11:00.09KarolRnot more and not less.
11:00.32vakYpollohum..
11:01.34KarolRMy problem is that I didn't find any Digester documentation on this, besides the autogenerated JavaDoc sayings things like setSchema(String)  /** Sets the schema **/
11:01.35KarolR:o)
11:02.05KarolRdid you see any tutorials on this? Or some other resources on Digester?
11:04.37vakYpolloKarolR: have you checked out this?  http://www.castor.org/xmlschema.html
11:06.43vakYpolloMaybe it has not the same features than digester.
11:06.52vakYpollos/than/that
11:09.34vakYpollonote Digester is using this schema language: http://www.w3.org/2001/XMLSchema
11:12.24*** join/#tomcat KR (~nobody@c169248.adsl.hansenet.de)
11:12.55KRvakYpollo: thanks for the Castor link. I'll look at it.
11:13.11KRand yes, I am using the http://www.w3.org/2001/XMLSchema schema language.
11:13.36vakYpolloit seems digester do nothing with schemas...
11:13.54vakYpollo(except for validating issues)
11:14.52KRwell, at least if it would validate. It doesn't do it for me, as for now
11:15.52vakYpolloKR: KarolR: check out also this: http://jbind.sourceforge.net/
11:17.20KRthanks
11:17.59KRlooks promissing
11:18.04vakYpollowell. in the latest link there are links to other data binding frameworks, like JAXB, Castor, Quick and Zaues.
11:18.07vakYpollo(Zeus)
11:18.47vakYpollothat's all... maybe in your free time you could add schema support to digester ;)
11:21.29KRyeah ;-)
11:21.36KRI'd love to contribute
11:22.43KRlets see if I can integrate schema support into Digester.
11:27.36KRlooks like a summer vacation job to me.
11:56.37*** join/#tomcat vx`schlumpf (~vx_schlum@dsl-213-023-041-148.arcor-ip.net)
12:16.29*** join/#tomcat davidedb (~davide@ppp-217-133-204-80.cust-adsl.tiscali.it)
12:16.37davidedbhi all
12:16.57*** join/#tomcat akb (~akb@62.215.38.96)
13:13.10*** join/#tomcat a4akb (~akb@62.215.39.196)
13:31.47*** part/#tomcat a4akb (~akb@62.215.39.196)
14:16.27*** join/#tomcat JakeJakeJ (pclcri@137.36.28.163)
15:18.01*** join/#tomcat akb (~akb@62.215.38.99)
15:19.36*** join/#tomcat DrJake (pclcri@137.36.28.163)
15:19.55*** join/#tomcat onicrom (kyleo@insideyou.org)
15:20.38*** part/#tomcat onicrom (kyleo@insideyou.org)
15:34.02*** part/#tomcat akb (~akb@62.215.38.99)
15:35.42*** join/#tomcat sockmonk (~wsheldahl@moose.qx.net)
15:54.04*** join/#tomcat Gnug225 (Gnug225@24.236.252.199.gha.mi.chartermi.net)
16:17.30*** join/#tomcat daddius (~daddius@24-193-64-140.nyc.rr.com)
16:17.49daddiusanyone around
16:27.15*** join/#tomcat Hellaenergy (~Hellaener@hellaweb.com)
16:28.15Hellaenergyhi
16:28.27daddiushello
16:28.36Hellaenergywhats happenin
16:29.51daddiusdoing aright and yourself
16:30.03daddiushaving webapp problems though
16:30.49daddiusunable to load my app
16:32.14*** join/#tomcat dreammedia (~dreammedi@208.32.79.100)
16:34.53Hellaenergyddadius: What have you done to load your app?
16:35.00Hellaenergyexpliain in detail
16:35.03Hellaenergyhi dreammedia
16:36.27daddiuswell the app has 3 classes.  one is a controller and the other is a service interface.   and the last one is a ServiceExample which implements the interface
16:37.18hellabot"daddius" pasted exception i get at http://www.hellaweb.com:8888/10
16:37.27daddiusI paste exception i get
16:37.31Hellaenergydid you setup your context in your servlet.xml and did you setup you web.xml correctly
16:37.49daddiusi didn't tuch the servlet.xml file
16:37.55daddiusbut i made a web.xml file
16:38.03daddiusand it appears to work according to log
16:38.33daddiusthe Controller tries to get a req.getParameter("service")
16:38.48daddiusand the service i asume is a the service interface class
16:39.10daddiuswhich is in same directory WEB-INF/classes
16:39.26HellaenergyWhere is this Controller constructor?
16:40.09daddiusno actual construcotr in it
16:40.19daddiusjsut a doGet and doPost
16:40.38daddiusalso i have a init(servletconfig config)
16:40.45daddiusit makes call to super.init(ocnfig)
16:41.01daddiusalsoi hae a void forward
16:41.16Hellaenergyk
16:41.26daddiusasking for a getServletContext
16:41.30daddiuslet me post so U can see
16:42.05hellabot"daddius" pasted Controller class at http://www.hellaweb.com:8888/11
16:42.47daddiusin first if statement in doPost it throws the Exception i get
16:42.58daddiusbut I am not sure how to get that parameter
16:43.08daddiusI hear it is deprecated but how do I update this?
16:44.15Hellaenergyhttp://jakarta.apache.org/tomcat/tomcat-4.1-doc/servletapi/index.html
16:46.40davidedbHi all, I'm triing to install tomcat+cocoon1....but not all goes right....
16:47.34Hellaenergymaybe the init isn't working daddius
16:47.35davidedbI think that tomcat is ok,...because I get right response ad http://localhost:8081
16:47.51Hellaenergydavidedb: why cocoon 1?
16:47.55Hellaenergyand not 2?
16:48.01daddiusHellaenrgy I was thinking the samething
16:48.18daddiususing init() can't U make a call to another servlet?
16:48.28daddiusor can U simply import that servlet?
16:48.28davidedbHellaenergy: because the production-environment has it.....and I must replicate the same version....
16:48.39Hellaenergyah
16:48.53Hellaenergywhats the problem?
16:49.13Hellaenergydavidedb: There is a #cocoon channel too ;)
16:49.39davidedbHellaenergy: so...if I call http://localhost/Cocoon.xml dont work...
16:50.04Hellaenergytry://localhost:8080/Coccon.xml
16:50.32Hellaenergyis the coccon dir in your webapps folder?
16:50.46davidedbHellaenergy: tomcat reply at 8081 not 8080 by the default setting in my debian....
16:50.46Hellaenergydid you install cocoon from a war?
16:50.58Hellaenergyso try 8081
16:51.05davidedbHellaenergy: not work :-)
16:51.22Hellaenergyhow did you install cocoon?
16:52.45davidedbHellaenergy: I tried to install with apt, and after I do some at hand....because not work....but nothing to do...
16:53.04davidedbHellaenergy: I try to say you how I have do....wait...
16:54.33davidedbI have all jar files in /usr/share/java...
16:55.02davidedbcocoon.jar, xerces, etc etc...
16:55.17Hellaenergydavidedb: An expert once told me don't mix your jars in with the java distro
16:55.40Hellaenergyset your classpath approprately
16:56.06davidedbHellaenergy: oh..nice....I must set it in the tomcat start-file ...right?
16:56.27Hellaenergyalso did you read the documentation on http://xml.apache.org/cocoon/index.html ?
16:56.40Hellaenergywhat OS are you on?
16:56.46Hellaenergyoh linux right?
16:56.49davidedbdebian, linux
16:56.59davidedb<Context path="/cocoon" docBase="webapps/cocoon" debug="0" reloadable="true"></Context></ContextMan
16:57.01davidedbager>
16:57.22davidedbI added this in the /etc/tomcat/server.xml
16:57.23Hellaenergydoes tomcat work?
16:57.43davidedbHellaenergy: tomcat work on 8081....It reply and list directory....
16:58.03Hellaenergygo to the examples and see if they exec
16:58.22davidedbHellaenergy: but report an error....I will post you, wait...
16:58.55davidedbAjp13Interceptor: Can't create stop file: /var/run/tomcat-ajp13.id - java.io.FileNotFoundException: /var/run/tomcat-ajp13.id (Permission denied)
16:58.57davidedb<PROTECTED>
16:59.37davidedbHellaenergy: But this is for Ajpl...so I think that is not my problem...right?
16:59.53Hellaenergyyou need to set permissions in the /var/run/ dir to allow tomcat to create that file
17:00.25Hellaenergydavidedb: Did you read this http://xml.apache.org/cocoon1/install.html ?
17:00.54Hellaenergy1. Get tomcat working with its examples
17:01.07Hellaenergy2. Read http://xml.apache.org/cocoon1/install.html and follow the instructions
17:01.13Hellaenergy3. Then get back to us ;)
17:01.30davidedbHellaenergy: ok, wait tnx a lot :-)
17:01.43HellaenergyI have to head off to work bbl ;)
17:15.11*** join/#tomcat vx`schlumpf (~vx_schlum@dsl-213-023-051-181.arcor-ip.net)
17:22.28*** join/#tomcat Laggy_McGee (~lagster@pcp03290765pcs.arnysm01.nj.comcast.net)
17:22.39Laggy_McGeeHi
17:22.54Laggy_McGeeI'm getting some weird Group error on my JSP page
17:24.02Laggy_McGeejava.lang.IndexOutOfBoundsException: No group 1
17:24.08Laggy_McGeeWhat is a group?
17:45.31*** join/#tomcat akb (~akb@62.215.38.99)
17:45.36akbo yo o
17:45.43akbhello any bud home?
17:46.47akb:/
17:46.50akblaterz
17:49.03*** join/#tomcat toodarkpark (Gnug225@24.236.252.199.gha.mi.chartermi.net)
17:52.16*** join/#tomcat vakYpollo (~higopico@151.Red-80-36-135.pooles.rima-tde.net) [NETSPLIT VICTIM]
17:52.16*** join/#tomcat bugfixer (~bugfixer@42gis175.gulftel.com)
18:36.50davidedbwhere is the right place to add all classpath?
18:39.27dthobbyDepends on a number of things...
18:39.33dthobbyUNIX or NT?
18:39.38dthobbyServer or development?
18:43.24davidedblinux
18:43.27davidedbdebian
18:44.11dthobbyOk, is this something that is running as a server (like tomcat) or for your devlepment, for example so javac runs smoothly?
18:44.11davidedbit work if I add in all jar files in the start-scritp....but I don't like this solution...
18:44.34davidedbyes tomcat is the server
18:44.45davidedband I must run cocoon....
18:45.06davidedbIf I add all jar files manually in the tomcat start script work...
18:45.14dthobbyFor tomcat it will automatically use jars in your common/lib directory.
18:45.23*** join/#tomcat Spline (~dj_aia@anja.isisnetworks.net)
18:45.31dthobbyYou should be able to make simlinks if you want to leave them elsewhere.
18:46.00davidedbnot in $TOMCAT_HOME/lib ?
18:46.04dthobbyBut to run javac you'll want to have them in your classpath individually (I think).  I have them in my .bashrc.
18:46.10davidedbwhere is common/lib ?
18:46.28dthobby$TOMCAT_HOME/common/lib
18:46.39davidedbauch!....ok I try tnx :-)
18:46.42dthobbynp!
18:49.11davidedbnot work :-(
18:49.22davidedbI can set this default directory ?
18:49.36davidedb...in some conf file of tomcat?
18:49.59dthobbyStrange...  I've never had a problem with placing jar files in there.  I haven't tried reconfiguring that aspect of tomcat, so I don't know offhand where it would be configured.
18:50.26davidedboh....wait...I see the dir lib/common.....
18:50.34davidedbis that?
18:50.59dthobbyYes, it should already be there and have a bunch of jars in it.
18:51.15davidedbyes yes....so I reTry.....
18:51.20dthobbyFor application specific jars you put them in WEB-INF/lib (from your application root).
18:51.39davidedbok, nice...that's the nice way :-)
18:52.58davidedbIt work!! :DDD
18:53.08dthobbyWoo Hoo! :)  Glad to hear it.
18:53.21davidedbtnx a lot dthobby!
18:53.35dthobbynp, davidedb...  Glad I could help.
18:54.39davidedbfinally a ray of sun in this foggy day :-) !!
18:54.48dthobbylol...  :)
18:58.57*** join/#tomcat Hellaenergy (~Hellaener@mail.ubiqinc.com)
19:15.44davidedbHey Hellaenergy.... :-) finally it work ;-)
19:16.42davidedbHellaenergy: the problem was the classpath.....
19:17.55davidedbtnx at all....now work fine and I can go lunch :-))
19:17.56HellaenergyGood Job
19:18.14davidedbsee you!
19:18.17HellaenergyHave fun
19:18.21Hellaenergypeace out.
19:36.36*** join/#tomcat akb (~akb@62.215.34.163)
19:48.09akbhella
19:48.15dthobbyhey
19:48.22akbyo?
19:48.28dthobbysup?
19:48.34akbnotin
19:48.37akbu?
19:48.48dthobbyJust waiting for Friday to end...  lol.
19:48.52akbdthobby did we talk before?
19:48.57akblol why?
19:49.02dthobbyI don't remember...
19:49.08akbnp
19:49.16dthobbyI didn't get to bed last night until after 3am, so I'm tired and want to crash.
19:49.26dthobbyI had to start at 9 this morning.
19:49.27akbare you at work?
19:49.30dthobbyYes
19:49.31akbnot good
19:49.34akbugh
19:49.44akbhow many hours more before you crash
19:49.47dthobbyIt is my own business, but I still have to be here.
19:49.52dthobbyOnly about 1 more.
19:49.53akb?
19:50.03akbr u spline?
19:50.10dthobbyspline?
19:50.17SplineSpline?
19:50.28dthobbyheh heh.  I guess not!
19:50.29akblol Spline got his own business too ;)
19:50.39akbSpline meet dthobby, dthobby meet Spline
19:50.48SplineYea, found it in the parking lot at the supermarket
19:50.49akb:) dont forget to send me my comission ;P
19:51.00akbcool.
19:51.08dthobbyNice to meet you.
19:51.12Splinehi
19:51.19akbnice to meet you too dthobby :)
19:51.25dthobby:)
19:51.32akbjk time
19:51.33akbDAILY GRIN
19:51.40akbA man showed some friends his apartment. One guest asked "What's that big
19:51.40akbbrass basin for?"
19:51.40akb"That's the talking clock," answered the man. He gave it an ear-shattering
19:51.40akbpound with a hammer.
19:51.40akbSuddenly, a voice on the other side of the wall screamed, "Knock it off you
19:51.40akbidiot! Don't you know that it's 2 a.m.?"
19:51.45akb:/
19:52.20akblol?
19:52.29akbnot funny?
19:52.38dthobbySorry, I got a phone call...  I'll laugh in a sec.
19:52.48akblol :P
19:52.59akbthat was a better joke than the previous one
19:53.29Splineheh
19:53.53akb:)
19:54.01akbhow are you Spline?
19:54.30Splineok
19:54.36Splinelittle behind on a project
19:54.42Splinesort of down, too, just let my intern go
19:54.45akbcool
19:54.55akbintern?
19:54.57akblewinsky?
19:55.00Splinehah
19:55.11akbstay away from the cigars
19:55.23akbthey can be more injurious
19:56.05akbintern as in secretary?
19:56.20Splineno
19:56.22Splineprogrammer
19:56.33akblewinsky was a programmer!
19:56.40Splineget out of here
19:56.52akbme?
19:57.03Splinehahaha thats a saying
19:57.13Splinelike "no way" or "you're kidding!"
19:57.13akbphew
19:57.25akbi thought you were really low ;)
19:57.30akbyes i get t
19:57.30akbit
19:58.04akbwhats wrong bud? why are you low?
19:58.33Splinenot low
19:58.40Splinejust not fun to let an intern go
19:58.50akbyou sacked her?
19:58.56Splinehim, and yes
19:58.58akbhim
19:59.02akboh :(
19:59.05akbwhat did he do?
19:59.27Splinejust didnt get up to speed quickly enough
19:59.41akbwas he slow?
19:59.59Splinelittle
20:00.10akblittle? :| ugh
20:00.47akbwas he expecting it?
20:01.32SplineI think so
20:01.38Splinebeen thinking about it for a month
20:02.04akba funny thing happend.
20:02.23akbWe were ordering our visiting cards.
20:02.38akbI was with the MD and writing it for him lol
20:03.01akbwe are a bit close and i at times bug him, he is of our age group 28
20:04.21akbi said i need two cards for myself one as a software engineer and another as the operations manager, he said no. so i was nagging him and he had to leave soon he said, write managing director against your name and do it fast i have to go home. and i was like YAYYYYY :))) Am the MD :P
20:04.43akbwe laughed and i kept telling him that, am the new MD hehe
20:07.40akbSpline. its ok. you can hire him back if you want, just by saying that you are giving him another chance
20:07.52akbdthobby u here?
20:08.04dthobbyJust got back off the phone....  2am..  heh heh.
20:08.17akbwhere are you right now??
20:08.21akb2AM?
20:08.30dthobbyJust north of Toronto.  Your joke.  2am.
20:08.40dthobbyOnly 10 after 4pm here.
20:08.59akbduh :) I thought its 2am there
20:09.09dthobbySorry, just refering to your joke.
20:09.18akbnp
20:09.29akbwhat does your company deal with?
20:09.31dthobbyI thought the "get out of here" misunderstanding that followed it was better though! ;)
20:09.43dthobbyI do web hosting and development and consulting.
20:10.02dthobbyMake most of my money with development and the least from hosting.
20:10.22akblol :)
20:10.30akbi really didnt knew the get out thingy
20:10.43akband yes hosting now a days dosent have much revenue left
20:10.48dthobbyStill its nice to know that I can get what I need from my web host since I am my web host!
20:11.09akblol
20:11.13akbwhat is your comapny?
20:11.17akbalentus?
20:11.25dthobbyI make a few hundred bucks each month, plus it covers expenses.  Maybe not worth it, but it does tie in with the dev well.
20:11.30dthobbyIts www.zymsys.com
20:11.51dthobbyI don't advertise the dev there because I host for a number of developers and I don't want to tick them off.
20:12.17akb:)
20:12.36dthobbyI get my dev work through a bunch of other businesses anyway, so I don't have to sell it.
20:12.59dthobbyWhat do you do, akb?
20:13.18akbwell. nothing much lol
20:13.21akb:)
20:13.43dthobbyI don't know whether to say "too bad" or "you lucky bastard"!
20:14.11akbam a software engineer of a small business co. we are into making websites too.
20:14.45dthobbyNice.  Do you do mostly java work, or do you use other platforms as well?
20:15.55akbthe problem is, our company started off as a multilevel marketing ecommerce site. but it didnt work so i was called in to look into the java thingy and it was my idea to go for app dev and webdev as MLM never works.
20:16.05akbour site was made before i joined based on ASP.
20:16.42dthobbyack, I can work in just about anything, but vbscript has to be the worst.  Even worse than perl!  lol.
20:17.13akbi never tried vb script and i cant spell pearl :D
20:17.20dthobbyNow this could get me banned, but I like c# and .net.  I've been doing most projects with that platform recently.
20:17.37dthobbyWell, .asp files are coded with vbscript.
20:17.37Splinemost of my projects are j2ee still
20:17.39Splinebut some are c#
20:17.41Splinei like it
20:17.43dthobbySweet.
20:18.00Splineasp.net is kind of a pain
20:18.04Splinecant do anything struts-ish with it
20:18.07akbc# was supposed to revolutionise the web, what happened?
20:18.08dthobbyI like the code base available for j2ee, but I like how .net makes my life easier for most of the things I do.
20:18.08SplineI still have to try maverick.net
20:18.20dthobbyI don't know maverick.
20:18.26Splineme either, yet
20:18.40dthobbyakb, give c# and asp.net some time.  They've only just release version 1.1
20:18.44SplineI wrote a rudimentary actionforward/actionmapping codebase for my current asp.net project
20:18.57Splinehad to inherit all my code behind cs files from one that did all the logic
20:19.13dthobbyI did something like that for a content management system.  I love the flexability.
20:19.25akbcool
20:19.47akbso you guys still thing asp and c# are useful tools to learn?
20:19.47Splinecool, content management
20:19.55Splinerolled your own?  or used MS?
20:20.00dthobbyMy marketing guy doesn't like me to call it that.  lol.
20:20.00Splineasp.net maybe
20:20.02Splineignore asp
20:20.21dthobbyRolled my own by creating a new base class for aspx pages derived from Page.
20:20.29Splineah ok
20:20.35akbhmm howz asp.net diff from asp? i dont know either
20:20.50dthobbyThey are aples and oranges.
20:20.54dthobbySorry, apples.
20:21.14akbapples are red.
20:21.17dthobbyYou can make asp.net look like asp, but mine sure as hell doesn't!
20:21.39dthobbyakb, if you want to play with it go to www.asp.net and download web matrix.
20:21.41akbif i learn asp first will it help me in migrating to asp.net?
20:21.43dthobbyIts a free .net IDE.
20:21.47dthobbyNo
20:21.53akbugh
20:22.00Splineakb: asp.net is compiled, asp is interpreted
20:22.05dthobbyUnless you use VB as your asp.net language.  I use c#.
20:22.10Splineasp.net is written in C# or VB.NET, real languages
20:22.11akbi got a project to work on asp and i brought myself a book on asp :/ but never read it.
20:22.13dthobbyI'd stay away from VB.
20:22.46Splineakb: Just imagine, no Server.CreateObject()
20:22.50dthobbyVB has become a powerfull language, but the syntax and stuff rubs me the wrong way.
20:22.51dthobbylol
20:23.06akb:)
20:23.12akbVB is evergreen?
20:23.13akb:/
20:23.26akbSpline cool.
20:23.49dthobbyevergreen?
20:23.56akblol forever?
20:24.35dthobbyI guess Bill's favorite language is BASIC, so we're stuck with it as long as we have him.
20:24.52akbhehe
20:25.16akbso I should avoid learning asp?
20:25.47dthobbyIts up to you.
20:25.56dthobbyI'd go straight to asp.net if I could.
20:26.14akbit wont help me in anyway if i had plans to look into asp.net?
20:26.30dthobbyOnly if you use VB as the scripting language in asp.net instead of c#.
20:26.37dthobbyIf you like java you'll prefer c#.
20:27.17dthobbyyeah.
20:28.03dthobbyI gotta run.  akb, Spline, it was nice meeting you both.  Cya.
20:31.05akbhow long do you think will it take for me to learn asp.net
20:31.05akboh
20:31.05akbtc dthobby nice meeting you too.
20:31.05akblaters
20:31.06akbSpline bug? u here?
20:31.42Splinehey here and there
20:31.50SplineI learned it in 2 days, already knowing C#
20:31.53akbhmm
20:31.56SplineI learned C# in 3 days, already knowing java
20:31.58akblol thats fast
20:32.07akb:P
20:32.10SplineIalso already knew ASP though
20:32.10akbare you a bot?
20:32.15Splinehahaha
20:32.16akbrofl
20:32.17Splinehey brb
20:32.22akbk hn
20:32.23akbhb
20:33.07HellaenergySpline: So what do you think of C#?
20:33.25akbHELLA!!
20:33.32Hellaenergyakb: www.xchat.org ;)
20:33.52akbi called you the moment i came in and u ignored me!~
20:34.04Hellaenergydon't flatter yourself
20:34.09HellaenergyI didn't see
20:34.12akblol :P
20:34.15akbwhoz flattering?
20:34.29akbJavadocs http://jakarta.apache.org/tomcat/tomcat-4.1-doc/servletapi/index.html'
20:34.30akb* Set by Hella on Tue Apr 08 17:22:11
20:34.30akb<akb> hella
20:34.30akb<dthobby> hey
20:34.30akb<akb> yo?
20:34.55Hellaenergyakb: You need some sleep
20:35.07akb:|
20:35.10akbwhy?
20:35.14akbbad mood?
20:35.43akbu mean et tu brutus?
20:35.44HellaenergyI'll teach you to slap me with a trout
20:35.55akblol
20:36.06akbits not personal you know it :)
20:36.30*** join/#tomcat hugo (~chatzilla@lns-th2-5f-81-56-237-231.adsl.proxad.net)
20:36.51akbHellaenergy do you suggest myself venturing out into M$ world? asp, asp.net, c#, VB?
20:37.04akbwow that was quick for hugo. maybe his Boss came ;)
20:37.12HellaenergyIf you have to to make money sure
20:37.49HellaenergyThat would be the only reason I would and have learned it.
20:38.03akbhmm.
20:38.12akbare you aware of those languageS?
20:38.23HellaenergyVB.NET
20:38.36akbso you know VB?
20:38.39HellaenergyVisual C++
20:38.56akb:/
20:39.06akbdont cophuse me
20:39.10akbconphuse
20:39.22Hellaenergyconfuse
20:39.25akbwhat should i learn?
20:39.38HellaenergyWhat do you want to do?
20:39.41akblol Hellaenergy i know that was just to bug
20:40.02akbi dunno what i want to do, am in that stage of my life like a rudderless boat with a torn sail. :|
20:40.32HellaenergyDo you know how to program at all?
20:40.40akbI think so.
20:40.46HellaenergyOOP?
20:40.49akbBASIC
20:40.55akbFORTRAN77
20:41.00akbvatfor77 ;)
20:41.03akbCOBOL
20:41.05akbPASCAL
20:41.06akbC
20:41.12akbOOPS
20:41.19akbJAVA
20:41.28akbphulistop.
20:41.43HellaenergyWell if you know all of that what are you trying to "learn" then?
20:41.45akbneed to erase the fullstop and concatinate a comma there.
20:42.27akbhey i know a bit of oracle and worked on sql server 2000 as well
20:42.59akbEXACTLY
20:43.07akbneither do i Hellaenergy :|
20:43.16HellaenergyIf you know C forget about VB
20:43.24akbwhy?
20:43.29HellaenergyLearn UNIX
20:43.46Hellaenergyand since your always in the #tomcat channel learn JSP/Servlets
20:43.47akbbut the UNIX cd is not available in entire kuwait :|
20:44.01Spline...
20:44.05Splinethe UNIX cd?
20:44.09Hellaenergydownload RedHat 9
20:44.11Splinehttp://www.slackware.com
20:44.15Splinehttp://www.gentoo.org
20:44.20Splinehttp://www.debian.org
20:44.24Splinehttp://www.freebsd.org
20:44.27akblinux.
20:44.30Splinehttp://www.openbsd.org
20:44.32akbi meant good old unix.
20:44.35Splinelinux ~= unix
20:44.47Splineit is close enough that I wouldn't worry about it
20:44.50Hellaenergyhttp://www.freebsd.org
20:44.52Splinegoing from linux to bsd is painles
20:44.53Splinebsd == unix
20:45.09HellaenergyYou can get Soloaris 8 for i386
20:45.12Hellaenergyfree
20:45.13akbbug, by Java I meant, servlets, Jsp, advanced java, ejb, a bit of xml, networking threads bla bla
20:45.18SplineI should say going from *some* linux distros to bsd is painless
20:45.20Hellaenergysame with SCO OpenServer
20:45.27Splineslackware being the first
20:45.36akb7*blink*
20:45.49akbdont phlood my mind with so many things.
20:46.02SplineSUmmary: there are lots of free unix variants to download and isntall
20:46.14akbam aware of all those.
20:46.32akbi got a knoppix bootable CD, the run on boot up one.
20:47.02SplineSummary 2: there is no UNIX cd.  The only unix now a days is commercial stuff and bsd.  Solaris, AIX, HP-UX, Tru64, SCO
20:47.27HellaenergyDon't forget IRIX
20:47.35Splinewhoops, good catch
20:47.37akbvutz dat?
20:47.41SplineSGI unix
20:48.13Splineits one of the best for massively multi-processor systems
20:48.49akbhmm
20:49.15akbso vats da punch line?
20:50.13akb:P
20:50.18akbwhats a pimp slap!
20:50.23akbrofl sounds punny
20:51.12akbok learnt unix in 21 days, after that? what next?
20:51.51hellabot"akb" pasted DAILY GRIN at http://www.hellaweb.com:8888/12
20:52.11akbthats for you Hellaenergy
20:52.35HellaenergyHave fun
20:53.06akbsure :)
20:54.16akbSpline tc bud l8trz
20:57.54akbthanks to who all shared sometime with me.
20:58.37*** part/#tomcat akb (~akb@62.215.34.163)
21:01.47Splinebbiaf, worktime
21:16.30*** join/#tomcat c8h10n4o2 (~caffeine@e-sharis.net)
21:17.32c8h10n4o2anyone in here willing' to answer a question? i'm behind a firewall so I can't get to hellaweb.com:8888
21:17.43c8h10n4o2therefore, can't post there.
21:18.11c8h10n4o2having issues with Tomcat config.
21:18.44c8h10n4o2I get this when I try to start Tomcat:
21:18.45c8h10n4o2<PROTECTED>
21:19.19c8h10n4o2java.lang.reflect.InvocationTargetException: java.lang.NoClassDefFoundError: org/apache/naming/JndiPermission
21:20.05c8h10n4o2I've reinstalled Tomcat twice. Deleted and reconfigged the classpaths.
21:20.25c8h10n4o2however, i get that error when I try to start Tomcat.
21:26.21c8h10n4o2If I refer to localhost:8080 I get javax.servlet.ServletException: org/apache/naming/JndiPermission
21:29.41c8h10n4o2oh well bbl
21:32.59*** join/#tomcat Spline (~dj_aia@anja.isisnetworks.net)
21:37.20*** join/#tomcat c8h10n4o2 (~caffeine@e-sharis.net)
21:42.03c8h10n4o2anyone here?
21:43.19*** part/#tomcat c8h10n4o2 (~caffeine@e-sharis.net)
21:52.07*** join/#tomcat Gnug225 (Gnug225@24.236.252.181.gha.mi.chartermi.net)
22:05.03*** join/#tomcat brad_mssw (~brad@shop.mcve.com)
22:53.07*** join/#tomcat credential (~tbye@65.107.175.30)
22:58.51DrJakeahh 19" lcd screen so sweet
22:58.54DrJakeso BIG
22:59.35DrJakedoes anyone know where i can get this file libtcl8.4.so ?
22:59.57DrJakei have looked on google and got other things that have it in it and when i try to install them..its odd they dont have download right
23:00.03DrJakewell i should try here now in my room and then ask
23:00.09DrJakeno need for an answer yet
23:14.45*** join/#tomcat tjormola (tjormola@kekkonen.cs.hut.fi)
23:17.22tjormolahello. i was wondering what's the status of 5.0 when talking about regular use with need for relatively high level of stability and performance in production environment? i'm about to start implementing the web based frontend to quite large project and i should decide whether it's completely stupid idea to even think about using tomcat5 as servlet container
23:20.09tjormolaif current cvs version of 5 is based on stable tomcat 4.1 and only bigger difference is support for newer servlet/jsp apis, then i guess i'm safe to go with 5.0 since there's no need to be backwards compatible and it'd be great opportunity to keep up with the development of servlet/jsp standards
23:29.56SplineI am not a committer, buyt my guess is that CVS HEAD includes all the experimental ideas, and will not be stable
23:59.38*** join/#tomcat Cheburashka (~asdrgsrdg@d141-101-167.home.cgocable.net)

Generated by irclog2html.pl by Jeff Waugh - find it at freshmeat.net! Modified by Tim Riker to work with blootbot logs, split per channel, etc.