|
From: Martin K. <ma...@o-...> - 2006-05-29 06:04:25
|
Hello Spring developers! I'm well impressed with Spring 2.0, not least with the support you now have for incorporating scripting languages. It opens up the possibility of mixing and matching languages within the framework, which is very nice indeed. Since I work on a specialised language project myself, I decided to try writing up the necessary Spring adaptors to support it. It turned out to be quite easy, I simply followed the example of the JRubyScriptFactory and JRubyScriptUtils. The result is that I can create o:XML [1] beans, pass them any type of Java object as function arguments and receive Java objects back. Sweet. The adaptor automatically translates between DOM and the o:XML native (first-class) XML objects. It also converts between primary o:XML and Java types, while all other Java classes can still be used seamlessly in o:XML. o:XML beans could be useful for most any type of XML processing, whether it involves generating, transforming or extracting data (o:XML has builtin XPath and regex, plus full OO, exceptions etc). The support might also be interesting for achieving efficient XML to RDBMS mapping, which is another thing that o:XML does quite well (more info on the website, below). So, I've got the adaptors and tests all ready, would you like them as a patch against Spring CVS? Where do I send it to? On second thoughts it can't be a diff, since the files are in new directories - zipfile anyone? There's some (very basic) examples included with the tests. Maybe, once you've tried it out, you'll want to consider including it with Spring! best regards, /m ps I'm not on the list so please cc me in on any replies. [1] http://www.o-xml.org/ |
|
From: Colin S. <col...@ex...> - 2006-05-29 14:10:43
|
Martin, At a minimum, you should post the code into a Jira issue so it's not lost. W/regards to the idea of including this code in Spring itself, it's mostly a function of how relevant this is to the average Spring user. If it's not relevant enough, then it could possibly live in either Spring-Modules, or in the o:XML project itself. Regards, Colin On 5/29/2006 2:04 AM, Martin Klang wrote: > Hello Spring developers! > > I'm well impressed with Spring 2.0, not least with the support you > now have for incorporating scripting languages. > It opens up the possibility of mixing and matching languages within > the framework, which is very nice indeed. > > Since I work on a specialised language project myself, I decided to > try writing up the necessary Spring adaptors to support it. > It turned out to be quite easy, I simply followed the example of the > JRubyScriptFactory and JRubyScriptUtils. > > The result is that I can create o:XML [1] beans, pass them any type > of Java object as function arguments and receive Java objects back. > Sweet. > The adaptor automatically translates between DOM and the o:XML native > (first-class) XML objects. It also converts between primary o:XML and > Java types, while all other Java classes can still be used seamlessly > in o:XML. > > o:XML beans could be useful for most any type of XML processing, > whether it involves generating, transforming or extracting data > (o:XML has builtin XPath and regex, plus full OO, exceptions etc). > > The support might also be interesting for achieving efficient XML to > RDBMS mapping, which is another thing that o:XML does quite well > (more info on the website, below). > > So, I've got the adaptors and tests all ready, would you like them as > a patch against Spring CVS? Where do I send it to? On second thoughts > it can't be a diff, since the files are in new directories - zipfile > anyone? > There's some (very basic) examples included with the tests. > Maybe, once you've tried it out, you'll want to consider including it > with Spring! > > best regards, > > /m > > ps I'm not on the list so please cc me in on any replies. > > [1] http://www.o-xml.org/ > > > > ------------------------------------------------------- > All the advantages of Linux Managed Hosting--Without the Cost and Risk! > Fully trained technicians. The highest number of Red Hat > certifications in > the hosting industry. Fanatical Support. Click to learn more > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > |
|
From: Martin K. <ma...@o-...> - 2006-05-29 15:20:03
|
Colin, thanks for the reply - I've added a Jira issue with the code: http://opensource.atlassian.com/projects/spring/browse/SPR-2070 I guess the relevance to your average user depends on your point of view. If you were to ask how many of your current users use o:XML you'd have a pretty small percentage. The same would probably be true for JRuby, Groovy and BeanShell. If instead you ask how many Spring users could benefit from o:XML scripted beans, the answer would be most or nearly all - that's how ubiquitous XML has become. Anyhow that's my point of view, for what it's worth! regards, /m On 29 May 2006, at 15:09, Colin Sampaleanu wrote: > Martin, > > At a minimum, you should post the code into a Jira issue so it's > not lost. W/regards to the idea of including this code in Spring > itself, it's mostly a function of how relevant this is to the > average Spring user. If it's not relevant enough, then it could > possibly live in either Spring-Modules, or in the o:XML project > itself. > > Regards, > Colin |
|
From: Eugene K. <eu...@pl...> - 2006-05-29 15:43:31
|
Colin, In my experience it wont help much. Most of the new issues automatically assigned to Juergen who already have over 260 issues assigned, so they all get burried up there. I wonder if Spring team is doing any balancing of the work load at all? regards, Eugene Colin Sampaleanu wrote: > Martin, > > At a minimum, you should post the code into a Jira issue so it's not > lost. W/regards to the idea of including this code in Spring itself, > it's mostly a function of how relevant this is to the average Spring > user. If it's not relevant enough, then it could possibly live in > either Spring-Modules, or in the o:XML project itself. > > Regards, > Colin > > > On 5/29/2006 2:04 AM, Martin Klang wrote: > >> Hello Spring developers! >> >> I'm well impressed with Spring 2.0, not least with the support you >> now have for incorporating scripting languages. >> It opens up the possibility of mixing and matching languages within >> the framework, which is very nice indeed. >> >> Since I work on a specialised language project myself, I decided to >> try writing up the necessary Spring adaptors to support it. >> It turned out to be quite easy, I simply followed the example of the >> JRubyScriptFactory and JRubyScriptUtils. >> >> The result is that I can create o:XML [1] beans, pass them any type >> of Java object as function arguments and receive Java objects back. >> Sweet. >> The adaptor automatically translates between DOM and the o:XML >> native (first-class) XML objects. It also converts between primary >> o:XML and Java types, while all other Java classes can still be used >> seamlessly in o:XML. >> >> o:XML beans could be useful for most any type of XML processing, >> whether it involves generating, transforming or extracting data >> (o:XML has builtin XPath and regex, plus full OO, exceptions etc). >> >> The support might also be interesting for achieving efficient XML to >> RDBMS mapping, which is another thing that o:XML does quite well >> (more info on the website, below). >> >> So, I've got the adaptors and tests all ready, would you like them >> as a patch against Spring CVS? Where do I send it to? On second >> thoughts it can't be a diff, since the files are in new directories >> - zipfile anyone? >> There's some (very basic) examples included with the tests. >> Maybe, once you've tried it out, you'll want to consider including >> it with Spring! >> >> best regards, >> >> /m >> >> ps I'm not on the list so please cc me in on any replies. >> >> [1] http://www.o-xml.org/ >> |
|
From: Rob H. <ro...@in...> - 2006-05-30 09:58:50
|
Only 260? - have you met Juergen? :) We are balancing the issues pretty well right now - Juergen does read every issue and reassigns them as needed. I agree that we can probably be a little smarter here - I'll have a chat with Juergen and see what we can do to balance out the issue load a little more. Regards, Rob On 29 May 2006, at 16:43, Eugene Kuleshov wrote: > Colin, > > In my experience it wont help much. Most of the new issues > automatically assigned to Juergen who already have over 260 issues > assigned, so they all get burried up there. I wonder if Spring team > is doing any balancing of the work load at all? > > regards, > Eugene > > > Colin Sampaleanu wrote: >> Martin, >> >> At a minimum, you should post the code into a Jira issue so it's >> not lost. W/regards to the idea of including this code in Spring >> itself, it's mostly a function of how relevant this is to the >> average Spring user. If it's not relevant enough, then it could >> possibly live in either Spring-Modules, or in the o:XML project >> itself. >> >> Regards, >> Colin >> >> >> On 5/29/2006 2:04 AM, Martin Klang wrote: >> >>> Hello Spring developers! >>> >>> I'm well impressed with Spring 2.0, not least with the support >>> you now have for incorporating scripting languages. >>> It opens up the possibility of mixing and matching languages >>> within the framework, which is very nice indeed. >>> >>> Since I work on a specialised language project myself, I decided >>> to try writing up the necessary Spring adaptors to support it. >>> It turned out to be quite easy, I simply followed the example of >>> the JRubyScriptFactory and JRubyScriptUtils. >>> >>> The result is that I can create o:XML [1] beans, pass them any >>> type of Java object as function arguments and receive Java >>> objects back. Sweet. >>> The adaptor automatically translates between DOM and the o:XML >>> native (first-class) XML objects. It also converts between >>> primary o:XML and Java types, while all other Java classes can >>> still be used seamlessly in o:XML. >>> >>> o:XML beans could be useful for most any type of XML processing, >>> whether it involves generating, transforming or extracting data >>> (o:XML has builtin XPath and regex, plus full OO, exceptions etc). >>> >>> The support might also be interesting for achieving efficient XML >>> to RDBMS mapping, which is another thing that o:XML does quite >>> well (more info on the website, below). >>> >>> So, I've got the adaptors and tests all ready, would you like >>> them as a patch against Spring CVS? Where do I send it to? On >>> second thoughts it can't be a diff, since the files are in new >>> directories - zipfile anyone? >>> There's some (very basic) examples included with the tests. >>> Maybe, once you've tried it out, you'll want to consider >>> including it with Spring! >>> >>> best regards, >>> >>> /m >>> >>> ps I'm not on the list so please cc me in on any replies. >>> >>> [1] http://www.o-xml.org/ >>> > > > > ------------------------------------------------------- > All the advantages of Linux Managed Hosting--Without the Cost and > Risk! > Fully trained technicians. The highest number of Red Hat > certifications in > the hosting industry. Fanatical Support. Click to learn more > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=107521&bid=248729&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > -- Rob Harrop VP, Technology Strategy Interface21 - Spring Services from the Source http://www.springframework.com |
|
From: Eugene K. <eu...@pl...> - 2006-05-31 15:16:48
|
Hi Rob, I am glad you did some cleanup before summer. Now issue assignment look more reasonable. :-) We'll see how unassigned issues wold progress from now... regards, Eugene Rob Harrop wrote: > Only 260? - have you met Juergen? :) > > We are balancing the issues pretty well right now - Juergen does read > every issue and reassigns them as needed. I agree that we can probably > be a little smarter here - I'll have a chat with Juergen and see what > we can do to balance out the issue load a little more. > > Regards, > > Rob > On 29 May 2006, at 16:43, Eugene Kuleshov wrote: > >> Colin, >> >> In my experience it wont help much. Most of the new issues >> automatically assigned to Juergen who already have over 260 issues >> assigned, so they all get burried up there. I wonder if Spring team >> is doing any balancing of the work load at all? >> >> regards, >> Eugene |
|
From: Rob H. <ro...@in...> - 2006-05-31 17:25:23
|
I plan to spend some time on making it easy for us to see what is happening with unassigned issues via RSS and the like. My plan would be to get a nightly/weekly digest of new features but I need to chat with jiramike first... On 31 May 2006, at 16:16, Eugene Kuleshov wrote: > Hi Rob, > > I am glad you did some cleanup before summer. Now issue assignment > look more reasonable. :-) > We'll see how unassigned issues wold progress from now... > > regards, > Eugene > > > Rob Harrop wrote: >> Only 260? - have you met Juergen? :) >> >> We are balancing the issues pretty well right now - Juergen does >> read every issue and reassigns them as needed. I agree that we can >> probably be a little smarter here - I'll have a chat with Juergen >> and see what we can do to balance out the issue load a little more. >> >> Regards, >> >> Rob >> On 29 May 2006, at 16:43, Eugene Kuleshov wrote: >> >>> Colin, >>> >>> In my experience it wont help much. Most of the new issues >>> automatically assigned to Juergen who already have over 260 >>> issues assigned, so they all get burried up there. I wonder if >>> Spring team is doing any balancing of the work load at all? >>> >>> regards, >>> Eugene > > > > ------------------------------------------------------- > All the advantages of Linux Managed Hosting--Without the Cost and > Risk! > Fully trained technicians. The highest number of Red Hat > certifications in > the hosting industry. Fanatical Support. Click to learn more > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=107521&bid=248729&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > -- Rob Harrop VP, Technology Strategy Interface21 - Spring Services from the Source http://www.springframework.com |
|
From: Eugene K. <eu...@pl...> - 2006-05-31 17:34:41
|
Hi,
I just got this error when updating from anon spring repository.
An error occurred synchronizing /spring: The server reported an error:
Permission denied
The server reported an error: Permission denied
spring: cannot open /tmp/cvs-serv13502/./CVS/Repository
Is it another glitch on SF servers?
regards,
Eugene
|
|
From: Colin S. <col...@ex...> - 2006-05-31 17:44:43
|
Yes. Somebody from SF needs to go into that directory and clean out some leftover file, or something of that nature. Rob put in a support request a few hours ago. Unfortunately there is no guarantee as to how long it will take for SF to fix. On 5/31/2006 1:34 PM, Eugene Kuleshov wrote: > Hi, > > I just got this error when updating from anon spring repository. > > An error occurred synchronizing /spring: The server reported an > error: Permission denied > The server reported an error: Permission denied > spring: cannot open /tmp/cvs-serv13502/./CVS/Repository > > Is it another glitch on SF servers? > > regards, > Eugene > > > > > ------------------------------------------------------- > All the advantages of Linux Managed Hosting--Without the Cost and Risk! > Fully trained technicians. The highest number of Red Hat > certifications in > the hosting industry. Fanatical Support. Click to learn more > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > |
|
From: Ben H. <be...@in...> - 2006-05-31 17:49:09
|
Nope, scheduled downtime. Why they would start it at 7am PDT boggles the mind though. http://sourceforge.net/docs/A04/ Ben Hale Spring Training, Consulting and Support - "From the Source" http://www.interface21.com cell: 321.591.2340 On May 31, 2006, at 1:34 PM, Eugene Kuleshov wrote: > Hi, > > I just got this error when updating from anon spring repository. > > An error occurred synchronizing /spring: The server reported an > error: Permission denied > The server reported an error: Permission denied > spring: cannot open /tmp/cvs-serv13502/./CVS/Repository > > Is it another glitch on SF servers? > > regards, > Eugene > > > > > ------------------------------------------------------- > All the advantages of Linux Managed Hosting--Without the Cost and > Risk! > Fully trained technicians. The highest number of Red Hat > certifications in > the hosting industry. Fanatical Support. Click to learn more > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=107521&bid=248729&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer |
|
From: Ben H. <be...@in...> - 2006-05-31 17:52:50
|
Sorry, I thought you were actually seeing the issues that I was seeing. Slight difference. At any rate, FYI, there's maintenance going on. Ben Hale Spring Training, Consulting and Support - "From the Source" http://www.interface21.com cell: 321.591.2340 On May 31, 2006, at 1:47 PM, Ben Hale wrote: > Nope, scheduled downtime. Why they would start it at 7am PDT > boggles the mind though. > > http://sourceforge.net/docs/A04/ > > Ben Hale > Spring Training, Consulting and Support - "From the Source" > http://www.interface21.com > cell: 321.591.2340 > > > > On May 31, 2006, at 1:34 PM, Eugene Kuleshov wrote: > >> Hi, >> >> I just got this error when updating from anon spring repository. >> >> An error occurred synchronizing /spring: The server reported an >> error: Permission denied >> The server reported an error: Permission denied >> spring: cannot open /tmp/cvs-serv13502/./CVS/Repository >> >> Is it another glitch on SF servers? >> >> regards, >> Eugene >> >> >> >> >> ------------------------------------------------------- >> All the advantages of Linux Managed Hosting--Without the Cost and >> Risk! >> Fully trained technicians. The highest number of Red Hat >> certifications in >> the hosting industry. Fanatical Support. Click to learn more >> http://sel.as-us.falkag.net/sel? >> cmd=lnk&kid=107521&bid=248729&dat=121642 >> _______________________________________________ >> Springframework-developer mailing list >> Spr...@li... >> https://lists.sourceforge.net/lists/listinfo/springframework- >> developer > > > > ------------------------------------------------------- > All the advantages of Linux Managed Hosting--Without the Cost and > Risk! > Fully trained technicians. The highest number of Red Hat > certifications in > the hosting industry. Fanatical Support. Click to learn more > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=107521&bid=248729&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer |
|
From: Colin S. <col...@ex...> - 2006-05-31 17:53:48
|
Well that's weird, as you can actually check out various portions of the tree... On 5/31/2006 1:47 PM, Ben Hale wrote: > Nope, scheduled downtime. Why they would start it at 7am PDT boggles > the mind though. > > http://sourceforge.net/docs/A04/ > > Ben Hale > Spring Training, Consulting and Support - "From the Source" > http://www.interface21.com > cell: 321.591.2340 > > > > On May 31, 2006, at 1:34 PM, Eugene Kuleshov wrote: > >> Hi, >> >> I just got this error when updating from anon spring repository. >> >> An error occurred synchronizing /spring: The server reported an >> error: Permission denied >> The server reported an error: Permission denied >> spring: cannot open /tmp/cvs-serv13502/./CVS/Repository >> >> Is it another glitch on SF servers? >> >> regards, >> Eugene >> >> >> >> >> ------------------------------------------------------- >> All the advantages of Linux Managed Hosting--Without the Cost and Risk! >> Fully trained technicians. The highest number of Red Hat >> certifications in >> the hosting industry. Fanatical Support. Click to learn more >> http://sel.as-us.falkag.net/sel? >> cmd=lnk&kid=107521&bid=248729&dat=121642 >> _______________________________________________ >> Springframework-developer mailing list >> Spr...@li... >> https://lists.sourceforge.net/lists/listinfo/springframework-developer > > > > > ------------------------------------------------------- > All the advantages of Linux Managed Hosting--Without the Cost and Risk! > Fully trained technicians. The highest number of Red Hat > certifications in > the hosting industry. Fanatical Support. Click to learn more > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > |
|
From: Eugene K. <eu...@pl...> - 2006-05-31 17:56:55
|
This is evem nore weird because I am basically running an rlog command. That is what Eclipse does when running synchronize on some project without updating it from the repository. regards, Eugene Colin Sampaleanu wrote: > Well that's weird, as you can actually check out various portions of the > tree... > > On 5/31/2006 1:47 PM, Ben Hale wrote: > >> Nope, scheduled downtime. Why they would start it at 7am PDT boggles >> the mind though. >> >> http://sourceforge.net/docs/A04/ >> >> Ben Hale >> Spring Training, Consulting and Support - "From the Source" >> http://www.interface21.com >> cell: 321.591.2340 |