The self-hosting tag has no wiki summary.
4
votes
2answers
599 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
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 ...
0
votes
1answer
95 views
What hosting method can be used for a WCF service to prevent multiple service start?
I'm developing a Client-Server Application which moderate Wireless Access Point.
I want change Server Application to a service with WCF. What hosting method can be used? Service should run one time.
...
0
votes
1answer
862 views
Self Hosting netTcpBinding Service in Application_Start
Heres the background -- I want to self-host a WCF service implementing netTcpBinding and it has to be compatible with Windows Server 2003 / IIS6.
I am trying to see if its possible to self-host ...
0
votes
0answers
190 views
Self-hosted WCF within Windows Service
I would like to know, if I need to generate client proxy for self-hosted WCF within Windows Form?
Basically what I'm trying to do is, post Html form to WCF operation. I have checked WCFClientTest to ...
0
votes
0answers
440 views
WCF Self Hosting timeout
I have a Unity based C# WPF application that has a Module that communicates to a WCF based project within the same solution.
The WCF dll works if i use the WCF test host make it an active service, ...
1
vote
1answer
196 views
How do I _properly_ serve an XAP file from a self-hosted WCF service?
I have myself a self-hosted WCF server setup, which serves a clientaccesspolicy.xml and an index.htm which is just points to my xap (accessible via app.xap).
I'm currently serving them via the ...
0
votes
1answer
377 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 ...
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 ...
0
votes
2answers
100 views
Self-hosted javascript editor using `for … in`?
I am thinking of one thing, since for(var i in obj) can pretty much enumerate anything inside a DOM or javascript object, so are there any selfhosted javascript editor that use for ... in to offer ...
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
721 views
Self hosting RIA Services in WPF executable & Referencing SL RIA Class Library
I want to use a RIA Services in WPF (Please hear me out before voting to close this :)).
I learned about being able to use RIA Services for other clients. Also looked at the sample progam (the famous ...
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 ...
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 ...
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
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
...
0
votes
2answers
545 views
Starting self hosted WCF services on demand
Is it possible to start self hosted WCF services on demand?
I see two options to accomplish this:
Insert a listener in the self hosted WCF's web server and spin up a service host when a request for ...
0
votes
3answers
1k views
Locally Hosted WCF service - I don't want clients to have to authenticate
I have a self-hosted WCF service that is hosted by a desktop application.
I can successfully connect to the service locally on my PC, but I can't use the service remotely, at least without providing ...
1
vote
1answer
282 views
Self hosted WCF service - confusing behavior
I'm in the process of learning WCF, and as a practical exercise I've decided to write generic wrapper for the ServiceHost class. The idea is to have a class like the one below :
public class ...
0
votes
2answers
367 views
Hosting WCF Services in Multiple Windows Services in the Same Process
I am building a windows service to host a WCF service, and I am using :
var ServicesToRun = new ServiceBase[]
{ new Service_1_Host() };
ServiceBase.Run(ServicesToRun);
My question is:
...
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 ...
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
950 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 ...
0
votes
1answer
2k views
Using web.config in a Self-Hosted c# WCF console app (setting MaxStringContentLength server side)
I have a simple self hosted WCF Console windows app, and I can connect fine from my client.
I have a problem though sending large XML strings through to the server. I get the following error:
...
1
vote
2answers
643 views
Simple self-hosted website monitoring
I'm looking for a simple self hosted website monitoring tool.
It should be somthing similar to watchmouse.com or pimgdom.com, with a nice UI, colorful charts and so on (Customers like that :)).
At the ...
0
votes
2answers
783 views
WCF duplex communication
I need to re-write an existing client-server application.
The existing application communicate using socket, I have to convert it into WCF.
At server side I need to
Monitor connected clients
...
0
votes
1answer
2k views
Self-hosted WCF service has HttpContext.Current == null despite the fact that AspnetCompability allowed
I'm using self-hosted (programmatically hosted) WCF-service in Web Application.
I placed the [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] attribute ...
0
votes
1answer
299 views
RIA DomainService Hosting
i have an application, in which i have an EntityModel.
i have a DomainService which talks to this EntityModel.
i am using simple LinqToEntitiesDomainService for this application, not .svc extension ...
0
votes
1answer
333 views
WCF Web/ServiceHost - Singletons and initialisation
I have some Service class which is defined as InstanceContextMode.Single, and is well known in the hosting application. (The host creates an instance, and passes that to the WebServiceHost)
Hosting ...
2
votes
2answers
622 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 ...
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 ...
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 ...
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!
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
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 ...
0
votes
1answer
498 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 ...
0
votes
2answers
1k views
WCF Service Self Hosting Trouble
I'm trying to host a WCF Service inside a Windows Service which I am starting through a console app. Each service is its own project as is the console app. I've copied the app.config from the WCF ...
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 ...
1
vote
2answers
2k views
Connecting Silverlight app to Self hosted WCF service
I've created a WCF service that is running on 192.168.0.199:87. The service works without a issue. However when I create a silverlight app to consume this service on my dev pc in VS I am getting the ...
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?
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(), ...
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 ...
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 ...