Tagged Questions

3
votes
6answers
256 views

Interprocess communication on windows

I have a TCL script running on windows. I need to communicate to a old vc++ 6 app running in a different process. I need to have 2 way communication. In Linux I would use dbus, but …
2
votes
5answers
229 views

What is the best way to pass information from a C# app to a C++ app while both are running?

What would be the best way to pass information from a windows forms C# app to a MFC C++ app while they are running? I don't need to send much, just a small string. Thanks, Jeff
1
vote
4answers
297 views

.NET remoting and Delphi win32

Hi, Is it possible (and feasible) to use .NET Remoting interface with Delphi win32 application? I need communication between .NET application and Delphi win32 application, so .NE …
1
vote
8answers
1k views

Interprocess Communication Between C# application and unmanaged C++ application

Hi All, I have two windows services, the first one written in c# and the second written in unmanaged c++, I want to know how can I do two-way interprocess communication. Thanks …
0
votes
2answers
506 views

Boost, Shared Memory and Vectors

Hi, I need to share a stack of strings between processes (possibly more complex objects in the future). I've decided to use boost::interprocess but I can't get it to work. I'm su …
0
votes
3answers
223 views

Change Properties.settings for a .net deployed application

Hi All, I have two .net applications, these applications want to talk to each other, I made a setting in the first project as follows [CompilerGeneratedAttribute()] [GeneratedCo …
0
votes
1answer
75 views

Login method Customization using GINA [closed]

DUPLICATE:http://stackoverflow.com/questions/523912/login-method-customization-using-gina Hi All, I know it's not easy to find a master in GINA, but my question is most near to …
0
votes
4answers
413 views

Login method Customization using GINA

Hi All, I know it's not easy to find a master in GINA, but my question is most near to Interprocess Communication(IPC), I wrote my custom GINA in unmanaged c++, I included it a me …
0
votes
3answers
958 views

Passing data to .NET C# WPF applications/DLLs

Hello! I have a .NET C# WPF application that I am trying to make into a single-instance application using a Mutex. This .NET application is called by a C++-based DLL using Creat …
-1
votes
2answers
151 views

How do I execute an external program from Java?

Possible duplicates: How should I call a Perl Script in Java? Include Perl in Java How can I call Perl from Java? I want to execute a program of Perl from Java. I take a fi …