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
FBSQL_PCONNECT(3)							 1							 FBSQL_PCONNECT(3)

fbsql_pconnect - Open a persistent connection to a FrontBase Server

SYNOPSIS
resource fbsql_pconnect ([string $hostname = ini_get("fbsql.default_host")], [string $username = ini_get("fbsql.default_user")], [string $password = ini_get("fbsql.default_password")]) DESCRIPTION
Establishes a persistent connection to a FrontBase server. To set the server port number, use fbsql_select_db(3). fbsql_pconnect(3) acts very much like fbsql_connect(3) with two major differences: First, when connecting, the function would first try to find a (persistent) link that's already open with the same host, username and password. If one is found, an identifier for it will be returned instead of opening a new connection. Second, the connection to the SQL server will not be closed when the execution of the script ends. Instead, the link will remain open for future use. This type of links is therefore called 'persistent'. PARAMETERS
o $hostname - The server host name. o $username - The user name for the connection. o $password - The password for the connection. RETURN VALUES
Returns a positive FrontBase persistent link identifier on success, or FALSE on error. SEE ALSO
fbsql_connect(3). PHP Documentation Group FBSQL_PCONNECT(3)