-----------------------------
Please read the FAQ!
<http://java.apache.org/faq/>
-----------------------------
hi all
I am trying to deserialize a hashtable use a servlet ..
I have created a smaller representation of my problem in the example
code below : -
//Loading RateTable in progress
try {
FileInputStream fis = new
FileInputStream("/home/mike/RateTable");
ObjectInputStream ois = new ObjectInputStream(fis);
Hashtable newCollection = (Hashtable)ois.readObject();
System.err.println("Loading RateTable read object" +
newCollection);
}
catch (Exception e) {
System.err.println(e);
e.printStackTrace();
}
When the code is executed the JServ just hangs ....if the serialised
table is of size large than 890000..
But it seems to work fine if the serialise table is of a smaller size
....
Another funny thing is that this works find using mainline execution
My Servlet configuration : Apache 1.3.6 Jserv 1.0 final Sun Solaris 2.6
Need some help ......
thanks in advance
mike
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html/>
Problems?: [EMAIL PROTECTED]