* Checks getServerContext method of JrmpServerContext
*
* @return true if JRMP calls are in progress or false otherwise
*/
public Boolean checkGetServerContext() throws RemoteException {
JrmpServerContext jsc = new JrmpServerContext();
Object obj = jsc.getServerContext();
if (obj != null && obj instanceof Collection) {
for (Iterator iter = ((Collection) obj).iterator();
iter.hasNext(); ) {
Object el = iter.next();