i need to start with JavaSpaces and i found this article. But i found JINI library and downloaded it but i couln't find JavaSpaces library. Is it moved to JINI or what?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Refer to this link http://java.sun.com/developer/technicalArticles/tools/JavaSpaces/. Good explanation.

link|improve this answer
Thank you very much.. – Иван Бишевац Feb 15 '11 at 21:21
I read about deploying first JavaSpaces aplication on link you told me but I have problems with that. Everything goes well except 4th step: Run Launch-All, which is in the installverify directory of your Jini installation directory. This will start a service browser (as shown in Figure 2) and six contributed Jini network technology services, one of which is the JavaSpace service. When I double click on the Launch-All nothing happens. – Иван Бишевац Feb 18 '11 at 23:43
I tried to run it from console: ./Lanuch-All but I got some errors. nawk: error while loading shared libraries: libm.so.6: cannot open shared object file: No such file or directory dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory /bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory ....and so on.. Can you help me about that? – Иван Бишевац Feb 18 '11 at 23:47
I found solution in this article: jini.org/wiki/Category:Getting_Started#Troubleshooting – Иван Бишевац Feb 20 '11 at 18:46
feedback

There are two JavaSpaces implementations of any note: Blitz and GigaSpaces XAP. Blitz is open source; XAP is commercial, but has a community edition that's free for use.

I'm heavily biased towards XAP; I work for them. :) That said, there are a lot of reasons to consider XAP:

Space Aquisition

The mechanism for acquiring a space reference is far easier with GigaSpaces than it is with default JINI:

UrlSpaceConfigurer urlSpaceConfigurer = new UrlSpaceConfigurer("/./space"); IJSpace space = urlSpaceConfigurer.space(); // space is a close JavaSpaces analog, extended because the specification is rather limited

GigaSpace gigaSpace=new GigaSpaceConfigurer(space).gigaSpace();

// gigaSpace has many API improvements and is far more flexible.

API Improvements

The default JavaSpace API has no compensation for multiple tuple matches in the space. The more recent (i.e., 8 years old?) does, and Blitz implements it, but it's still not very flexible. Plus, you still get stuck with JINI Entries, which follow something like these rules:

  1. Every field must be public. (i.e., "public String foo")
  2. Every type must extend Entry.
  3. Every field must extend Object. (i.e., Long instead of long, etc.)

XAP allows you to use Entry, but doesn't require it; with XAP, you can use ordinary POJOs. You still want to prefer Object types, because of wildcards (null is the JavaSpaces wildcard) but that's up to you.

XAP also provides a SQL query mechanism, as well as a document-based model (schemaless) for entries, and can also use Spring to manage notifications and remoting.

link|improve this answer
What are limitations of XAP cummunity edition? – Иван Бишевац Feb 23 '11 at 15:45
You can use the entire feature set of the application platform except for clustering, and support is community-based rather than official. – Joseph Ottinger Feb 25 '11 at 16:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.