This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Dear Friends: I have a trick problem here: My server is running .... LocateRegistry.createRegistry( PORT ); String urlString = "//" + HOST_NAME + ":" + Integer.toString( PORT ) + "/" + "FLY"; Naming.rebind( urlString, sf ); ..... But my client can't find it ! ... String urlString = "//" + HOST_NAME + ":" + Integer.toString( PORT ) + "/" + "FLY"; SessionFactory sf = (SessionFactory)Naming.lookup( urlString ); ..... Trowing a NotBoundException... When debuging give FLY as a service name !!! HOW CAN I FIX IT ? PLEASE HELP ME