The self-hosting tag has no wiki summary.
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
659 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 ...
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
4answers
3k views
ASP.NET Web API Self-Host with Windows Authentication
I am trying to use the ASP.NET Web API Self-Host option with Windows authentication so I can determine the logged on user and ultimately accept or reject the user based on their identity. Here is my ...
8
votes
1answer
424 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 ...
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 ...
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 ...
5
votes
2answers
4k views
Want to host WCF Webservice as Windows Service as against to Hosting in IIS
I want to expose few web services but thinking of hosting those as Windows Service as against hosting in IIS.
Is it a good practice?
If yes? How do I make it secured?
I want to authenticate the ...
5
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 ...
5
votes
3answers
774 views
How Expensive are ???-Hosted WCF Services?
A co-worker and I are having a discussion about WFC services when the topic of "cost" comes up.
The question is this:
Given that an IIS-hosted WCF service and a Windows-Service-hosted WCF service do ...
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 ...
5
votes
3answers
3k views
WebApi Put “The parameters dictionary contains a null entry for parameter…”
public class ContactsController : ApiController
{
private static readonly List<Contact> _contacts = new List<Contact>();
public Contact PutContacts(int id, Contact contact)
{
...
5
votes
2answers
383 views
How to get gzip compression working in WCF 4.5
WCF 4.5 supports GZIP without third party libraries or handwritten extensions.
I got it working via TCP Binding, but cannot find a way to get it working via HTTP Binding.
my wcf - Service is self ...
4
votes
2answers
455 views
WCF Service hosted in a Console Application
How much load can a WCF service, hosted in a console application handle? Can it handle incoming requests as much as a WCF hosted on IIS?
Additional Notes:
Can requests arrive concurrently?
I have a ...
4
votes
2answers
214 views
Reading WCF behavior elements from config file programmticlally when exposing self-hosted service
I have this configuration in my app.config:
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior ...
4
votes
1answer
159 views
Running consol application in debug mode with WCF selfhosting?
I have a WCF service hosted in a consol application(that also acts as the Windows Service installer), pleas see more here : http://msdn.microsoft.com/en-us/library/ms733069.aspx
This is how the class ...
4
votes
3answers
1k views
Does a WCF self hosted service handle more or less load than the IIS hosted option?
Does the hosting option affects the amount of requests a WCF service can handle?
4
votes
2answers
597 views
Self-hosted site based on HttpListener — how to handle authentication?
If you are building a self-hosted web page around HttpListener, how can you handle authentication in a secure way? I don't want to use Basic Authentication because it passes credentials as clear text. ...
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 ...
3
votes
3answers
6k views
WCF self-hosted service with transport security (Authentication failed because the remote party has closed the transport stream.)
I have a self-hosted service that I want to add transport security to.
I've set WSHttpBinding.SecurityMode to Transport and the ClientCredentialType to HttpClientCredentialType.None.
I've created a ...
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!
3
votes
1answer
2k views
Self hosting WCF inside WPF
Thanks to Kent Boogart's answer everything is right now. Thank you very much for all answers!
Hello,
I need to self host a WCF service inside WPF gui. I'm using ServiceHost.
But I still can't ...
3
votes
2answers
251 views
Service can't be started: can't load assembly
I'm trying to put together a Windows Service, which hosts a WCF service.
My project structure is as follows:
Service
Service.Contracts
Service.Host
Service.Setup
The Service.Host project contains ...
3
votes
1answer
541 views
Self-host (No IIS or WAS) WCF with a service that requires parameters
Hopefully this is an easy one. I'm wondering if this is possible - perhaps it is not. I'm attempting to self-host a WCF service (in my example below it is a console application). The service does ...
3
votes
2answers
1k views
LDAP Groups and Git Source Code Hosting
We want to host our own repositories in our Company. We need LDAP support especially with Groups. So I want that User from Group A can't access Projects of Group B. Not even Read it, if it is not ...
3
votes
2answers
949 views
A SelfHosted WCF Service over Basic HTTP Binding doesn't support more than 1000 concurrent requests
I have self hosted a WCF Service over BasicHttpBinding consumed by an ASMX Client. I'm simulating a concurrent user load of 1200 users. The service method takes a string parameter and returns a ...
2
votes
4answers
156 views
Visual feedback for a self-hosting WCF service
I have a windows service that is hosting a WCF service on a server. I am using InstanceContextMode.PerSession attribute. The services function well per my requirements.
I would now like to implement ...
2
votes
1answer
95 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 ...
2
votes
2answers
616 views
Web Api with Web-Hosting and Self-Hosting
Is there a best practice for supporting self- and web-hosting (at the same time)?
There are many problems I had to solve. Under self-hosting autofac does not work properly, because ...
2
votes
2answers
846 views
Trying to self-host, I get error - wcf service host cannot find any service metadata .. please check if metadata is enabled
I am new to WCF and I've read answers to questions with titles similar to my error but I still cannot see what is wrong.
Following some other tutorials I decided to put my contract and my service in ...
2
votes
1answer
259 views
Upload large files example with self hosted Nancy
Can someone post an example on how to upload a large file (eg. 50MB) using NancyFx running in self-hosting mode. The file is expected to be sent from a webpage (method=post; ...
2
votes
1answer
2k views
Self hosted WCF ServiceHost/WebServiceHost Concurrency/Peformance Design Options (.NET 3.5)
So I'll be providing a few functions via a self hosted (in a WindowsService) WebServiceHost (not sure how to process HTTP GET/POST with ServiceHost), one of which may be called a large amount of the ...
2
votes
1answer
127 views
Consume a HTTP POST from a self hosted service
I have a self hosted service that needs to listen for upload notifications coming from a BITS server (they are a simple HTTP POST request with custom headers). If I was not self hosting my service and ...
2
votes
2answers
257 views
WebApi Per-Request Storage for Self Hosting Mode
When hosting WebApi is IIS, you have access to HttpContext and can use the items collection to store objects for a single HTTP request.
When self hosting, you no longer have a HttpContext, so what ...
2
votes
2answers
671 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 ...
2
votes
1answer
31 views
Using ServiceStack Mini Profiler in self-hosted console application
Is it possible to use ServiceStack Mini Profiler in self-hosted console application? If it is, where should I put profiler enable/disable code? In ASP.NET hosted ServiceStack it's usually in ...
2
votes
1answer
46 views
Nancy Views Internal Server Error
I'm hosting Nancy in my Console Application, and when I try to call a view(for example "Login.html") the page gives me error 500. This is the code:
public sealed class LoginModule : NancyModule
{
...
2
votes
1answer
95 views
WCF local only NamedPipe
Here's a simple example of my problem. I'm writing an application that self hosts a WCF service for communication only within the user's session. When multiple users run this application concurrently ...
2
votes
1answer
309 views
Wcf Dynamic Hosting using reflection
My goal is to create a host application able to parse multiple assemblies, detect the contracts and host the services.
In order to load a service, we usually need to hardcode the servicehost ...
2
votes
0answers
232 views
Easy to use and self-hosted web-based time tracking software?
I'm looking for a simple to use time tracking package which I can host myself and is also web-based. I already looked around but all I could find was:
1) Host on their servers.
2) Too complicated in ...
2
votes
4answers
466 views
Looking for Open Source ALM / SCM Platform with code hosting
Can someone please recommend a good ALM / SCM platform that offers code hosting that I can host in-house.
I would essentially like to replicate github functionality (Wiki pages, documentation, code ...
2
votes
1answer
370 views
.NET WCF RIA + Services; Can I have it all?
What I'd like to have is "regular" WCF service calls responding on my root URL as well as the regular RIA stuff. Seems simple, but is turning out to be a bit of a pain. The RIA stuff works including ...
2
votes
2answers
621 views
Workflow Service host not publishing Metadata
Still hacking away with extreme persistence at WF services hosted outside of IIS. I'm now having issues with my WF service publishing metadata. Can someone take a look at my code and see what step I'm ...
1
vote
2answers
187 views
Is selfhosting appropriate for small web projects in both Nancy and ServiceStack?
Both Nancy and ServiceStack have ability to self-hosting. I want to use one of this frameworks to build a web service with Linux and Mono. I am expecting few concurrent connections. Unfortunately Mono ...
1
vote
2answers
177 views
How do C self-hosts itself?
Anyone knows the complete chain of operations from .c source code to finally an executable .exe?
I've downloaded the source of gcc,and found its c-parser.y is also written in c:
extdef:
fndef
...
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 ...
1
vote
1answer
405 views
Is there a way to add an httpModule when webApi is running with the HttpSelfHostServer?
I have a MVC4 webapi controller. It has no parameter-less constructors. So, i use Windsor dependency resolver and everything is fine when work under System.Web.Http.WebHost. But, when I try to use ...
1
vote
1answer
117 views
Questions about hosting WCF as Windows Service
I have a complex WCF service that uses for example TCP, WindowsLogin, CustomLogin and transactions.
This have been hosted in IIS7 with WAS but to get better performance I will now try to move this in ...
1
vote
1answer
1k views
Porting WCF from self-hosting to IIS/AppFabric hosting
I have a WCF that has a TCP, HTTP and Mex binding in a self-hosted file, and everything works great. However, and I want to migrate it over to AppFabric, and keep the same bindings, but I'm having a ...
1
vote
2answers
1k views
ServiceHost's conflict on address when unit tested
I have a small WCF hosting engine that I am writing that will dynamically create ServiceHosts based on the .config file. The general idea is to allow us to remove existing services, as well as add new ...