The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
7answers
24k views

Run WCF ServiceHost with multiple contracts

Running a ServiceHost with a single contract is working fine like this: servicehost = new ServiceHost(typeof(MyService1)); servicehost.AddServiceEndpoint(typeof(IMyService1), new NetTcpBinding(), ...
23
votes
2answers
663 views

Resolving HttpControllerContext with Castle Windsor

In the ASP.NET Web API, HttpControllerContext instances provide a lot of information about the current environment, including the URI of the current request. If a service relies on such information ...
6
votes
3answers
18k views

WCF Self Host Service - Endpoints in C#

My first few attempts at creating a self hosted service. Trying to make something up which will accept a query string and return some text but have have a few issues: All the documentation talks ...
6
votes
1answer
3k views

Specify a Singleton service in a WCF self hosted service

I am writing an application that exposes a service via WCF. The service is self-hosted (console app) and needs to use a Singleton instance. I am trying to figure out how to specify singleton in the ...
3
votes
4answers
2k views

Can WCF RIA Services be self hosted?

I know WCF can be self hosted. how about WCF RIA Services? Thanks!
1
vote
2answers
2k views

WCF Service behind firewall - how to set up port forwarding?

I'm just getting into WCF programming. I've set up a self-hosted test web service on my work computer, which is behind a firewall; it's at http://localhost:8000/MyTestService. I can access the ...
5
votes
3answers
1k views

Can I automatically host all services in app.config when using SelfHosting?

I'm writing an application which needs to host several WCF services. One of the strengths of WCF is the ability to configure services without having to recompile, by specifying settings in the ...
3
votes
4answers
1k views

Which build of Cassini should I choose for production? There are 8 public builds from 5 different authors

I found several versions of an IIS-free Cassini webserver built by Microsoft. I'd use it but I'm unsure of which one is best, since there are many forks/builds: the original dmitryr's v3 (with ...
14
votes
2answers
3k views

self hosting asp.net mvc

Is it possible to self host asp.net mvc inside another application ie. console, windows forms, service etc etc. I'd like to build an app that offers a web interface to control it and I'd like to use ...
8
votes
1answer
438 views

Using WebAPI in LINQPad?

When I tried to use the Selfhosted WebAPI in LINQPad, I just kept getting the same error that a controller for the class didn't exist. Do I have to create separate assemblies for the WebAPI ...
2
votes
1answer
100 views

servicestack self-hosted service uses chunked encoding - is unbuffered?

I am trying to learn ServiceStack with the hello world examples and self-hosted example. I am making requests for JSON content. I have noticed the following in the response headers: Basic service ...
6
votes
1answer
2k views

What are the benefits for several servicehosts? Does one ServiceHost support several simultaneous connections on one endpoint?

I'm thinking of self-hosting my WCF service instead of using IIS. A big question for me is whether I need to instantiate multiple servicehosts as IIS does or one wil be enough. Do muptiple ...
2
votes
2answers
673 views

Synchronization problems with Monitor class in WCF service

I have a self-hosted WCF service and I'm having the following problem: 15 minutes after creating the instance of the service TryEnter calls in operation contract methods constantly return false, but ...
1
vote
3answers
1k views

Multiple instances of a self hosted WCF service

We have a "worker" service running from console application in c#, for development we were always running a single instance of this service, which fetches chunks of data and performs some ...
0
votes
2answers
253 views

WCF, how to self-host callback?

I have a WCF service lib which run by a self-host [Winform] and a client [Winform], and im using NetTcpBinding. i want the client to call a method from WCF service to Pop up a MessageBox on Self-host ...
0
votes
1answer
378 views

Sessions in self-hosted WCF services

prompt please how can I use session in self hosted WCF? I need to implement ASP.NET like sessions (client identification and possibly data sharing). Is there any native way to do so in WCF or I have ...
0
votes
2answers
1k views

How to throw FaultException from self hosting wcf service?

I'm planning to host the service in windows service, but I'm thinking about the problem described in the title. Anyone had similar issue? Thanks Update The problem is that when you throw an ...
0
votes
1answer
499 views

Self-Hosting WCF for AJAX Client

I'm trying to self-host a WCF web service and provide a HTTP endpoint with ajax support. Pretty much everything I've found about WCF and AJAX are talking about IIS, which I don't want to use. I've ...