Tagged Questions
6
votes
2answers
687 views
Getting started with a custom JXTA PeerGroup
I have been working with JXTA 2.3 for the last year or so for a peer-to-peer computing platform I am developing. I am migrating to JXTA 2.5 and in the process I am trying to clean up a lot of my use ...
2
votes
1answer
73 views
JXTA client - server
I would like to implement a client-server architecture using JXTA. Also the configuration of the server part will be 3 - tier. Does anyone know a good place to get this project started?
Thanx in ...
2
votes
1answer
80 views
Does JXTA support direct P2P communication, even if both peers are behind NATs?
With two JXTA based peers, each one behind its own NAT, is it possible for them to send direct messages to each other?
It is ok to use a rendezvous server for initial connection, but the real message ...
2
votes
3answers
603 views
Is there an alternative to JXTA for Java P2P frameworks?
My team is having trouble with a project using JXTA.
Is there another framework for P2P networks java?
1
vote
2answers
95 views
Downloading a file in parts from different computers simultaneously
I want to create a application that can communicate to the different computers and can download file from there. If there exist the same file in different computers then the file will be downloaded in ...
1
vote
1answer
34 views
looking up for loaded modules/services in jxta
When we load a service using loadModule into a custom peergroup, what is the way that we can look up for that service under that group for later usage.
I tried lookupService method of the peergroup ...
1
vote
1answer
252 views
Why I am getting this exception when running a JXTA app?
I tried running a JXTA app and got the following exceptions..How do I sort this problem?
My codes are::
import net.jxta.platform.NetworkManager;
public class Main {
public static void main ( ...
1
vote
1answer
35 views
Creating a capability matching / peer selection component in JXTA?
I'm completely new to JXTA and just want some pointers to help get started.
I need to create a peer search / capability matching component, so I can search for and locate peers based on a number of ...
1
vote
2answers
2k views
What is java.net.SocketTimeoutException: Failed to receive close ack from remote connection?
I'm transfering a file across a LAN(using JxtaSocket in case you heard about it) and I receive:
java.net.SocketTimeoutException: Failed to receive close ack from remote connection.
at ...
1
vote
2answers
507 views
JXTA Applications on the iPhone
I'm creating a P2P Java application in JXTA, for simple messaging between peers. I want to create a similar program on the iPhone, that will be able to talk with this java JXTA program. Is this ...
0
votes
1answer
8 views
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 ...
0
votes
1answer
91 views
How do I discover peers and send messages in JXTA-JXSE 2.6?
Using JXTA 2.6 from http://jxse.kenai.com/ I want to create application that can run multiple peers on one or more hosts. The peers should be able to find each other in a group and send direct ...
0
votes
1answer
39 views
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 = ...
0
votes
2answers
79 views
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 ...
0
votes
2answers
161 views
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 ...
0
votes
1answer
31 views
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.
0
votes
3answers
165 views
Building P2P messenger using Jxta?
Im thinking of Building P2P messenger using Jxta but i can't really find much on it, is there any good books i could read?
Thanks
0
votes
1answer
143 views
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 ...
0
votes
1answer
142 views
Java Vector<E> 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 ...
-1
votes
2answers
74 views
How to add a class to a .jar library?
I need to add a class to a .jar library but I cant figure out how to do it.
I have a library named netty-3.1.5.GA.jar but for some reason its missing a class I need
...