Thanks for your help. Yes. I have the input stream opened:
ObjectOutputStream oos = new ObjectOutputStream(servConn.getOutputStream()); oos.writeObject(<object to send>); oos.close(); ObjectInputStream ois = new ObjectInputStream(servConn.getInputStream()); ois.readObject(); ois.close(); Regards. At 17:45 10/03/2003 +0530, you wrote: > Hi, > Have you opened the Input Stream ????. > If not opened then, Please try by opening the Input Stream and close it. > It forces the execution. > InputStream in = servConn.getInputStream(); > in.close(); > I observed, the resource is not executing if we don't open the > InputStream... > Hope it may solve u r problem. > Regards, > Pratt. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
