Seb Castiaux

Greenhorn
+ Follow
since Jul 22, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Seb Castiaux

Thanks for clarifications Tom, your assumptions are totaly right. The reason is only a size and network traffic problem. I will let you know how I manage to solve this problem.
Thanks
I am querying a database on the server and cache the obtained ResultSet. I would like to send this data to my client by blocks (on demand) as RowSet. My problem is to extract the block from the cached ResultSet and put it in the serializable RowSet that i send to the client.
Don't hesitate to ask for some clarifications if i am not making myself clear.
Hi,
I am working on a client/server querying application. I want to keep the entire result of query on the server and send blocks of this result to the client on demand.
Let's consider a RowSet (serverRS) of 100 elements and I want to send rows 21 to 40 to the client.
How can I populate a RowSet (clientRS) with those rows? Eliminating the first rows seems easy by calling serverRS.absolute(21) before calling clientRS.populate(serverRS) but I cannot find an easy way for the rows after row 40?
Can u help me?
Hi all,
what is the exact command to open a file in MS Word from an applet?
Thanks a lot,
S�bastien
21 years ago
Hi all,
I made a design of a performance manager for a J2EE application. The module makes use of Timer and Timertask java objects. A colleague told me he was not sure that threads can be spawned in the websphere server...
Can somebody confirm or infirm this?
Thanks a lot
Seb
21 years ago
Hi all,
I am working on a J2EE project and users need automatic document generation. The imposed tool is MS Word. Then, I will have several MSW templates that must be filled by data available through the J2EE platform (mainly EJB).
I have very few experience of the .net platform and I am wondering how to make a bridge between the J2EE application platform and the word automation.
Thanks a lot
Seb