From: Timothy H. <tim...@ma...> - 2002-05-31 22:43:42
|
On Friday, May 31, 2002, at 06:31 PM, david may wrote: > turnsnout the jschemewebapp jar was not built. I assumed > since ther was a web-inf dir I could just symlink it to the > webapps dir. Didn't look to see what was there. > building from the current CVS is broken. We had separated the jschemewebapp build from the usual build. You can build the webapp using % build/make-webapp from the src directory. Ken-- maybe we should have the standard build also build the webapp. David's assumption that the build would build everything is probably what most people will assume.... > > bash-2.05a$ pwd > /home/david/jscheme/jscheme/src > bash-2.05a$ ./build/bootstrap > error: cannot read: src/jscheme/REPL.java > 1 error > Exception in thread "main" java.lang.NoClassDefFoundError: jscheme/REPL > bash-2.05a$ > > I just backed up to the dir above src and did > src/build/bootstrap > > but that only partialy worked so I had no jschemewebapp.jar Yes this need to be simplified! Currently you build jscheme from above src and build the webapp from inside src...... not good! ---Tim--- > > davud > >>>>>> "Timothy" == Timothy Hickey <tim...@ma...> writes: > > Timothy> On Friday, May 31, 2002, at 04:21 PM, david may wrote: > >>> has anyone gotten jscheme servlets working in jetty? > Timothy> I haven't tried. > > Timothy> I would hope that you could just drop in a jscheme > Timothy> servlet webapp and have it work! > > Timothy> Have you gotten jetty to run other Java servlets? > > Timothy> ---Tim--- >>> one probleme is that >>> "http://java.sun.com/j2ee/dtds/web-app_2.3.dtd" does not exist >>> >>> >>> davud >>> >>> _______________________________________________________________ >>> >>> Don't miss the 2002 Sprint PCS Application Developer's >>> Conference August 25-28 in Las Vegas -- >>> http://devcon.sprintpcs.com/adp/index.cfm >>> >>> _______________________________________________ Jscheme-devel >>> mailing list Jsc...@li... >>> https://lists.sourceforge.net/lists/listinfo/jscheme-devel >>> |
From: Timothy H. <tim...@ma...> - 2002-06-01 00:32:33
Attachments:
web.xml
jschemewebapp.jar
|
I got scheme servlet working with Jetty but I had to modify the web.xml to replace all WEB-INF/scheme/... by /WEB-INF/scheme/.... I haven't yet tested whether or not this change works with the tomcat servlet container as well. If this doesn't work for you, please tell me. I've attached the modified web.xml file |
From: Timothy H. <tim...@ma...> - 2002-06-01 00:55:40
|
On Friday, May 31, 2002, at 08:32 PM, Timothy Hickey wrote: > I got scheme servlet working with Jetty but I had to modify the web.xml > to > replace all > WEB-INF/scheme/... > by > /WEB-INF/scheme/.... > I haven't yet tested whether or not this change works with the > tomcat servlet container as well. This change is OK with tomcat, so I'll check it in. ---Tim--- > > If this doesn't work for you, please tell me. > > I've attached the modified web.xml file > > > Also, here is the jschemewebapp.jar file > > in case you couldn't build it. > > ---Tim--- |
From: Ken A. <kan...@bb...> - 2002-05-31 23:31:14
|
Yes. When we rearranged things i went back to making things from the top level. Currently, this only includes lib/jscheme.jar and lib/applet.jar. Unfortunately, i won't be able to get the webapp stuff working for a week or 2, though i think were close if either of you want to try it. k At 06:43 PM 5/31/2002, Timothy Hickey wrote: >On Friday, May 31, 2002, at 06:31 PM, david may wrote: > >>turnsnout the jschemewebapp jar was not built. I assumed >>since ther was a web-inf dir I could just symlink it to the >>webapps dir. Didn't look to see what was there. >>building from the current CVS is broken. >We had separated the jschemewebapp build from the >usual build. You can build the webapp using > > % build/make-webapp > >from the src directory. > > >Ken-- maybe we should have the standard build also build the >webapp. David's assumption that the build would build everything >is probably what most people will assume.... > >> >>bash-2.05a$ pwd >>/home/david/jscheme/jscheme/src >>bash-2.05a$ ./build/bootstrap >>error: cannot read: src/jscheme/REPL.java >>1 error >>Exception in thread "main" java.lang.NoClassDefFoundError: jscheme/REPL >>bash-2.05a$ >> >>I just backed up to the dir above src and did >>src/build/bootstrap >> >>but that only partialy worked so I had no jschemewebapp.jar > >Yes this need to be simplified! >Currently you build jscheme from above src and build the webapp >from inside src...... not good! > >---Tim--- >> >>davud >> >>>>>>>"Timothy" == Timothy Hickey <tim...@ma...> writes: >> >> Timothy> On Friday, May 31, 2002, at 04:21 PM, david may wrote: >> >>>>has anyone gotten jscheme servlets working in jetty? >> Timothy> I haven't tried. >> >> Timothy> I would hope that you could just drop in a jscheme >> Timothy> servlet webapp and have it work! >> >> Timothy> Have you gotten jetty to run other Java servlets? >> >> Timothy> ---Tim--- >>>> one probleme is that >>>>"http://java.sun.com/j2ee/dtds/web-app_2.3.dtd" does not exist >>>> >>>> >>>>davud >>>> >>>>_______________________________________________________________ >>>> >>>>Don't miss the 2002 Sprint PCS Application Developer's >>>>Conference August 25-28 in Las Vegas -- >>>>http://devcon.sprintpcs.com/adp/index.cfm >>>> >>>>_______________________________________________ Jscheme-devel >>>>mailing list Jsc...@li... >>>>https://lists.sourceforge.net/lists/listinfo/jscheme-devel > > >_______________________________________________________________ > >Don't miss the 2002 Sprint PCS Application Developer's Conference >August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm > >_______________________________________________ >Jscheme-devel mailing list >Jsc...@li... >https://lists.sourceforge.net/lists/listinfo/jscheme-devel > |
From: Timothy H. <tim...@ma...> - 2002-05-31 23:46:40
|
On Friday, May 31, 2002, at 07:29 PM, Ken Anderson wrote: > Yes. When we rearranged things i went back to making things from the > top level. Currently, this only includes lib/jscheme.jar and > lib/applet.jar. > > Unfortunately, i won't be able to get the webapp stuff working for a > week or 2, though i think were close if either of you want to try it. I'll give it a try. ---tim--- > > k > > At 06:43 PM 5/31/2002, Timothy Hickey wrote: > >> On Friday, May 31, 2002, at 06:31 PM, david may wrote: >> >>> turnsnout the jschemewebapp jar was not built. I assumed >>> since ther was a web-inf dir I could just symlink it to the >>> webapps dir. Didn't look to see what was there. >>> building from the current CVS is broken. >> We had separated the jschemewebapp build from the >> usual build. You can build the webapp using >> >> % build/make-webapp >> >> from the src directory. >> >> >> Ken-- maybe we should have the standard build also build the >> webapp. David's assumption that the build would build everything >> is probably what most people will assume.... >> >>> >>> bash-2.05a$ pwd >>> /home/david/jscheme/jscheme/src >>> bash-2.05a$ ./build/bootstrap >>> error: cannot read: src/jscheme/REPL.java >>> 1 error >>> Exception in thread "main" java.lang.NoClassDefFoundError: >>> jscheme/REPL >>> bash-2.05a$ >>> >>> I just backed up to the dir above src and did >>> src/build/bootstrap >>> >>> but that only partialy worked so I had no jschemewebapp.jar >> >> Yes this need to be simplified! >> Currently you build jscheme from above src and build the webapp >> from inside src...... not good! >> >> ---Tim--- >>> >>> davud >>> >>>>>>>> "Timothy" == Timothy Hickey <tim...@ma...> writes: >>> >>> Timothy> On Friday, May 31, 2002, at 04:21 PM, david may wrote: >>> >>>>> has anyone gotten jscheme servlets working in jetty? >>> Timothy> I haven't tried. >>> >>> Timothy> I would hope that you could just drop in a jscheme >>> Timothy> servlet webapp and have it work! >>> >>> Timothy> Have you gotten jetty to run other Java servlets? >>> >>> Timothy> ---Tim--- >>>>> one probleme is that >>>>> "http://java.sun.com/j2ee/dtds/web-app_2.3.dtd" does not exist >>>>> >>>>> >>>>> davud >>>>> >>>>> _______________________________________________________________ >>>>> >>>>> Don't miss the 2002 Sprint PCS Application Developer's >>>>> Conference August 25-28 in Las Vegas -- >>>>> http://devcon.sprintpcs.com/adp/index.cfm >>>>> >>>>> _______________________________________________ Jscheme-devel >>>>> mailing list Jsc...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/jscheme-devel >> >> >> _______________________________________________________________ >> >> Don't miss the 2002 Sprint PCS Application Developer's Conference >> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm >> >> _______________________________________________ >> Jscheme-devel mailing list >> Jsc...@li... >> https://lists.sourceforge.net/lists/listinfo/jscheme-devel >> > > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm > > _______________________________________________ > Jscheme-devel mailing list > Jsc...@li... > https://lists.sourceforge.net/lists/listinfo/jscheme-devel > |