irclog2html for #tomcat on 20051006

00:00.13mickok i'll give that a try
00:03.17strobedreamlol
00:03.31micklyken: I still get the same error; The value for the useBean class attribute UserData is invalid.
00:04.28lykenwell that doesnt mean the class is incorrect
00:04.35lykencould mean your bean isnt done right
00:04.44lykenyour bean definition isnt right
00:04.54mickin my jsp file?
00:05.01lykendid you restart tomcat after putting the .class file in the WEB-INF/classes ?
00:05.17mickno i didn't
00:05.29lykenwell restart the context or tomcat
00:05.35mickok
00:05.39lykenyou can restart the context via the tomcat manager
00:07.49strobedreamlyken: what do you know about ruby rails
00:07.52strobedream?
00:08.17micknow i get: org.apache.jasper.JasperException: Unable to compile class for JSP
00:08.54mickand it tells me that this line has an error on it: <jsp:useBean id="user" class="UserData" scope ="session" />
00:10.37lykenruby on rails
00:10.53lykenits another web app platform
00:10.55lykenthats about it
00:11.14lykenis it called UserData.class ?
00:11.27mickyes
00:11.53lykenhmmz
00:12.05strobedreamI just heard some talk about it today and was a little courious since I figure eventually I'm going to need to learn a scripting lang yuck. and it looks like ruby is going to be it
00:12.20lykenheh
00:12.25jasonblyken: IBM JDK 1.5.0 ppc seems to run eclipse just fine.  :)  I'm not missing anything big anymore now..
00:12.27lykenid recommend PHP, as much as i hate it
00:12.34mickand it's in the /usr/local/jakarta-tomcat5.5/webapps/ROOT/WEB-INF/classes directory
00:12.35lykenjasonb: oooo
00:12.48lykenhmmz
00:13.56strobedreamehh I know php to an extent. I was just thinking in the area of perl, python, and ruby
00:14.03strobedreamfor the scripting lang
00:14.11jasonblyken: It must have been released either today or yesterday.  I just noticed it was available for download about 20 mins ago now.
00:14.38lykenwell perl or python would make your more employable
00:15.03strobedreamahh
00:15.08jasonbugh.. don't suggest python!
00:15.13strobedreamok unless I want to working jappan
00:15.32strobedreamyeah I have a friend who is a perl fiend and hates python more that he hates java.
00:15.41jasonbThat's easy.
00:16.02strobedream... this kid thinks that perl is all that is.
00:17.00jasonbI'm convinced that each language is for people of a different personality (different brain disorders, really).
00:17.49strobedreamlol I agree there
00:18.18micklyken: is there anything wrong with my useBean line in my jsp? <jsp:useBean id="user" class="UserData" scope ="session" />
00:18.31lykenit looks right.. mick
00:18.47lykeni gotta get ready for work, anyone able to help mick?
00:19.24strobedreamI would help if I knew anything
00:19.28micki just need to get a simple example of a java bean going, and my jsp cannot find the class
00:21.06mickin my example i have four files: 1. which is a form that asks for name, email, age.  2. which collects this information and creates a session with the useBean tag (which uses the 3rd file UserData.class)
00:21.17mickand 4. which shows the information collected
00:21.31mickit's bombing out on file 2. each time.
00:23.26mickHere is a listing of my second file:
00:23.32mick<jsp:useBean id="user" class="UserData" scope ="session" />
00:23.33mick<jsp:setProperty name="user" property="*" />
00:23.33mick<HTML>
00:23.33mick<BODY>
00:23.33mick<A HREF="NextPage.jsp">Continue</A>
00:23.33mick</BODY>
00:23.35mick</HTML>
00:24.19strobedreamhmm
00:24.24strobedreamwhats your first and second?
00:24.29strobedreamwell first
00:24.42mickok, my first file listing is:
00:24.46mick<html>
00:24.47mick<body>
00:24.47mick<form method=post action="SaveName.jsp">
00:24.47mickWhat's your name? <input type=text name=username size=20><br>
00:24.47mickWhat's your email address? <input type=text name=email size=20><br>
00:24.47mickWhat's your age? <input type=text name=age size=3><br>
00:24.49mick<input type=submit>
00:24.51mick</form>
00:24.53mick</body>
00:24.56mick</html>
00:25.03micksecond:
00:25.04mick<jsp:useBean id="user" class="UserData" scope ="session" />
00:25.04mick<jsp:setProperty name="user" property="*" />
00:25.04mick<HTML>
00:25.05mick<BODY>
00:25.07mick<A HREF="NextPage.jsp">Continue</A>
00:25.09mick</BODY>
00:25.12mick</HTML>
00:25.13lykenuse a paste site plz
00:25.21strobedream...
00:25.22strobedreamok
00:25.27mickok
00:25.39lykenrafb.net/paste pastebin.com
00:26.13strobedreamahh I just googled one
00:26.20strobedreamrafb.net/paste pastebin.com
00:26.23strobedreamGAA
00:26.43strobedreamhttp://cpp.enisoc.com/w/index.php?title=Special:PasteBin&action=add
00:26.47strobedreamthat works
00:27.38strobedreamhmm
00:28.50mickok ill use pastebin.com
00:31.01micki posted my UserData.java up there as well.
00:33.17strobedreamand its in the right dir....
00:33.19strobedreamhmm
00:33.28mickwell i think so
00:33.46mickit's in: /usr/local/jakarta-tomcat5.5/webapps/ROOT/WEB-INF/classes
00:33.55strobedreamok
00:34.07mickand my .jsp and .html code is in: /usr/local/jakarta-tomcat5.5/webapps/ROOT
00:34.48mickI've even setup a CLASSPATH which points to: /usr/local/jakarta-tomcat5.5/webapps/ROOT/WEB-INF/classes
00:35.10mickand i've compiled the UserData.java with # javac UserData.java
00:35.17mickthen I restarted tomcat
00:35.48mickand now I get an error for line 8 of the second file
00:36.59micki just pasted the error i'm getting.
00:39.13strobedreamok
00:41.31mickmaybe i have to add a type to the line 8 of the second file?
00:42.21strobedreamtry getting rid of the / th the end of line 8
00:42.41strobedreamall the examples I'm seeing dont have that.
00:43.05strobedreamI'm going purley off of patterns, im still a serious noob at jsp and tomcat
00:43.30strobedreamdoh nv about the slash
00:44.00lykenmick:
00:44.01lykenhttp://pastebin.com/384543
00:44.07lykenyou're been should look like that
00:44.13lykenit should be serializable
00:44.31lykenall the getters and setters are right
00:45.01mickok ill give that a go
00:45.23strobedreamgaa
00:45.36strobedreamim going to go back to reading about big O notation
00:49.17mickstill get the same error
00:52.08lykeni have all the useBean stuff in the top of my html
00:52.40lykenoh well workie time or something!
01:00.08mickugh! same error even with a restart
01:17.57*** join/#tomcat ibot (i=ibot@pdpc/supporter/active/TimRiker/bot/apt)
01:17.57*** topic/#tomcat is http://jakarta.apache.org/tomcat Latest stable versions of Tomcat are 5.5.9, 4.1.31, and 3.3.2 If you are a newbie, use the official distribution on Jakarta's site. Be sure to check the log files before you attempt to search for a solution. SLOW-MOTION CHANNEL: Ask your question, then wait; check back often to see if anybody answered.
01:19.15strobedreamumm \home\td\code\java
01:19.38strobedreamnv those are supposed to be /
01:19.56mickare you using linux?
01:20.25strobedreamyeah
01:20.30micki'm using freebsd5.4 it's simular
01:20.30strobedreamwell win and linux
01:20.37strobedreamso I get way messed up
01:20.45micki just use freebsd
01:21.01micki've been reading this page about tomcat
01:21.08mickhttp://www.coreservlets.com/Apache-Tomcat-Tutorial/#Set-CLASSPATH
01:21.21mickit's got some interesting things on it about setup and configuration
01:21.46mickI think 3. Set Your CLASSPATH maybe the reason my installation doesn't like java beans
01:22.30mickas it states Java2 doesn't include servlets and JSP this might be the reason i get the error: org.apache.jasper.JasperException: Unable to compile class for JSP
01:24.30strobedreamarent beans also expected to be in .jar?
01:25.21micki don't think so
01:25.42strobedreamwell that just what herberts java ref says
01:26.09strobedreamalthough I think the .jar is for suns java bean designer thingy
01:26.42mickhmm ok i might try that soon
01:26.47micki'm willing to give anything a go
01:26.52strobedreamwhy not
01:27.21strobedreamhave you tried just dumping the code into the jsp instead of trying to use a bean?
01:27.46strobedreamit should work, but in the past shoulds always seem to be the problem
01:28.43mickwell i've been going through these online tutorials about JSP, and the previous exercise to the bean was to include the code in a jsp file, which worked
01:28.58mickbut then they say using the bean is better.
01:29.18mickHere is the site: http://www.jsptut.com/FirstJsp.jsp
01:29.27mickI'm just starting out on JSP myself
01:30.00mickI've learnt Java and Javascript before so it's really only the environment i'm trying to get used to
01:30.24mickand the way JSP works is simular to PHP, but JSP is so much better
01:31.01strobedreambeans are better, for simplicity sake, but in this case just check it
01:31.18strobedreamhmm
01:31.37strobedreamit sounds like your classpath or java_home is pooched
01:32.20mickJAVA_HOME=/usr/local/jdk1.5.0
01:38.20mickbrb
01:43.49*** join/#tomcat mick (n=mick@teksup41.lnk.telstra.net)
01:44.33mickwith a reboot it still has the same error
01:44.48mickmy classpath is /usr/local/jakarta-tomcat5.5/webapps/ROOT/jsptut/WEB-INF/classes:/usr/local/jakarta-tomcat5.5/webapps/ROOT/WEB-INF/classes:/usr/local/jakarta-tomcat5.5/common/lib/servlet-api.jar:/usr/local/jakarta-tomcat5.5/common/lib/jsp-api.jar
01:52.25mickstrobedream: have you tried getting a bean to work under your installation?
01:53.00strobedreamno
01:58.38mickok i'm getting a different error now:
01:59.05mickhttp://pastebin.com/384590
02:01.22strobedreamhttp://forum.java.sun.com/thread.jspa?threadID=667600&tstart=0
02:01.24strobedreamtry that
02:01.52mickok
02:02.06strobedreamwell time to go catch a movie
02:02.33mickalright thanks for your help
02:14.23mickwhat does Unsupported major.minor version 49.0 mean?
02:14.35mickis it finding my bean class now?
02:35.12strobedreamoh
02:35.15strobedreamback
02:35.34strobedreamwhat os are you running?
02:35.41mickFreeBSD5.4
02:36.03strobedreamI think it means that your using one java ver to compile and another is used by tomcat
02:36.18mickI think it's having trouble with the JDK version which is 1.5.0_p_2
02:36.22mickyeah
02:36.39strobedreamhttp://www.javalobby.org/java/forums/m91935722.html
02:36.44strobedreamthat says it all
02:36.46mickso what version should i be using for tomcat 5.5.9
02:37.44mickthat's for tomcat 4.1 though
02:38.03strobedreamwell as near as I can tell it really doesn't matter as long as tomcat uses the version you used to compile
02:38.04micki'm using tomcat 5.5.9 which should use jdk1.5, shouldn't it
02:40.26strobedreamI think tomcat uses whatever your JAVA_HOME var is set to.
02:40.48mickmine is set to /usr/local/jdk1.5.0
02:41.03strobedreambut like I said I just got tomcat working and then got side tracked
02:42.14micki've also got jdk1.4.2 on here so maybe i should change my JAVA_HOME and test that
02:42.23micksee if it gives me a different message
02:45.06micki gotta eat, i'll be back l8r
02:46.15strobedreamyeah that should do it
03:04.57*** join/#tomcat FreemaniaX (n=Freemani@pcp0011117215pcs.elkrdg01.md.comcast.net)
03:17.37mickback
03:18.24mickwell i tried compiling with JDK1.4.2 and changed the JAVA_HOME to jdk1.4.2 restarted tomcat and now i get an 'Unable to compile class for JSP error'
03:18.35mickI'm going around in circles here
03:25.46strobedreamahh
03:26.19strobedreamok so we know you want tomcat and your java home to point to the same things
03:27.40mickmaybe, i cannot get it back to that other error message i had now
03:28.19strobedreamok
03:28.31strobedreamI hate it when this happens in debugging something
03:28.45mickyeah so do i
03:29.13strobedreamso now it says that it cant compile class for JSP error
03:29.32strobedream...
03:29.36strobedreamjust wait for lyken
03:29.41strobedreamhe know his stuff
03:29.41mickyes
03:29.54mickhttp://pastebin.com/384643
03:30.01strobedreamalthough this problem is more rewarding to work on then big O notation
03:32.26*** join/#tomcat sanj (n=sanj@202.62.76.232)
03:32.46mickif i remove the .class file all together i get this error
03:32.47mickhttp://pastebin.com/384647
03:33.12mickso it looks like the program responds to the class file missing
03:33.19mickit must know where it is
03:33.30mickso that's something rightr
03:36.44strobedreamyeah
03:36.53strobedreamwe know its looking in the right place
03:37.05strobedreamI'm reading through tomcat kickstart
04:04.27*** join/#tomcat sanj (n=sanj@202.62.76.232)
04:16.36*** join/#tomcat jasonb (i=noneoyer@adsl-66-124-73-250.dsl.sntc01.pacbell.net)
04:19.23*** join/#tomcat mick (n=mick@teksup41.lnk.telstra.net)
04:19.36*** join/#tomcat vinse (n=vinse@ppp-71-139-3-176.dsl.snfc21.pacbell.net)
04:19.49*** join/#tomcat Chmmr (n=chmmr@clusterfw.beelinegprs.ru)
04:20.46micki rebooted and now i'm getting the (Unsupported major.minor version 49.0) error again
04:24.44*** join/#tomcat IRCMonkey (n=chatzill@haw-206-126-135-113.vel.net)
04:25.07IRCMonkeytest
04:39.33*** join/#tomcat ibot (i=ibot@pdpc/supporter/active/TimRiker/bot/apt)
04:39.33*** topic/#tomcat is http://jakarta.apache.org/tomcat Latest stable versions of Tomcat are 5.5.9, 4.1.31, and 3.3.2 If you are a newbie, use the official distribution on Jakarta's site. Be sure to check the log files before you attempt to search for a solution. SLOW-MOTION CHANNEL: Ask your question, then wait; check back often to see if anybody answered.
05:04.51mickstrobedream are u using tomcat 5.5.9 and JDK1.5.0?
05:05.07lykenyes he is
05:05.45micklyken: I'm still trying to get this working
05:06.07micki keep getting this (Unsupported major.minor version 49.0) error
05:06.55lykenare you compiling the right version of java?
05:07.18micki'm compiling with JDK1.5.0_p2
05:07.36mickwith command: javac UserData.java
05:08.15micksome version must be wrong here though
05:09.01lykenyer
05:09.13lykenid cd into the JAVA_HOME
05:09.17lykenand javac it there
05:09.34lykenwhat does $JAVA_HOME/bin/javac UserData.java do?
05:11.26micksame error
05:12.01lykenhmmz
05:12.11lykenwhat $JAVA_HOME is tomcat using?
05:12.24mick/usr/local/jdk1.5.0
05:12.28lykenoks
05:12.42lykenand /usr/local/jdk1.5.0/bin/javac UserData.java
05:12.49lykenand moving that class file over ?
05:13.04lykendelete the old one
05:13.07lykendont overwrite
05:13.15mickI did delete it before
05:13.15lykenthen restart tomcat
05:13.20mickI'll do that
05:13.31lykenim sure im prolly getting you to repeat stuff
05:13.37lykenbut i cant scroll up and check it out
05:15.03micknow i get an 'Unable to compile class for JSP'
05:15.05mickerror
05:15.06jasonblyken: Looks like 5.5.12 is a stable release.  So far, no bad news, and several stable votes.
05:15.13lykencools
05:15.28lykenjasonb: im writing my first virus since win95 atm
05:15.48jasonblyken: win viruses are c00l!
05:15.55lykenlol
05:15.56lykenum
05:15.59lykenthis is a java virus
05:16.04lykenfor cell phones
05:16.08jasonbReally?  Oh.. J2ME?
05:16.11lykenyer
05:16.15jasonbSweet!
05:16.23jasonbMake it dial 911.  :)
05:16.23lykenyer using it to test my protocol idea
05:16.27lykenand if it works
05:16.34lykenill be able to implement it :)
05:16.47lykenthe actual protocol not the virus 'prototype'
05:16.53lykenmaybe this will get me some face value :)
05:16.56jasonbThat rocks..
05:17.17lykenyer i was discussing it in th emeeting i just had
05:17.22lykenand one of the other prof's came int o the room
05:17.31jasonbCan you yet say what kind of a hole it is?
05:17.32lyken'are discussing a virus on cell phones?'
05:17.44lykennot yet no
05:17.48lykenbut if it works
05:17.48jasonbok.
05:17.50jasonbheh
05:17.57lykenim afraid it'll break stuff
05:18.00lykenmine will be harmless
05:18.08lykenbut it will be repurposed
05:18.11jasonbThat's quite cool though.. keep working on it.
05:18.16lykenyer
05:18.35lykeni read the bluetooth spec and then the j2me spec and thought, i bet i could do this!
05:18.44lykenso ill see what happens
05:18.52lykenit might blow up in my face, only time and coding will see
05:22.07micklyken: i've been looking at which versions of JDK i have on my machine, i have linux_1.4.2, JDK1.4.2, JDK1.5.0
05:22.19lykenwtf
05:22.21lykenwhy so many
05:22.26lykenby the looks of it
05:22.30mickso i tried to delete some, the only one which didn't delete was 1.4.2
05:22.31lykensomething isnt compiling right.
05:22.39lykenyou ned 1.5 to run 5.5.9
05:22.47mickyeah that's what i though
05:22.56mickall I need is JDK1.5.0
05:23.00mickill delete the rest
05:40.36*** join/#tomcat ibot_ (i=ibot@rikers.org)
05:40.36*** topic/#tomcat is http://jakarta.apache.org/tomcat Latest stable versions of Tomcat are 5.5.9, 4.1.31, and 3.3.2 If you are a newbie, use the official distribution on Jakarta's site. Be sure to check the log files before you attempt to search for a solution. SLOW-MOTION CHANNEL: Ask your question, then wait; check back often to see if anybody answered.
05:53.35*** join/#tomcat ibot (i=ibot@pdpc/supporter/active/TimRiker/bot/apt)
05:53.35*** topic/#tomcat is http://jakarta.apache.org/tomcat Latest stable versions of Tomcat are 5.5.9, 4.1.31, and 3.3.2 If you are a newbie, use the official distribution on Jakarta's site. Be sure to check the log files before you attempt to search for a solution. SLOW-MOTION CHANNEL: Ask your question, then wait; check back often to see if anybody answered.
06:17.25mickWhen I look into the Makefile for jakarta-tomcat55 it says 'JAVA_VERSION= 1.4+'
06:17.38mickso i could use JDK1.4.2 with it?
06:17.44lykenwhy are you making tomcat?
06:17.53lykenyou should be extracting a bin that installs
06:18.26mickcoz it's FreeBSD
06:20.35*** join/#tomcat vinse (n=vinse@ppp-71-139-3-176.dsl.snfc21.pacbell.net)
06:21.04mickand most people using freebsd install things through the ports collection and compile everything from source.
06:21.27lykenheh
06:21.34lykentomcat is a fine exception..
06:23.12mickok, i'll give it a go after JDK has finished installing.
06:23.40lykeni dont think ive ever compiled tomcat
06:32.00micki downloaded the binary, but it looks exactly the same as what i have installed allready
06:49.57*** join/#tomcat dreivier (n=dreivier@port-212-202-43-57.dynamic.qsc.de)
07:48.00*** join/#tomcat kousuke (n=kikuchi@221x251x19x21.ap221.ftth.ucom.ne.jp)
08:11.54*** join/#tomcat dreivier (n=dreivier@p54B36091.dip.t-dialin.net)
08:57.00*** join/#tomcat Vanuatoo (n=vanob@213.200.4.246)
10:19.54*** join/#tomcat harpoon (i=stueber@ultra20.rbg.informatik.tu-darmstadt.de)
10:57.11*** join/#tomcat jj_ (n=chatzill@61.11.104.133)
10:57.34jj_hi
10:59.57*** join/#tomcat dreivier (n=dreivier@p54B36091.dip.t-dialin.net)
11:07.29*** join/#tomcat randrew (n=raj@dolmen.cc.columbia.edu)
11:54.43*** join/#tomcat ibot (i=ibot@pdpc/supporter/active/TimRiker/bot/apt)
11:54.43*** topic/#tomcat is http://jakarta.apache.org/tomcat Latest stable versions of Tomcat are 5.5.9, 4.1.31, and 3.3.2 If you are a newbie, use the official distribution on Jakarta's site. Be sure to check the log files before you attempt to search for a solution. SLOW-MOTION CHANNEL: Ask your question, then wait; check back often to see if anybody answered.
12:27.54*** join/#tomcat dreivier (n=dreivier@port-212-202-43-57.dynamic.qsc.de)
13:15.08*** join/#tomcat ibot (i=ibot@pdpc/supporter/active/TimRiker/bot/apt)
13:15.08*** topic/#tomcat is http://jakarta.apache.org/tomcat Latest stable versions of Tomcat are 5.5.9, 4.1.31, and 3.3.2 If you are a newbie, use the official distribution on Jakarta's site. Be sure to check the log files before you attempt to search for a solution. SLOW-MOTION CHANNEL: Ask your question, then wait; check back often to see if anybody answered.
13:40.06*** join/#tomcat randrew (n=raj@dolmen.cc.columbia.edu)
14:15.54*** join/#tomcat putzel (n=in@75-104-204-62-pool.cable.lan.ch)
14:29.23*** join/#tomcat Vanuatoo (n=vanob@227-35.adsl.caucasus.net)
14:36.03*** join/#tomcat ibot_ (i=ibot@rikers.org)
14:36.03*** topic/#tomcat is http://jakarta.apache.org/tomcat Latest stable versions of Tomcat are 5.5.9, 4.1.31, and 3.3.2 If you are a newbie, use the official distribution on Jakarta's site. Be sure to check the log files before you attempt to search for a solution. SLOW-MOTION CHANNEL: Ask your question, then wait; check back often to see if anybody answered.
15:02.29*** join/#tomcat dreivier (n=dreivier@port-212-202-43-57.dynamic.qsc.de)
15:03.16*** join/#tomcat guigouz (n=guigouz@c906fcaa.virtua.com.br)
15:03.43guigouzanyone seen something like tomcat starts, logs are ok, but it doesn't answer request ?
15:03.47guigouz*requests
15:03.55guigouzthen, if I restart it, it works
15:04.01guigouztomcat 5.5.9, jsk 1.5
15:04.03guigouzjdk
15:14.37*** join/#tomcat levon (n=levon@62.48.88.185)
15:40.37*** join/#tomcat linuxfreck (n=freck@fry.fmi.uni-passau.de)
15:54.36*** join/#tomcat dreivier (n=dreivier@port-212-202-43-57.dynamic.qsc.de)
16:07.34*** join/#tomcat valmont (n=chrishol@838host37.starwoodbroadband.com)
16:08.07*** join/#tomcat vinse (n=vinse@ppp-71-139-63-143.dsl.snfc21.pacbell.net)
16:43.30*** join/#tomcat jasonb (i=noneoyer@adsl-66-124-73-250.dsl.sntc01.pacbell.net)
16:59.03*** join/#tomcat valmont (n=chrishol@838host37.starwoodbroadband.com)
17:35.25*** join/#tomcat dreivier (n=dreivier@port-212-202-43-57.dynamic.qsc.de)
17:47.20*** join/#tomcat FreemaniaX (n=Freemani@pcp0011117215pcs.elkrdg01.md.comcast.net)
17:48.45puffOdd...  http://pastebin.com/385196
17:51.45*** join/#tomcat puff (i=puff@66.45.34.102)
18:13.47*** join/#tomcat kadams (n=java_pro@adsl-80-24-241.bgk.bellsouth.net)
18:37.55*** join/#tomcat valmont (n=chrishol@838host37.starwoodbroadband.com)
19:04.27*** join/#tomcat aiyaiyairc (i=aleuaooo@c-67-161-177-74.hsd1.ca.comcast.net)
19:54.56*** join/#tomcat yel (n=yel@xdsl-84-44-177-35.netcologne.de)
19:57.00*** part/#tomcat guigouz (n=guigouz@c906fcaa.virtua.com.br)
19:57.27*** part/#tomcat xzu (n=otto@brucester.a20.net)
20:09.46*** part/#tomcat randrew (n=raj@dolmen.cc.columbia.edu)
20:22.44*** join/#tomcat InsomniaCity (n=ic@5u.distribute.me.uk)
20:25.02*** join/#tomcat InsomniaCity (n=Insomnia@raptor.ukc.ac.uk)
20:26.06InsomniaCityHi! Can anyone help me with compiling mod_jk for my Apache 1.3 install? The docs say to run "./configure --with-apxs=/usr/sbin/apxs", but I don't appear to have apxs... what can I do?
20:27.46linuxfreckis apache provided by your distribution?
20:28.34*** join/#tomcat jasonb (i=noneoyer@adsl-66-124-73-250.dsl.sntc01.pacbell.net)
20:29.41InsomniaCityoh, rarr, debian package
20:29.58linuxfreckInsomniaCity: install apache-dev
20:30.31linuxfreckapxs is in /usr/bin then
20:31.56InsomniaCityone step ahead, gone straight to mod_jk :P
20:32.57linuxfreckheh
21:58.05*** join/#tomcat joered (n=chatter@81-208-83-246.fastres.net)
22:05.10*** join/#tomcat putzel (n=in@75-104-204-62-pool.cable.lan.ch)
23:40.00micklyken u on?

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.