Hi Cordova,
I was trying to use your library and i got some problem,
Im using it on a non-J2EE application.
I want just make a SELECT on a table and send it to an applet, so i make a Recordset from my ResultSet with the query results. Then, on the other node(applet), when readObject() as a HashMap,
ObjectInputStream in = new ObjectInputStream( new BufferedInputStream(con.getInputStream(), con.getContentLength()) );
HashMap map = (HashMap)in.readObject();
i got an ClassNotFoundException saying “dinamica.RecordsetField”, just that!! Ive imported dinamica.*;
Thats a part of the server node:
this.rec=new Recordset(rs);
rs.close();
//retrieve hashmap containing all published recordsets
HashMap obj = rec.getFields();
Where rs is a ResultSet!
How can i make an application like that?? It’s possible?!?
How can i solve this problem?
Thanks in advance!