473,405 Members | 2,141 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

MemoryMappedFile Problem

Hi,

i tried to use MMF to communicate between 2 processes.
i want to transfer a bitmap between the 2 processes.

i created a mmf in my first process

public IntPtr CreateMMF(FileAccess access, int size)

{

if (size < 0)

throw new ArgumentException("The size parameter should be a number greater
than Zero.");

IntPtr memoryFileHandle = CreateFileMapping(0xFFFFFFFF, IntPtr.Zero,
(uint)access, 0, (uint)size, "MMF");

if (memoryFileHandle == IntPtr.Zero)

throw new Exception("Creating Shared Memory failed.");

return memoryFileHandle;

}

i mapped it and write the graphic to it

IntPtr mappedViewHandle = MapViewOfFile(mmfHandle, (uint)FILE_MAP_WRITE, 0,
0, 0);

if (mappedViewHandle == IntPtr.Zero)

throw new Exception("Creating a view of Shared Memory failed.");

Marshal.WriteIntPtr(mappedViewHandle, gfxScreenshot.GetHdc());

UnmapViewOfFile(mappedViewHandle);

CloseHandle((uint)mappedViewHandle);

my other process mapped the file but throw an exception "not enough memory"

IntPtr mappedFileHandle = OpenFileMapping((int)FileAccess.ReadWrite, false,
"MMF");

if (mappedFileHandle == IntPtr.Zero)

throw new Exception("Opening the Shared Memory for Read failed.");

//here the Exception is thrown

IntPtr mappedViewHandle = MapViewOfFile(mappedFileHandle,
(uint)FILE_MAP_READ, 0, 0, 0);

if (mappedViewHandle == IntPtr.Zero)

throw new Exception("Creating a view of Shared Memory failed.");

IntPtr windowHandle = Marshal.ReadIntPtr(mappedViewHandle);

if (windowHandle == IntPtr.Zero)

throw new ArgumentException("Reading from the specified address in Shared
Memory failed.");

UnmapViewOfFile(mappedViewHandle);

CloseHandle((uint)mappedFileHandle);

return windowHandle;

CreateMappedFile i use a size of 200000. (nearly 200 KB)

Pleayse help me.

greetings

Martin
Jul 1 '08 #1
3 5422
my error occurs when i try to convert the handle from the mmf to a
GraphicObject

gfxScreenshot = Graphics.FromHdcInternal(picPointer);
Jul 1 '08 #2
Martin,

The problem here is with this line:

Marshal.WriteIntPtr(mappedViewHandle, gfxScreenshot.GetHdc());

You are writing only the handle to the pointer. That DC handle is not
going to be valid outside of the process that created it.

What you need to do is write all the bitmap data to the memory mapped
file, and then read it back out on the other side.

Curious, why aren't you using Remoting or WCF to do this for you? You
could have transferred your Bitmap using much simpler code. My suggestion,
use Named Pipes as the channel if you go this route.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Martin Priebe" <ma***********@hermos.comwrote in message
news:OY**************@TK2MSFTNGP02.phx.gbl...
Hi,

i tried to use MMF to communicate between 2 processes.
i want to transfer a bitmap between the 2 processes.

i created a mmf in my first process

public IntPtr CreateMMF(FileAccess access, int size)

{

if (size < 0)

throw new ArgumentException("The size parameter should be a number greater
than Zero.");

IntPtr memoryFileHandle = CreateFileMapping(0xFFFFFFFF, IntPtr.Zero,
(uint)access, 0, (uint)size, "MMF");

if (memoryFileHandle == IntPtr.Zero)

throw new Exception("Creating Shared Memory failed.");

return memoryFileHandle;

}

i mapped it and write the graphic to it

IntPtr mappedViewHandle = MapViewOfFile(mmfHandle, (uint)FILE_MAP_WRITE,
0, 0, 0);

if (mappedViewHandle == IntPtr.Zero)

throw new Exception("Creating a view of Shared Memory failed.");

Marshal.WriteIntPtr(mappedViewHandle, gfxScreenshot.GetHdc());

UnmapViewOfFile(mappedViewHandle);

CloseHandle((uint)mappedViewHandle);

my other process mapped the file but throw an exception "not enough
memory"

IntPtr mappedFileHandle = OpenFileMapping((int)FileAccess.ReadWrite,
false, "MMF");

if (mappedFileHandle == IntPtr.Zero)

throw new Exception("Opening the Shared Memory for Read failed.");

//here the Exception is thrown

IntPtr mappedViewHandle = MapViewOfFile(mappedFileHandle,
(uint)FILE_MAP_READ, 0, 0, 0);

if (mappedViewHandle == IntPtr.Zero)

throw new Exception("Creating a view of Shared Memory failed.");

IntPtr windowHandle = Marshal.ReadIntPtr(mappedViewHandle);

if (windowHandle == IntPtr.Zero)

throw new ArgumentException("Reading from the specified address in Shared
Memory failed.");

UnmapViewOfFile(mappedViewHandle);

CloseHandle((uint)mappedFileHandle);

return windowHandle;

CreateMappedFile i use a size of 200000. (nearly 200 KB)

Pleayse help me.

greetings

Martin


Jul 1 '08 #3
Thx.
it works.
I write the byteArray to the mapped file.
(Remoting is not fast enough.)

greetings
Martin
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.comschrieb
im Newsbeitrag news:%2****************@TK2MSFTNGP02.phx.gbl...
Martin,

The problem here is with this line:

Marshal.WriteIntPtr(mappedViewHandle, gfxScreenshot.GetHdc());

You are writing only the handle to the pointer. That DC handle is not
going to be valid outside of the process that created it.

What you need to do is write all the bitmap data to the memory mapped
file, and then read it back out on the other side.

Curious, why aren't you using Remoting or WCF to do this for you? You
could have transferred your Bitmap using much simpler code. My
suggestion, use Named Pipes as the channel if you go this route.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Martin Priebe" <ma***********@hermos.comwrote in message
news:OY**************@TK2MSFTNGP02.phx.gbl...
>Hi,

i tried to use MMF to communicate between 2 processes.
i want to transfer a bitmap between the 2 processes.

i created a mmf in my first process

public IntPtr CreateMMF(FileAccess access, int size)

{

if (size < 0)

throw new ArgumentException("The size parameter should be a number
greater than Zero.");

IntPtr memoryFileHandle = CreateFileMapping(0xFFFFFFFF, IntPtr.Zero,
(uint)access, 0, (uint)size, "MMF");

if (memoryFileHandle == IntPtr.Zero)

throw new Exception("Creating Shared Memory failed.");

return memoryFileHandle;

}

i mapped it and write the graphic to it

IntPtr mappedViewHandle = MapViewOfFile(mmfHandle, (uint)FILE_MAP_WRITE,
0, 0, 0);

if (mappedViewHandle == IntPtr.Zero)

throw new Exception("Creating a view of Shared Memory failed.");

Marshal.WriteIntPtr(mappedViewHandle, gfxScreenshot.GetHdc());

UnmapViewOfFile(mappedViewHandle);

CloseHandle((uint)mappedViewHandle);

my other process mapped the file but throw an exception "not enough
memory"

IntPtr mappedFileHandle = OpenFileMapping((int)FileAccess.ReadWrite,
false, "MMF");

if (mappedFileHandle == IntPtr.Zero)

throw new Exception("Opening the Shared Memory for Read failed.");

//here the Exception is thrown

IntPtr mappedViewHandle = MapViewOfFile(mappedFileHandle,
(uint)FILE_MAP_READ, 0, 0, 0);

if (mappedViewHandle == IntPtr.Zero)

throw new Exception("Creating a view of Shared Memory failed.");

IntPtr windowHandle = Marshal.ReadIntPtr(mappedViewHandle);

if (windowHandle == IntPtr.Zero)

throw new ArgumentException("Reading from the specified address in Shared
Memory failed.");

UnmapViewOfFile(mappedViewHandle);

CloseHandle((uint)mappedFileHandle);

return windowHandle;

CreateMappedFile i use a size of 200000. (nearly 200 KB)

Pleayse help me.

greetings

Martin



Jul 2 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Bruce Davis | last post by:
I'm having a problem on windows (both 2000 and XP) with a multi-threaded tkinter gui application. The problem appears to be a deadlock condition when a child thread pops up a Pmw dialog window in...
11
by: Kostatus | last post by:
I have a virtual function in a base class, which is then overwritten by a function of the same name in a publically derived class. When I call the function using a pointer to the derived class...
0
by: Refky Wahib | last post by:
Hi I need Technical Support I finished a Great project using .Net and SQL Server and .Net Mobile Control My Business case is to implement this Program to accept about 1 Million concurrent...
9
by: Sudesh Sawant | last post by:
Hello, We have an application which communicates using remoting. There is a server which is a Windows Service. The server exposes an object which is a singleton. The client is a Web Application...
117
by: Peter Olcott | last post by:
www.halting-problem.com
28
by: Jon Davis | last post by:
If I have a class with a virtual method, and a child class that overrides the virtual method, and then I create an instance of the child class AS A base class... BaseClass bc = new ChildClass();...
6
by: Ammar | last post by:
Dear All, I'm facing a small problem. I have a portal web site, that contains articles, for each article, the end user can send a comment about the article. The problem is: I the comment length...
16
by: Dany | last post by:
Our web service was working fine until we installed .net Framework 1.1 service pack 1. Uninstalling SP1 is not an option because our largest customer says service packs marked as "critical" by...
2
by: Mike Collins | last post by:
I cannot get the correct drop down list value from a drop down I have on my web form. I get the initial value that was loaded in the list. It was asked by someone else what the autopostback was...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.