Questions tagged [jxta]

JXTA is a set of protocols to operate devices in a P2P fashion on the Internet.

JXTA is a set of protocols, initially designed by Sun Microsystems, to operate devices in a P2P fashion on the Internet. It aims at being universal and independent of any technologies or programming languages. These protocols have been implemented in C (see JXTA-C) and in Java (see JXSE).

In October 2010, Oracle Corporation officially confirmed that it was withdrawing from the JXTA technology. Sun Microsystems had progressively diminished its participation since 2007-2008.

Some companies are still using the JXTA-C implementation, though this part of the community has not been very active in recent years. On the other side, the JXSE community has delivered two releases of JXTA for Java in 2010 and 2011. These are now used in production by some companies, considering the significant improvements made to the code and to testing since release 2.5.

62 questions
0
votes
1 answer

JXTA 2.7 java.lang.NoClassDefFoundError: org/jboss/netty/channel/socket/httptunnel/HttpTunnelClientChannelFactory

I apologize for the redundant question but it seems the entire web doesn't have a clear answer to this major problem. I downloaded JXTA 2.7, dependency files, netty jars and it still doesn't work. The answer to add a jar to the classpath is an…
0
votes
1 answer

JXTA CMS in JXSE 2.7

I doing a pratical project on JXTA, a Distributed File system. Can we use JXTA CMS Content Management Service in JXSE-2.7 / 2.6? Where can i find the latest CMS jar file which i can use with JXSE-2.7? I have read the CMS in Mastering JXTA…
Avinash
  • 13
  • 3
0
votes
1 answer

Getting exception in simple JXTA 2.7 Application

I am developing a simple program in JXTA 2.7 and it is showing me the following error. public static void main(String[] args) throws IOException, PeerGroupException { System.setProperty(Logging.JXTA_LOGGING_PROPERTY, Level.OFF.toString()); …
ATR
  • 2,160
  • 4
  • 22
  • 43
0
votes
1 answer

Does JXTA supports voice chat?

I'm developing a LAN messenger in java. I'm following P2P approach using JXTA for sending message. Now I want to add extra functionality of audio chat. My main problem is that does JXTA supports sending of voice data?
Zlatan
  • 698
  • 7
  • 16
0
votes
1 answer

JxtaSocketAddress.getPeerID() returns null on JXME

I'm running an JxtaServerSocket on JXME. Unfortunately, I am not able to get the remote peer id of the connected Socket: JxtaSocket jsocket = (JxtaSocket) socket; JxtaSocketAddress addr = ((JxtaSocketAddress)…
user1120897
  • 272
  • 4
  • 15
0
votes
1 answer

Is there a better Solr and P2P integration option?

In thinking about my applications network service needs using the Java language I've more or less boiled it down to a combination of using Solr, P2P and REST. An automated notifier service would be good to include too. Although I like JXTA I'm not…
user962052
  • 431
  • 1
  • 4
  • 7
0
votes
2 answers

How to download the same file distributed in different computers in Java

I want to make a college project for sharing of files among different computers. Usually we have same file, for example, a movie on different computers among a local network in our college. So I want to download a file in different parts from these…
Ashish Negi
  • 5,193
  • 8
  • 51
  • 95
0
votes
2 answers

Missing methods on JXTA 2.7

I have started reading how to use JXTA from Practical JXTA II for an application i want to make. Although the code provided (examples) doesn't work with JXTA 2.7 . More specifically Tools class of Z_Tools_And_Others doesn't compile since…
Giannis
  • 5,286
  • 15
  • 58
  • 113
0
votes
1 answer

Get the list of members in a JXTA peergroup

Im just wondering is there a way to get the list of active or online (members)peers who have joined to a particular peergroup in JXTA ?. Thanks in advance.
Dilantha
  • 1,552
  • 2
  • 30
  • 46
0
votes
1 answer

How to Creat a password protected peergroup using jxta?

Im trying to create a password protected peer group using JXTA. For that i have used the example code given in the JXTA 2.5 programmers guide. But that code doesn't seems to be working. It has some issues. Does any one have a working example for…
Dilantha
  • 1,552
  • 2
  • 30
  • 46
0
votes
2 answers

How do we define 'true p2p'

I have seen a number of questions in which the term 'true p2p' is used. What exactly is meant by this term, if it has an exact meaning? I am familiar with the term p2p, and I can think of several possible meanings for 'true p2p'. What does it mean…
Tom
  • 7,994
  • 8
  • 45
  • 62
0
votes
1 answer

JxtaServerSocket problem

I'm transfering a file across a LAN using JxtaServerSocket (receiver side) and JxtaSocket (sender side). At first, I send the file name than its size. After that I wait for offset to start sending the file from it. If I start both parts of program…
Eugene
  • 91
  • 2
  • 6
0
votes
1 answer

jxta.org, where is it?

There was many projects inside "jxta.org", where are those ? Is it moved to some other place ? http://java.sun.com/developer/technicalArticles/Networking/jxta/ I am very much in need of many of those open source project. Can some one help me find…
Gireesh
  • 91
  • 1
  • 7
0
votes
1 answer

Java Vector getting blocked with no apparent reason

I'm probably doing something wrong, but this is what happens: I register a listener, wait for it to be called and when it executes and calls "Vector.clear()" it locks. The problem happens in the "pipeMsgEvent" method, here it is the, not so…
ruasoliveira
  • 192
  • 1
  • 11
0
votes
1 answer

JXTA Configuration issue: jxta:HTTPTransportAdvertisement not registered

I am trying to the run a "Hello World" sample. The problem is I keep getting the following error when trying to run the HelloWorld.java example ... Fatal error -- Quitting java.util.NoSuchElementException: key 'jxta:HTTPTransportAdvertisement' not…