Rmi


 
Thread Tools Search this Thread
Special Forums Cybersecurity Rmi
# 1  
Old 03-27-2006
Rmi

Hi ,
I am a beginner to JAVA . I am having trouble understanding the RMI connection .
I am trying to write a server which does the following :
1. Establishes a connection with a co-ordinator called Dispatcher through RMI . The Dispatcher actually contains the list of Providers where the servers should upload files.
2 . When a provider registers with Dispatcher , it should automatically upload the file to the requested server .

Could someone help me to figure how I can programatically implement the above logic.
Thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

RMI Port settings for different users

I have installed an application on AIX 5.3, however when i log in as the application owner i cannot open the RMI Port 1099. If i log in as root i can open the RMI port. Is there a specific setting that determines if a user can open the RMI port? I cannot add this user as part of SYS Admin group. ... (2 Replies)
Discussion started by: speedo
2 Replies
Login or Register to Ask a Question
PG_TTY(3)																 PG_TTY(3)

pg_tty - Return the TTY name associated with the connection

SYNOPSIS
string pg_tty ([resource $connection]) DESCRIPTION
pg_tty(3) returns the TTY name that server side debugging output is sent to on the given PostgreSQL $connection resource. Note pg_tty(3) is obsolete, since the server no longer pays attention to the TTY setting, but the function remains for backwards compati- bility. PARAMETERS
o $connection - PostgreSQL database connection resource. When $connection is not present, the default connection is used. The default connection is the last connection made by pg_connect(3) or pg_pconnect(3). RETURN VALUES
A string containing the debug TTY of the $connection, or FALSE on error. EXAMPLES
Example #1 pg_tty(3) example <?php $pgsql_conn = pg_connect("dbname=mark host=localhost"); if ($pgsql_conn) { print "Server debug TTY is: " . pg_tty($pgsql_conn) . "<br/> "; } else { print pg_last_error($pgsql_conn); exit; } ?> PHP Documentation Group PG_TTY(3)