|
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.
|
|
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 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.
|
Ask your Facebook Friends
|
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”) .
|
|
I've got an agent that takes in states and returns actions, while keeping an internal representation of the utility of state/action pairs. I've also got an environment that takes in actions and returns state/reward pairs.
I need to be able to set the ...
Started by Keith on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can keep data representations of ....
You'll need to decide which of the agent and the environment sits "on top" - let's suppose for the rest of this answer that it's the environment on top calling into the agent since that generally makes most sense .
|
|
Primary consumers eat autotrophs. Secondary eat primary like a snake eats a rabbit. Tertiary eat secondary consumers. ChaCha!
Started by Answered on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at chacha):
|