Click here to Skip to main content
15,891,828 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: what is needed Pin
fesenjoon31-Dec-02 5:36
fesenjoon31-Dec-02 5:36 
GeneralRemoting issue Pin
Ludwig Stuyck25-Dec-02 8:13
Ludwig Stuyck25-Dec-02 8:13 
GeneralRe: Remoting issue Pin
SHaroz27-Dec-02 8:23
SHaroz27-Dec-02 8:23 
GeneralRe: Remoting issue Pin
Ludwig Stuyck27-Dec-02 8:42
Ludwig Stuyck27-Dec-02 8:42 
GeneralRe: Remoting issue Pin
lustuyck30-Dec-02 2:23
lustuyck30-Dec-02 2:23 
GeneralSorry, Don't know Pin
SHaroz30-Dec-02 6:17
SHaroz30-Dec-02 6:17 
GeneralRe: Remoting issue Pin
leppie30-Dec-02 7:24
leppie30-Dec-02 7:24 
GeneralRe: Remoting issue Pin
Rob Graham30-Dec-02 8:18
Rob Graham30-Dec-02 8:18 
We ran into a similar issue with remoting large datasets, and came to the conclusion that if the dataset was large enough there were either memory leaks or at least garbage that was not reclaimed by GC in a timely fasion. There is an MSDN Mag article[^] that sheds some additional light on the issues. We ended up serializing the datasets ourselves, (basically into a collection of arraylists) and then reconstructing the dataset at the client from our custom object. This resulted in 30% less network bandwidth usage and a 100% speed increase. The fundamental problem seems to be that the contents of the dataset (datatables and datarelations) get seialized to XML even if the containing dataset is using a binary serializer, and in some cases this fails and some memory seems not to get reclaimed. Also, if the datasets are large, they get allocated on the large object heap which is not GC'd with the same frequency as other garbage (large objects are 'presumed' to have a longer lifetime...Frown | :( .

Some ideas are so stupid that only an intellectual could have thought of them - George Orwell
GeneralPOP3 Pin
Venkatraman23-Dec-02 21:00
Venkatraman23-Dec-02 21:00 
GeneralRe: POP3 Pin
James T. Johnson23-Dec-02 21:32
James T. Johnson23-Dec-02 21:32 
GeneralRe: POP3 Pin
Rocky Moore23-Dec-02 22:23
Rocky Moore23-Dec-02 22:23 
GeneralDocking Windows Pin
Dan S.23-Dec-02 11:10
Dan S.23-Dec-02 11:10 
GeneralRe: Docking Windows Pin
Ray Cassick23-Dec-02 11:33
Ray Cassick23-Dec-02 11:33 
GeneralRe: Docking Windows Pin
flipdoubt7-Jan-03 4:06
flipdoubt7-Jan-03 4:06 
GeneralRemoting to multiple clients Pin
SHaroz23-Dec-02 10:20
SHaroz23-Dec-02 10:20 
GeneralDirectX 9.0 Released Pin
Heath Stewart20-Dec-02 9:28
protectorHeath Stewart20-Dec-02 9:28 
GeneralReflections in the rearview mirror may appear closer than they are! Pin
Derek Lakin20-Dec-02 0:00
Derek Lakin20-Dec-02 0:00 
GeneralRe: Reflections in the rearview mirror may appear closer than they are! Pin
leppie20-Dec-02 11:07
leppie20-Dec-02 11:07 
QuestionHow to paint over child controls? Pin
dur_kart19-Dec-02 19:47
dur_kart19-Dec-02 19:47 
Generalsecurity problem?help Pin
imran_rafique19-Dec-02 12:55
imran_rafique19-Dec-02 12:55 
GeneralRe: security problem?help Pin
Burt Harris21-Dec-02 10:12
Burt Harris21-Dec-02 10:12 
GeneralProject Dependencies Pin
Derek Lakin18-Dec-02 3:15
Derek Lakin18-Dec-02 3:15 
GeneralRe: Project Dependencies Pin
SimonS19-Dec-02 22:10
SimonS19-Dec-02 22:10 
GeneralRe: Project Dependencies Pin
Burt Harris21-Dec-02 10:22
Burt Harris21-Dec-02 10:22 
GeneralInfo regarding ref parameter and out parameter Pin
Venkatraman17-Dec-02 21:21
Venkatraman17-Dec-02 21:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.