Link to home
Start Free TrialLog in
Avatar of jazzIIIlove
jazzIIIloveFlag for Sweden

asked on

shared queue/memory for 2 applications.

Hi there;

In C# I have an app, let's say program A, dealing with a queue having some requests of customers.

The client request starts a program, let's say, program B.

What I want is that if there are let's say 5 instances of Program B., I want to suspend the starting of program B for the 6. instance until sources are available.

My thinking is that I have to have a router server program, C, checking for it and shares the queue of program A, and initiates a program B accordingly if the resources are emptier.

So, what I need is that I need to know how to share that queue.

How to do?

Kind regards.
Avatar of theHollow
theHollow
Flag of Norway image

Hello
I don't know if this is ideal for this problem in particular.

But I would start thinking about this in a "Service + clients" way.
Where I have a service (for instance a WCF Service or a Web Service).
And then there is the client, which connects to the service on start.

All business logic can be moved to the service, which handle requests and operations in an inner queue.
The clients request methods from the service when it needs to get or set data.

The service may also be made available on the intranet, as well as on the internet.
That way, the clinents may not be located on the same server.
The clients may not even be of the same type. You can create clients like Windows client, Silverlight client and a standard web client.
All of which gets the same functionality from the service.

Hope it was at any help :-)
Avatar of jazzIIIlove

ASKER

I already implemented your above comment but what i need as in the question that i have to have a shared queue, how can i handle this? Any example code for such queue object sharing between different apps in C#?

Regards.
Hello, may be you can use the System.Diagnostic.Process class to do that, then by using a windows service (as theHollow suggest) you can control how many instances of application B can be running at the same time (by using the System.Diagnostic.Process class), I think that a service is a good design to do this because you only will have an entry point where your clients will make the request to start program B, so you can manage a queue of these.
Hello
What I meant with the service and client, is that there is no use for a shared queue.
No communication between apps. The service is the cener.
The service will hold the queueing. The clients will push and pop items to the "shared queue" by sending requests to the service.

But I am not sure if that is suitable for this problem :-)
Ok but can you provide a code for;

"The service will hold the queueing. The clients will push and pop items to the "shared queue" by sending requests to the service."

Regards.
ASKER CERTIFIED SOLUTION
Avatar of Pryrates
Pryrates
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial