|
Hi a have a multithread application (MIDAS) that makes uses of windows messages to communicate with it self
MAIN FORM The main form receives windows messages sent by the RDM LogData(‘DataToLog’)
Because windows messages are used they have the following...
Started by Charles Faiga on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Look for " Pipes.zip.
His website is here.
Are great for inter-process communication (IPC).
|
|
I am looking for an inter-process communication library in Java. I am looking to send small messages between JVMs and would like to do it using shared memory if I could.
Started by Javamann on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't know if it will fit your requirements.
I would suggest you to take a look on Terracotta .
|
|
What is the best and easiest method that can be used for inter-process communication in a very large project?
My requirement is to communicate between a normal Windows Forms Application and Windows Services.
Methods that are easy to maintain and implement...
Started by Josh on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It unifies this issue, abstracting specific inter-process (inter-service) communication....
Perhaps you should try Microsoft WCF.
Whatever you do it should.
With an overhead, so it may be worth looking at a simple interface API via a DLL.
|
Ask your Facebook Friends
|
Is there a Home Theatre device that will allow watching international interent TV on my LDC TV? I saw one once but I am not able to find it.
I am NOT talking about a Slingbox here.
Something like WWitv.com or TV.exe , but made as a set-top box for the...
Started by djangofan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Looking.
Graphics (nVidia ION), pricing starts at $199 but larger in size and more power-consuming .
|
|
I am looking for an inter-process communication facility that can be used between languages and/or environments running on the same or different systems. For instance it should allow signals to be sent between Java, C# and/or C++ components, and it should...
Started by Paul Morrison on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Well, you could definitely look....
It is easy to use.
-Shamik
I would use XML-RPC personally.
In EAI patterns, the JMS bus is heavily used if you are looking for something else.
You need to probably look at something like ActiveMQ .
|
|
This question on archiving PDF's got me wondering -- if I wanted to compress (for archival purposes) lots of files which are essentially small changes made on top of a master template (a letterhead), it seems like huge compression gains can be had with...
Started by Toybuilder on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Several formats do inter-file....
In general the algorithms you are looking for are ones them.
Take a look at google's open similar, sans any semblance of a standard.
Which just joins your files into one big file before compression .
|
|
I looking for the best way to check for inter-table constraints an step forward of foreing keys. For instance, to check if a date child record value is between a range date on two parent rows columns. For instance:
Parent table ID DATE_MIN DATE_MAX 1 ...
Started by FerranB on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Most databases also have some form of check constraints, in which pretty much anything you can put in a WHERE clause can be used as a check... .
I'd go the stored proc and trigger route; one of their major purposes is to ensure data integrity at the DB level .
|
|
I am looking for the best practice of handling inter project dependencies between mixed project types where some of the projects are eclipse plug-in/OSGI bundle projects (an RCP application) and others are just plain old java projects (web services modules...
Started by Roland Tepp on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
With a complex set of build dependencies, I....
Since maven2 does much more, then just dependency management, I'd recommend ivy in this case .
But I'd try a dependency management system like ivy or maven2 .
I never did it so this is a theoretical approach .
|
|
We are looking to give access to some of our employees to chat with each other - however we are worried about them abusing the privilege and chatting we friends outside work. We have decided to deploy our own XMPP Server to solve this. I'm looking for...
Started by Chance on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Written in erlang it's adopted for very highloads.
FreeBSD as inter-company messaging system for years.
|
|
I'm looking for a way to get two programs to efficiently transmit a large amount of data to each other, which needs to work on Linux and Windows, in C++. The context here is a P2P network program that acts as a node on the network and runs continuously...
Started by Stephen on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Because it boils down to: use TCP.....
If you are not talking internet, or if you explicitly don't have clients behind carrier grade evil NATs, you need to say .
The bottleneck is the internet, and that your clients might be on NAT .
This is a hard problem.
|