CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Thread: Best IPC

  1. #1
    Join Date
    Jul 2007
    Posts
    213

    Exclamation Best IPC

    What is the IPC method do i have to use between a c# for application to c++ dll injected in another process ?

    I used socket but sometime its sends 1/2 of whole packet, and i know to repair it but its will slow down the process if i do that.

    So im searching another IPC, can someone tell what is the best IPC method in this case ?

    Thank you !

  2. #2
    Join Date
    Feb 2007
    Location
    Craiova, Romania
    Posts
    326

    Re: Best IPC

    I used socket but sometime its sends 1/2 of whole packet, and i know to repair it but its will slow down the process if i do that.
    Can you elaborate on that a bit?
    Maybe we can fix it and not slow down the process...

  3. #3
    Join Date
    Aug 2003
    Posts
    938

    Re: Best IPC

    Read up on mailslots and pipes. Also a mapped file might be able to do the trick.

    Usually i just use mailslots, but get more info on this on MSDN to find out which one fits you.

  4. #4
    Join Date
    Jul 2007
    Posts
    213

    Re: Best IPC

    I cant find anything about mailslot in win32 only in mfc

    I want a IPC that work exactly like a socket.

  5. #5
    Join Date
    Jul 2007
    Posts
    213

    Re: Best IPC

    can someone help me please ?

    I very need it pls !

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured