Named Pipes in C# ... HELP !!

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tom Vandeplas

    Named Pipes in C# ... HELP !!

    Hi All,

    I'm looking for a system similar to named pipes using C#. Basically what I
    want is some sort of fast inter-process communication, preferable usable
    with COM.

    What I currently have is:
    - Theoretically I could use the Queue object but, as I understand it, the
    Queue can only dequeue one element at a time. So this is not my favorite.
    - Alternatively I could use a more direct approach using C++ CreatePipe, I
    think this should work, but since I not a C++ expert at all I'll definitely
    need some help on this one...

    All help (examples/info/alternatives) will be really appreciated !


    Thx, Tom



  • Günter Prossliner

    #2
    Re: Named Pipes in C# ... HELP !!



    hope that helps!



    "Tom Vandeplas" <tom_vandeplas@ agilent.com> wrote in message
    news:1060006559 .283437@cswreg. cos.agilent.com ...[color=blue]
    > Hi All,
    >
    > I'm looking for a system similar to named pipes using C#. Basically what I
    > want is some sort of fast inter-process communication, preferable usable
    > with COM.
    >
    > What I currently have is:
    > - Theoretically I could use the Queue object but, as I understand it, the
    > Queue can only dequeue one element at a time. So this is not my favorite.
    > - Alternatively I could use a more direct approach using C++ CreatePipe, I
    > think this should work, but since I not a C++ expert at all I'll[/color]
    definitely[color=blue]
    > need some help on this one...
    >
    > All help (examples/info/alternatives) will be really appreciated !
    >
    >
    > Thx, Tom
    >
    >
    >[/color]


    Comment

    • Koen Gullentops

      #3
      Re: Named Pipes in C# ... HELP !!

      Voila Tom zo simpel kan het leven zijn ;-)



      "Günter Prossliner" <g.prossliner@g mx.at> wrote in message news:<#SPOnLqWD HA.2284@TK2MSFT NGP10.phx.gbl>. ..[color=blue]
      > http://www.gotdotnet.com/Community/U...f-ed68978f3d6d
      >
      > hope that helps!
      >
      >
      >
      > "Tom Vandeplas" <tom_vandeplas@ agilent.com> wrote in message
      > news:1060006559 .283437@cswreg. cos.agilent.com ...[color=green]
      > > Hi All,
      > >
      > > I'm looking for a system similar to named pipes using C#. Basically what I
      > > want is some sort of fast inter-process communication, preferable usable
      > > with COM.
      > >
      > > What I currently have is:
      > > - Theoretically I could use the Queue object but, as I understand it, the
      > > Queue can only dequeue one element at a time. So this is not my favorite.
      > > - Alternatively I could use a more direct approach using C++ CreatePipe, I
      > > think this should work, but since I not a C++ expert at all I'll[/color]
      > definitely[color=green]
      > > need some help on this one...
      > >
      > > All help (examples/info/alternatives) will be really appreciated !
      > >
      > >
      > > Thx, Tom
      > >
      > >
      > >[/color][/color]

      Comment

      • Günter Prossliner

        #4
        Re: Named Pipes in C# ... HELP !!

        ???

        "Koen Gullentops" <koen@digipoint .be> wrote in message
        news:ef75dadb.0 308050020.464d4 b84@posting.goo gle.com...[color=blue]
        > Voila Tom zo simpel kan het leven zijn ;-)
        >
        >
        >
        > "Günter Prossliner" <g.prossliner@g mx.at> wrote in message[/color]
        news:<#SPOnLqWD HA.2284@TK2MSFT NGP10.phx.gbl>. ..[color=blue][color=green]
        > >[/color][/color]
        http://www.gotdotnet.com/Community/U...f-ed68978f3d6d[color=blue][color=green]
        > >
        > > hope that helps!
        > >
        > >
        > >
        > > "Tom Vandeplas" <tom_vandeplas@ agilent.com> wrote in message
        > > news:1060006559 .283437@cswreg. cos.agilent.com ...[color=darkred]
        > > > Hi All,
        > > >
        > > > I'm looking for a system similar to named pipes using C#. Basically[/color][/color][/color]
        what I[color=blue][color=green][color=darkred]
        > > > want is some sort of fast inter-process communication, preferable[/color][/color][/color]
        usable[color=blue][color=green][color=darkred]
        > > > with COM.
        > > >
        > > > What I currently have is:
        > > > - Theoretically I could use the Queue object but, as I understand it,[/color][/color][/color]
        the[color=blue][color=green][color=darkred]
        > > > Queue can only dequeue one element at a time. So this is not my[/color][/color][/color]
        favorite.[color=blue][color=green][color=darkred]
        > > > - Alternatively I could use a more direct approach using C++[/color][/color][/color]
        CreatePipe, I[color=blue][color=green][color=darkred]
        > > > think this should work, but since I not a C++ expert at all I'll[/color]
        > > definitely[color=darkred]
        > > > need some help on this one...
        > > >
        > > > All help (examples/info/alternatives) will be really appreciated !
        > > >
        > > >
        > > > Thx, Tom
        > > >
        > > >
        > > >[/color][/color][/color]


        Comment

        Working...