We have a "suite" of applications that run on a pocket pc. We have
implemented inter process communication using a database for conveying
messages and data between the applications, however would MSMQ be a more
suitable solution as we are porting these eVB applications onto the .NET CF?
If so can someone point me to a good reference for this type of configuration.

--
Tony Hudson

Re: inter process communication by John

John
Tue Apr 05 11:54:10 CDT 2005

One problem with MSMQ for this is that the current version of the .Net CF
does not support System.Messaging which means that you would have to write
P/Invoke wrappers to get at MSMQ access. MSMQ is probably a more eloquent
way of handling interproc that the shared database, however, but not sure if
it's worth your dev time.

.Net does not in general have a good interprocess communication mechanism on
CE in general.

--
John Spaith
Software Design Engineer, Windows CE
Microsoft Corporation

Check out the new CE Networking Team Blog at http://blogs.msdn.com/cenet/.

This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2003 Microsoft Corporation. All rights
reserved.

"Tony Hudson" <TonyHudson@discussions.microsoft.com> wrote in message
news:53477EFB-75C4-4043-BE0B-2990E0F9C2CF@microsoft.com...
> We have a "suite" of applications that run on a pocket pc. We have
> implemented inter process communication using a database for conveying
> messages and data between the applications, however would MSMQ be a more
> suitable solution as we are porting these eVB applications onto the .NET
> CF?
> If so can someone point me to a good reference for this type of
> configuration.
>
> --
> Tony Hudson



Re: inter process communication by Daniel

Daniel
Tue Apr 05 12:06:27 CDT 2005

There are various options for IPC. Maybe this link helps:
http://www.danielmoth.com/Blog/2004/09/ipc-with-cf-on-ce-part-1.html

Cheers
Daniel
--
http://www.danielmoth.com/Blog/


"Tony Hudson" <TonyHudson@discussions.microsoft.com> wrote in message
news:53477EFB-75C4-4043-BE0B-2990E0F9C2CF@microsoft.com...
> We have a "suite" of applications that run on a pocket pc. We have
> implemented inter process communication using a database for conveying
> messages and data between the applications, however would MSMQ be a more
> suitable solution as we are porting these eVB applications onto the .NET
> CF?
> If so can someone point me to a good reference for this type of
> configuration.
>
> --
> Tony Hudson


Re: inter process communication by Eugene

Eugene
Tue Apr 05 14:06:43 CDT 2005

Hello!
You wrote on Tue, 5 Apr 2005 09:17:07 -0700:

TH> We have a "suite" of applications that run on a pocket pc. We have
TH> implemented inter process communication using a database for conveying
TH> messages and data between the applications, however would MSMQ be a
TH> more suitable solution as we are porting these eVB applications onto
TH> the .NET CF? If so can someone point me to a good reference for this
TH> type of configuration.

You can check MsgConnect as well ( http://www.eldos.com/msgconnect/ )
It does exactly what you need.

With best regards,
Eugene Mayevski