L
La07K
Guest
Hi ,
In my application i wanted to transfer some data fromone process to other.For that i am using MemoryMapFile.
Here my application is a kind of client/server architecture.
Client sends soem request i will manipulate data and writye into a shared memory file and then send only the file name to the client.
Hete my problem is most of the time i am able to read the data from client side but some time i am getting error like memory map file is not found.
private List<MemoryMappedFile> MemoryMappedFiles;
In my Server side code as part of the execution i am adding all the memory mapp file into a list.I am not clearing/disposing the list/memory map file.
So what will be the root cause can anyone help me to solve this?
Does Garbage Collector is removing.But its unmanaged code right?
Thanks in advance.
Coding.....................................
Continue reading...
In my application i wanted to transfer some data fromone process to other.For that i am using MemoryMapFile.
Here my application is a kind of client/server architecture.
Client sends soem request i will manipulate data and writye into a shared memory file and then send only the file name to the client.
Hete my problem is most of the time i am able to read the data from client side but some time i am getting error like memory map file is not found.
private List<MemoryMappedFile> MemoryMappedFiles;
In my Server side code as part of the execution i am adding all the memory mapp file into a list.I am not clearing/disposing the list/memory map file.
So what will be the root cause can anyone help me to solve this?
Does Garbage Collector is removing.But its unmanaged code right?
Thanks in advance.
Coding.....................................
Continue reading...