http://chaupal.github.io/

————————————————————————————————————————————————————————————————————

至少两个月没更新了,不会又是雷声大雨点小吧!!!

###################################

捡到宝了, 偶然浏览邮件列表,发现老外改过的一版:

https://java.net/nonav/projects/jxta/lists/announce/archive/2013-10/message/0
https://java.net/nonav/projects/jxta/lists/announce/archive/2013-10/thread/1#00009 
https://java.net/nonav/projects/jxta/lists

见Bruno Grieder的回复。

还好链接没有失效,赶紧留一个备份。

Amalto modified JXTA version available for checkout

Kees,

This went faster than anticipated.

I have uploaded the Amalto modified version on Assembla.
The "project" is at https://www.assembla.com/spaces/jxta-amalto/wiki;
The code can be checked out using subversion (1.6) at 
https://subversion.assembla.com/svn/jxta-amalto/trunk/jxta-amalto-contributed/

This project was 'mavenized': to build it, install Maven, cd to the project 
directory and simply run 'mvn clean install'. This should compile the code, 
run the tests, build a jar and install it in your local m2 repository.

Any issue, let me know.

Bruno
On 10 oct. 2013, at 09:53, Bruno Grieder <bruno.grieder@...> wrote:

> Jérôme, Kees,
> 
> I recall the hard time Oracle gave us on modifying the licensing terms but 
> I just re-read the JXTA license and my take is that we can do whatever we 
> want with the code as long as we keep a copy of the JXTA license somewhere 
> in the source tree and in the binary (jar) along with the new license. The 
> new license should just clearly state that some original parts of the code 
> have been contributed under the provided JXTA license. 
> Regarding the 'JXTA' acronym, Oracle made it unfortunately very clear that 
> they wanted to keep the property and refused to contribute the name to the 
> community.
> 
> Should this become a blocker issue, we can check what the guys developing 
> Jenkins did vis à vis the Hudson code and name, since they met the exact 
> same issue. LibreOffice vs OpenOffice is another likely good example.
> 
> On that matter, I believe that one of the first thing to do is to engage in 
> some large refactoring and remove the JXTA acronym from all possible places 
> (licenses excluded) and replace all the copyright notices at the top of 
> every class and every interface with the new licensing terms. This should 
> already clear the air quite a bit on the use of 'JXTA' itself.
> 
> As soon as I have a little time, I will upload the Amalto modified code to 
> some public repository. Since it would be too hard to clearly distinguish 
> what contributions Amalto made, I will simply add a small text note saying 
> that our contributions are made under the Public Domain (it can also be 
> under the Apache 2.0 or BSD if you have already elected one of those - let 
> me know).
> 
> Bruno
> 
> On 10 oct. 2013, at 09:17, JVerstry <jverstry@...> wrote:
> 
>> On 9/10/2013 23:13, Bruno Grieder wrote:
>>> I would be happy to contribute that code if you are interested. 
>
>> Hi Bruno,
>
>> I remember we had discussion about licensing in the past. I have been 
>> discussing this with Kees too.
>
>> The bottom line is the following:
>
>> - When we considered moving to the Apache Foundation, they confirmed:
>> a) That we had to change the license to version 2.0
>> b) That we could not modify the license if we were not the owner of the 
>> code
>
>> - I never got approval from Oracle to do this (they never gave a final 
>> answer)
>
>> The only option we have is:
>> - Keep existing code under the current license 
>> - Write new code/contribution under Apache License 2.0 (or whatever other 
>> open license we like)
>> - Refactor out existing code under old license progressively
>
>> If licensing is the only issue, then we don't need to fork the repository 
>> right now, if we stick to the above.
>
>> I totally agree with your analysis of the technical debt and there are 
>> good arguments to rewrite a lot (all?)
>> of the code from scratch. However, Kees seems to have a good command of 
>> OSGi and it could help us get
>> rid of the classloader API/Impl issues into a cleaner code. It is another 
>> option to get out of the mess.
>
>> Of course, we would still have to find out how and when to integrate your 
>> contributions, if possible.
>
>> Cheers,
>
>> Jérôme
>
>
>>  
>
>>  
>
>
>
>
>
>
>
>
>
>

######################

Hi,

Resurrecting the "sleeping beauty" sounds interesting, however I share Adrian 
concerns and I believe JXTA needs at minimum a serious cleanup before 
increasing functionalities.

JXTA scope was too grandiose. A new effort should concentrate on connectivity 
first and make it right. The code is cluttered with deprecated features and 
features that were never used. It also plays too hard the API vs 
Implementation game, leading to complex factories and injection where it does 
not need to be. All this makes the code very hard to read.

At Amalto we use a modified 2.6 which incorporates most of the enhancements 
of 2.7 plus a few tweaks of our own. Running FindBugs on the bare code 
revealed about 450 "issues" from trivial fixes to horrors. We fixed slightly 
over 200 of these that look like the most important to us but there is still 
a lot of ground to cover. 
This code is used in production inside an application run by a few hundred 
customers in various network conditions. It is quite stable but from time to 
time, the SRDI index seems to get corrupted and the only way to clear the 
issue at this stage is a restart (which is not a major issue in our 
particular case).
I would be happy to contribute that code if you are interested.

On my own, I tried to perform some redesign and simplification. Quickly this 
unfolded into a major rewrite. I have unfortunately no time to work on it and 
nothing to show at this stage.

In any case, good luck. I share your view that the JVM needs a good P2P 
framework.

Bruno Grieder
Amalto Technologies | CTO

On 9 oct. 2013, at 19:33, Adrian Ivan <adrian@...> wrote:

> Hi,
> 
> Sounds interesting ad challenging.
> 
> I had a quick read of the document you sent.
> 
> I like the ideas, but I have some comments:
> - jxta was a night mare in production
> we tried to make it work until the last moment, but we were forced to dump 
> it
> - seems like OSGI is an important topic
> This was not the fundamental issue, I think it was already possible to have 
> a wrapper bundle in eclipse around jxta.
> 
> The main issues were around connectivity and reliability.
> Our main issue was that that after a while the connection between peers was 
> broken and everything was blocking, and did not recover anymore. Even 
> worse, it was very hard to debug.
> 
> I think Jxta needs Fresh start:
> - Jxta needs to be a framework that allows p2p communication and can be 
> integrated software developers
> - clean API without needing to know all internals to write something on top 
> of jxta
> - reuse the good ideas around the p2p
> - healthy grand architecture allowing modularity, extensibility
>  simple: must solve the communication problem, do not bother about other 
> functionality. It must allow fast and reliable communication using the RDV 
> and implementing STUN/TURN etc protocols for nat/firewall traversal
> - modern technologies: what about using WebSockets or other current trend? 
> the idea would be to take  alook at what is happening to the web world 
> since jxta went to hibernation. It seems to me that Jxta verlaps the atest 
> developments in the web/html5 community
> 
> I would recommend to rethink the technology from scratch because just using 
> what is in the current code base will be a waste of time. This is coming 
> form somebody that had nightmare in production with Jxta.
> 
> Looking forward for more news.
> 
> Adrian
> 
> 
> On Wed, Oct 9, 2013 at 1:05 AM, cees_pieters@... <cees_pieters@...> wrote:
> Dear All,
> 
> My two posts on JXTA and OSGI that were posted on D-Zone recently 
> (http://java.dzone.com/articles/jxse-and-equinox-tutorial-part and;
> http://java.dzone.com/articles/jxse-and-equinox-tutorial-part-0 , more to;
> follow) has had the intended effect of reviving some enthusiasm in the 
> community on our beloved sleeping beauty called JXTA. The past weeks Matt 
> Gumbley and mysellf have worked on the first draft of a roadmap for a 2.8x 
> release, under the expert guidance of Jérôme Verstrynge. 
> In short, we aim for a two-stage development where the 2.8X release will 
> serve a larger effort hosted under Chaupal, which aims to implement an OSGI 
> implementation of the JXTA specification. This approach will allow us to 
> circumvent the many licensing issues that are currently paralising JXTA 
> development, and provide openings for new services and tooling.
> 
> We would love to hear the views of the community about ous plans, and we 
> welcome ideas and comments.
> 
> Kind regards,
> 
> Kees Pieters
> Condast
> 
>  
>

jxta 2.8x启动了的更多相关文章

  1. jxta-amalto

    前几天在网络上搜索jxta的消息,发现jxta 2.8x已经启动了,官方地址http://chaupal.github.io/ 在浏览其邮件列表时,意外发现一老外基于jxta 2.6修改的一版, 可在 ...

  2. 【译】4个你需要知道的Asset Catalog的秘密

    本文由CocoaChina译者 @唧唧歪歪 翻译,作者:Hector Matos 原文:4 XCODE ASSET CATALOG SECRETS YOU NEED TO KNOW 恶梦 想象你正在干 ...

  3. 关于kali2.0rolling中metasploit升级后无法启动问题的解决总结

    最近在学习metasploit的使用,文中提到可以使用msfupdate命令来对metasploit的payload.exploit等进行升级,我就试了一下,没想到升级过程并不麻烦,但升级后却出现了无 ...

  4. Linux下browser-sync无法启动Chrome的解决方法

    笔者的环境: OS: Ubuntu Linux Browser: Chrome, Firefox 每次希望启动chrome浏览器,系统都会报错: browser-sync start -s --dir ...

  5. Linux内核装载和启动一个可执行程序

    “平安的祝福 + 原创作品转载请注明出处 + <Linux内核分析>MOOC课程http://mooc.study.163.com/course/USTC-1000029000 ” 理解编 ...

  6. 启动页面设置,icon图标设置

    更多尺寸像素如何放置请看:http://chicun.jammy.cc/ 如何设置App的启动图,也就是Launch Image? 新建一个iosLaunchImage文件夹

  7. OpenSUSE 安装并启动Tomcat

    安装.用YsST2搜索tomcat安装就好了.不过版本肯定不如官网的新,笔者用的是7.0.42,最新的已经到8.X了. 启动.在服务管理器中找到tomcat,启动.

  8. Qualcomm 8X camera daemon进程浅析

    Camera 先看一下抽象层的主要流程: 首先启动一个守护进程 int qcamsvr_start(void)( qcamsvr.c) { 1. server_fd = open(server_dev ...

  9. 21. 无法执行该操作,因为链接服务器”Server_202”的 OLE DB 访问接口 “SQLNCLI10″ 无法启动分布式事务”

    无法执行该操作,因为链接服务器”Server_202”的 OLE DB 访问接口 “SQLNCLI10″ 无法启动分布式事务” 原因:调用存储过程的方式有问题,必须用JDBC方式调用存储过程才可以正常 ...

随机推荐

  1. Oracle RAC 环境下的 v$log v$logfile

    通常情况下,在Oracle RAC 环境中,v$视图可查询到你所连接实例的相关信息,而gv$视图则包含所有实例的信息.然而在RAC环境中,当我们查询v$log视图时说按照常理的话,v$log视图应当看 ...

  2. Debian、Ubuntu 源列表说明

    转载:http://forum.ubuntu.org.cn/viewtopic.php?t=366506 概貌: 源列表主文件为 /etc/apt/sources.list,另兼取 /etc/apt/ ...

  3. 前端:微信支付和支付宝支付在pc端和h5页面中的应用

    1:h5微信支付 使用的是https://pay.weixin.qq.com/wiki/doc/api/index.html  中的 (1):公司需要首先要配置公众号微信支付地址和测试白名单(支付的时 ...

  4. iOS:IOS项目集成ShareSDK实现第三方登录、分享、关注等功能。

    原文链接:http://blog.csdn.net/daleiwang/article/details/34081231 (3)在项目的AppDelegate中一般情况下有三个操作,第一是注册Shar ...

  5. 使用.reg文件删除暴风影视库图标和注册信息

    暴风播放器安装后会自动安装一个叫暴风影音库的软件,在你的电脑资源管理器中增加了一个“暴风影视库”的图标.看着很烦,删起来还比较麻烦,于是搜索了相关资源,自己写了个注册表处理文件,方便大家一键删除之. ...

  6. vue-resource基本使用方法

    一.vue-resource特点 1.体积小:vue-resource非常小巧,在压缩以后只有大约12KB,服务端启用gzip压缩后只有4.5KB大小,这远比jQuery的体积要小得多. 2.支持主流 ...

  7. D3.js系列——比例尺和坐标轴

    比例尺是 D3 中很重要的一个概念.绘制图形时直接用数值的大小来代表像素不是一种好方法,本章正是要解决此问题. 一.为什么需要比例尺 上一章制作了一个柱形图,当时有一个数组,绘图时,直接使用 250 ...

  8. iOS开发- 自己主动消失的弹出框

    - (void)timerFireMethod:(NSTimer*)theTimer//弹出框 { UIAlertView *promptAlert = (UIAlertView*)[theTimer ...

  9. 云计算之路:AWS, Azure, Aliyun, UCloud提供的Windows操作系统

    如果您用的是微软平台,如果您准备走上云计算之路,估计您首先关心的是云服务商有没有提供合适的Windows操作系统. 这里把我们知道的知名云服务商提供的Windows操作系统列出来,供大家参考. 1. ...

  10. oracle调优 浅析有效的游标管理

    浅析有效的游标管理 [思路分析] 能够把游标理解成共享的运行计划,当sql不被共享时.常规的解决思路有两个方向: 1.调整共享池的尺寸(共享池的库缓存区中共享运行计划): 2.sql书写时尽量重用绑定 ...