try this link.
http://java.sun.com/docs/books/tutorial/idl/hello/server.html
the paragraph of interest to you is :-
Waiting for Invocation
The server is ready; it simply needs to wait around for a client to
request its service. To achieve that, enter the following code at the end of
(but within) the try-catch block:
java.lang.Object sync = new java.lang.Object();
synchronized(sync) {
sync.wait();
}
This form of Object.wait requires HelloServer to remain alive (though
quiescent) until an invocation comes from the ORB. Because of its placement
in main, after an invocation completes and sayHello returns, the server will
wait again.
----- Original Message -----
From: "Daniel Legziel" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, January 13, 2002 8:12 PM
Subject: ORB
> Hi guys,
>
> Can anyone tell me how the ORB in CORBA treats concurrent requests from
client(s) to server(s) and vice versa? Is there a queuing dynamic that
treats them in a FIFO manner?
>
> Any insight would be highly appreciated,
> Daniel
>
>
===========================================================================
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
> of the message "signoff EJB-INTEREST". For general help, send email to
> [EMAIL PROTECTED] and include in the body of the message "help".
>
>
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".