Question about global common areas
-
Does anyone have any information, examples, or ideas about Global Common, Shared memory, File Mapping, etc...? I am trying to share a structure of information between 3 different applications. The shared area needs to be accessed every 100 milliseconds. Any kind of idea will be appreciated. Thanks, Tom
-
Does anyone have any information, examples, or ideas about Global Common, Shared memory, File Mapping, etc...? I am trying to share a structure of information between 3 different applications. The shared area needs to be accessed every 100 milliseconds. Any kind of idea will be appreciated. Thanks, Tom
Maybe .Net Remoting will work for you. :confused:
43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c
-
Maybe .Net Remoting will work for you. :confused:
43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c
:~ I have done very little with .Net Remoting. I am under the impression that .Net Remoting simply uses network sockets to pass objects between applications "behind the scenes". I am worried that this will not be fast enough for the updates that I need. I may be wrong about the above. Anymore ideas?:~ Tom
-
Does anyone have any information, examples, or ideas about Global Common, Shared memory, File Mapping, etc...? I am trying to share a structure of information between 3 different applications. The shared area needs to be accessed every 100 milliseconds. Any kind of idea will be appreciated. Thanks, Tom
X| I am looking at using something more time dedicated other than socket routines. I was hoping to see if anyone has implemented something close to the kernel32.lib routines "CreateFileMapping and MapViewOfFile". I have used "CreateFileMapping and MapViewOfFile" with Visual Basic 6.0 and Visual C++ 6.0 and it worked as I expected it to. Does C# have anything like these routines? Can C# use the kernel32.lib? X|
-
X| I am looking at using something more time dedicated other than socket routines. I was hoping to see if anyone has implemented something close to the kernel32.lib routines "CreateFileMapping and MapViewOfFile". I have used "CreateFileMapping and MapViewOfFile" with Visual Basic 6.0 and Visual C++ 6.0 and it worked as I expected it to. Does C# have anything like these routines? Can C# use the kernel32.lib? X|
Tom McDaniel wrote: Can C# use the kernel32.lib? Yes, via the DllImportAttribute C# can use most, if not all, extern functions from an umanaged dll. See further down the forums, in the last week we had quite alot of talk about it. Also look at MSDN, NET Framework Developer's Guide, Interoperating with Unmanaged Code Section. Hope this helps :) MYrc : A .NET IRC client with C# Plugin Capabilities. See http://sourceforge.net/projects/myrc for more info. :-D
-
Tom McDaniel wrote: Can C# use the kernel32.lib? Yes, via the DllImportAttribute C# can use most, if not all, extern functions from an umanaged dll. See further down the forums, in the last week we had quite alot of talk about it. Also look at MSDN, NET Framework Developer's Guide, Interoperating with Unmanaged Code Section. Hope this helps :) MYrc : A .NET IRC client with C# Plugin Capabilities. See http://sourceforge.net/projects/myrc for more info. :-D