|
Hi,
I was reading up on ActiveMQ which seems like a great implementation of a servicebus where producers can post messages and other processes can receive them.
However when reading the documentation, it looks like the producer has to give the 'endpoint...
Started by reinier on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When using Topics, all subscribed consumers.
consumer receiving the events, you should use topics.
|
|
Hello,
I would like to use Model View Presenter pattern for a library containing user controls which will be used in other projects.
According to MVP I have to implement an IView-interface on a user control and pass it on to a Presenter-class.
In my case...
Started by anagels on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Rather they are part of a view and can be replace ... .
They should be able to access any Presenter that the view they are tied can access but are not in themselves views .
I always consider User Controls tied to the Views not be a separate view themselves .
|
|
I have one computer acting as a WCF service host. a client machine will have multiple client processes running, each also hosting WCF services on separate ports (5601, 5602, etc.). The client processes will handshake the host. Once the handshake is received...
Started by MGSoto on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I solved the problem, I enabled IncludeExceptionDetailInFaults consumers so they would report back.
|
Ask your Facebook Friends
|
I have a scenario where Multiple Producers are running on different machines in a Network. These are Singleton WCF Services which are queuing the Products (Output) in the Central Store which is also a Singleton WCF Service.
There are consumers who dequeue...
Started by Protean on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The WF runtime can be fed with a queue of items... .
Handing scheduling issues off to a part of the framework) would help .
I'm not sure if this will be any help at all, but in this sort of environment I would investigate whether using a Windows Workflow (i.e .
|
|
I have difficulties wrapping my head around the concept.
I am trying to implement an endpoint that listens on a tcp port for incoming messages in a proprietary format, which would then transform the message and have camel take over the forwarding and ...
Started by Arnelism on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://www.manning.com/ibsen/
And this tutorial is also excellent as....
Check out the free chapter 1 in the Camel in Action book which tells a bit about those Camel concepts .
A Consumer extends Processor which means it has a process method as well.
|
|
Has anyone come across an example of a non .Net consumer of an ADO.NET Data Service? I am on the second day of looking at what Astoria is and how it can be used. I am also trying to answer why would I use this instead of a web service?
After getting my...
Started by SwampyFox on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I think rather than looking for .NET related to X technology you should look up the technology you're using... .
Well since ADO.NET Data Services exposes itself as a RESTful service anything that can make RESTful calls to a URI can properly use the service .
|
|
I'm trying to replace some thread communication with a custom queue, producer is currently using PostThreadMessage, consumer is using WaitForSingleObject/PeekMessage.
http://www.justsoftwaresolutions.co.uk/threading/implementing-a-thread-safe-queue-using...
Started by Anonym on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can also use SetEvent() (from the producer) and WaitForSingleObject() (or WaitForMultipleObjects() if multiple queues) (in the consumer....
The PostThreadMessage/WaitForSingleObject is the appropriate way to do message queuing between threads on win32 .
|
|
What I am asking, is what is the best way (i.e. the way that is easiest for neophyte web developers) to consume/integrate data that I make available on my website, into their own website.
I have a website written in asp.net/sql server back end.
I have...
Started by E.J. Brennan on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
This could be XML or JSON if they have the... .
I was going to suggest building some kind of RESTful Web Service, through which users could consume your data in what ever format is most appropriate.
Your list of requirements seem to be pretty broad.
|
|
I'd like to create a farm of processes that are able to OCR text. I've thought about using a single queue of messages which is read by multiple OCR processes.
I would like to ensure that:
each message in queue is eventually processed the work is more ...
Started by Piotr Czapla on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Scenario To make last one work in desired way, consumers send AMQ-specific argument when subscribing.
|
|
I have a few projects coming up that have a number of endpoints or clients that can hit the same data. For instance a site might have...
A asp.net MVC based end user facing website A web based adminitration back end that can allow specific, limited updates...
Started by Soulhuntre on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
On my way to work today I was listening to a .NET Rocks! podcast, " Stephen Forte on Data Access Options ", and they very excited about this, especially for scenarios like the... .
Take a look at ADO.NET Data Services (formerly known as Project “Astoria”) .
|