From: Andrew G. <an...@zo...> - 2003-11-18 00:04:40
|
Hi, Last week I mentioned on the dynapi-help list that I had written a Java servlet that communicated with the dynapi IOElement. I feel that this work is now ready for a wider audience, so I'm anxious to put it onto sourceforge. I see two options: 1: I create a new project on sourceforge called "sodaservlet" or some such, and manage it myself. 2: It might be possible to put it onto sourceforge as some kind of "sub-project". The whole thing includes a number of dependent jar files and when zipped up weighs in at about 550KB, so I think it should be a separate download to the dynapi library. Any opinions or suggestions? Andrew. |
From: Leif W <war...@us...> - 2003-11-18 00:13:49
|
Whoa! 550kb for SODA sounds a bit heavy. What's in that thing? :) I think something like the SODA should all maybe be grouped together and split off onto a sub project like we did with the VDE. Having the actual server code for arious languages in the examples folder was convenient at first but it's a bit awkward now. And as more languages come in and some may be heavier than others, maybe the whole SODA stuff could be split off into a sub project. Ideas? Leif ----- Original Message ----- From: "Andrew Gillett" <an...@zo...> To: "dynapi-dev" <dyn...@li...> Sent: Monday, November 17, 2003 7:04 PM Subject: [Dynapi-Dev] Java SODA servlet > Hi, > > Last week I mentioned on the dynapi-help list that I had > written a Java servlet that communicated with the dynapi > IOElement. I feel that this work is now ready for a wider > audience, so I'm anxious to put it onto sourceforge. > > I see two options: > > 1: I create a new project on sourceforge called "sodaservlet" > or some such, and manage it myself. > > 2: It might be possible to put it onto sourceforge as some > kind of "sub-project". > > The whole thing includes a number of dependent jar files and > when zipped up weighs in at about 550KB, so I think it > should be a separate download to the dynapi library. > > Any opinions or suggestions? > > > Andrew. > > > > > > ------------------------------------------------------- > This SF. Net email is sponsored by: GoToMyPC > GoToMyPC is the fast, easy and secure way to access your computer from > any Web browser or wireless device. Click here to Try it Free! > https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: Andrew G. <an...@zo...> - 2003-11-18 00:25:00
|
Leif W wrote: >Whoa! 550kb for SODA sounds a bit heavy. What's in that thing? :) > The biggest part are the dependant jars: 352668 09-13-03 14:37 sodaservlet/logging/jars/log4j-1.2.8.jar 118726 08-13-03 12:02 sodaservlet/soda/jars/commons-beanutils.jar 100632 08-13-03 12:02 sodaservlet/soda/jars/commons-digester.jar 31605 09-13-03 14:48 sodaservlet/soda/jars/commons-logging.jar I guess I could drop the log4j library and use JDK1.4 logging (yuk!) instead. It's only used by the example Calculator web service anyway. When I get home this evening I might do just that. > I >think something like the SODA should all maybe be grouped together and split >off onto a sub project like we did with the VDE. Having the actual server >code for arious languages in the examples folder was convenient at first but >it's a bit awkward now. And as more languages come in and some may be >heavier than others, maybe the whole SODA stuff could be split off into a >sub project. Ideas? > >Leif > >----- Original Message ----- >From: "Andrew Gillett" <an...@zo...> >To: "dynapi-dev" <dyn...@li...> >Sent: Monday, November 17, 2003 7:04 PM >Subject: [Dynapi-Dev] Java SODA servlet > > > >>Hi, >> >>Last week I mentioned on the dynapi-help list that I had >>written a Java servlet that communicated with the dynapi >>IOElement. I feel that this work is now ready for a wider >>audience, so I'm anxious to put it onto sourceforge. >> >>I see two options: >> >>1: I create a new project on sourceforge called "sodaservlet" >>or some such, and manage it myself. >> >>2: It might be possible to put it onto sourceforge as some >>kind of "sub-project". >> >>The whole thing includes a number of dependent jar files and >>when zipped up weighs in at about 550KB, so I think it >>should be a separate download to the dynapi library. >> >>Any opinions or suggestions? >> >> >>Andrew. >> >> >> >> >> >>------------------------------------------------------- >>This SF. Net email is sponsored by: GoToMyPC >>GoToMyPC is the fast, easy and secure way to access your computer from >>any Web browser or wireless device. Click here to Try it Free! >>https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl >>_______________________________________________ >>Dynapi-Dev mailing list >>Dyn...@li... >>http://www.mail-archive.com/dyn...@li.../ >> >> >> > > > > >------------------------------------------------------- >This SF. Net email is sponsored by: GoToMyPC >GoToMyPC is the fast, easy and secure way to access your computer from >any Web browser or wireless device. Click here to Try it Free! >https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl >_______________________________________________ >Dynapi-Dev mailing list >Dyn...@li... >http://www.mail-archive.com/dyn...@li.../ > > > |
From: Andrew G. <an...@zo...> - 2003-11-20 03:30:55
|
Leif W wrote: >I >think something like the SODA should all maybe be grouped together and split >off onto a sub project like we did with the VDE. Having the actual server >code for arious languages in the examples folder was convenient at first but >it's a bit awkward now. And as more languages come in and some may be >heavier than others, maybe the whole SODA stuff could be split off into a >sub project. Ideas? > >Leif > I agree that the examples folder is probably not the best place for server-side scripts. I think that it would be a good to move them to another folder but still include them in the DynAPI distribution. The java stuff that I've written is a little more involved. It's a servlet that must be configured to publish other classes as SODA web services and includes everything needed to deploy such a servlet. I've listed the source files below. My question is - should this java stuff be put into its own little directory that I can manage somewhere in the dynapi site - a separate CVS module or some such thing perhaps? Or should I just go off on my own and create a separate sourceforge project for it? Andrew. Source file list: 4632 ./build.xml 585 ./dynapi.properties 5614 ./readme.txt 2989 ./calc/src/net/sf/dynapi/examples/Calc.java 9833 ./calc/web/examples/dynapi.util.ioelement-soda.html 218 ./calc/web/images/calc.gif 5006 ./calc/web/WEB-INF/soda-config.xml 3318 ./logging/src/net/sf/dynapi/Log4jInit.java 3110 ./logging/src/net/sf/dynapi/LogJdk14Init.java 118726 ./soda/jars/commons-beanutils.jar 165119 ./soda/jars/commons-collections.jar 100632 ./soda/jars/commons-digester.jar 31605 ./soda/jars/commons-logging.jar 3188 ./soda/src/net/sf/dynapi/MethodBean.java 13787 ./soda/src/net/sf/dynapi/ParamBean.java 4767 ./soda/src/net/sf/dynapi/ServiceBean.java 1086 ./soda/src/net/sf/dynapi/SodaConfig.java 1453 ./soda/src/net/sf/dynapi/SodaDispatch.java 975 ./soda/src/net/sf/dynapi/SodaInit.java 953 ./soda/src/net/sf/dynapi/SodaLogin.java 48485 ./soda/src/net/sf/dynapi/SodaServlet.java 1671 ./soda/web/WEB-INF/digesterRules.xml 1187 ./soda/web/WEB-INF/web.xml |
From: Leif W <war...@us...> - 2003-11-20 03:45:13
|
----- Original Message ----- From: "Andrew Gillett" <an...@zo...> To: <dyn...@li...> Sent: Wednesday, November 19, 2003 10:30 PM Subject: Re: [Dynapi-Dev] Java SODA servlet > Leif W wrote: > > >I > >think something like the SODA should all maybe be grouped together and split > >off onto a sub project like we did with the VDE. Having the actual server > >code for arious languages in the examples folder was convenient at first but > >it's a bit awkward now. And as more languages come in and some may be > >heavier than others, maybe the whole SODA stuff could be split off into a > >sub project. Ideas? > > > >Leif > > > > I agree that the examples folder is probably not the best place for > server-side scripts. I think that it would be a good to move them > to another folder but still include them in the DynAPI distribution. > > The java stuff that I've written is a little more involved. It's > a servlet that must be configured to publish other classes as SODA web > services and includes everything needed to deploy such a servlet. > I've listed the source files below. > > My question is - should this java stuff be put into its own little > directory that I can manage somewhere in the dynapi site - a separate > CVS module or some such thing perhaps? Or should I just go off on my > own and create a separate sourceforge project for it? Probably a separate module. I don't think I have permissions to set that up. Leif > Andrew. > > > > > Source file list: > > 4632 ./build.xml > 585 ./dynapi.properties > 5614 ./readme.txt > 2989 ./calc/src/net/sf/dynapi/examples/Calc.java > 9833 ./calc/web/examples/dynapi.util.ioelement-soda.html > 218 ./calc/web/images/calc.gif > 5006 ./calc/web/WEB-INF/soda-config.xml > 3318 ./logging/src/net/sf/dynapi/Log4jInit.java > 3110 ./logging/src/net/sf/dynapi/LogJdk14Init.java > 118726 ./soda/jars/commons-beanutils.jar > 165119 ./soda/jars/commons-collections.jar > 100632 ./soda/jars/commons-digester.jar > 31605 ./soda/jars/commons-logging.jar > 3188 ./soda/src/net/sf/dynapi/MethodBean.java > 13787 ./soda/src/net/sf/dynapi/ParamBean.java > 4767 ./soda/src/net/sf/dynapi/ServiceBean.java > 1086 ./soda/src/net/sf/dynapi/SodaConfig.java > 1453 ./soda/src/net/sf/dynapi/SodaDispatch.java > 975 ./soda/src/net/sf/dynapi/SodaInit.java > 953 ./soda/src/net/sf/dynapi/SodaLogin.java > 48485 ./soda/src/net/sf/dynapi/SodaServlet.java > 1671 ./soda/web/WEB-INF/digesterRules.xml > 1187 ./soda/web/WEB-INF/web.xml > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > |