1
vote
2answers
3k views

How to communicate between WCF service and host application?

I created an WCF service through this tutorial. This works great, no problems here. Now I am hosting the service in an Managed Application. But at the same time I would like to used the input from the ...
1
vote
0answers
154 views

WCF Service router

the WCF 4.0 built-in routing service doesn't work for restful services and instead of using that feature I should create an asp routing solution, Does anybody know any good example about how to ...
0
votes
2answers
306 views

Multiple Services Hosted under one Windows Service

I have two Services called TemplateService, TemplateReportService (both defined in one WCF Service Library) to be exposed to the client application. Is it possible to host these two services under ...
0
votes
1answer
41 views

how to host 2 wcf services in 1 servicehost

i'm working on a wcf project i have 1 service with 2 contracts (2 endpoints) and 1 service with 1 contract (1 endpoint) i want to make 1 single ServiceHost for both my services. i can make 2 host for ...
0
votes
1answer
155 views

AutomaticInputSessionShutdown Custom Session Shutdown Handler

From this MSDN article, I see that it says the following: If you set the AutomaticInputSessionShutdown property to false, the channel must be closed by some other mechanism. In this case, you ...
0
votes
1answer
69 views

WCF service not reachable (selfhosted)

today i decided to have a look at WCF and the example worked so nicely on my localhost that i tried to run in on my server too, so i compiled it with the correct host(tested both,ip and domain) and ...
0
votes
2answers
395 views

WCF hosted in windows service errors

I have a WCF in VB which is to be hosted in a Windows Service. I managed the install program so the service actually installs. But, when I try to start the service, I get the following error: The ...
0
votes
1answer
47 views

MinGw - where is the equivalent of /etc/services? [closed]

MinGw - where is the equivalent of /etc/services and /etc/hosts? I need to add/ remove some values from the hosts and services files, and have achieved this is Linux. Now I am attempting to do the ...
0
votes
0answers
984 views

Android 3.1 - Broadcast Receiver + Service - Usb Host - USB_DEVICE_ATTACHED

I'm trying to make an application composed of a Broadcast Receiver and a Service, using the USB Host API provided by Android Honeycomb. I'm want the Broadcast Receiver onCreate() method to be called ...
0
votes
1answer
270 views

WCF 'sub main' not found

I must be losing my mind... After getting a test WCF hosted in a windows service, I'm trying for another one (practice, practice, practice). I created a WCF service library, added one function. Then ...
-1
votes
1answer
1k views

How can I send a data from WCF host to connected client?

I want to send a data from WCF host (not service proxy) to the connected client with the service. How can I achieve this?