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 ...
5
votes
2answers
399 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 ...
0
votes
1answer
80 views

Self-hosted WCF Data service authentication

I have self-hosted WCF Data service set up in similar way to this - http://blogs.msdn.com/b/writingdata_services/archive/2011/01/24/self-hosting-a-wcf-data-service.aspx How does one add Windows ...
0
votes
0answers
27 views

Recovering from hanging WebServiceHost

My application has a service endpoint listening, using WebServiceHost. During debug it sometimes hang, so I can't restart the listening because the port/service appear to be in use. If I netstat I ...
1
vote
1answer
81 views

Bad request, zero length response: where is the WCF log, where to investigate?

I have a WCF self hosted service, which is called by an AJAX JavaScript. In some cases the response is Bad Request and the response length is 0. What I've done so far: Inspecting req/resp with ...
4
votes
2answers
234 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 ...
1
vote
1answer
137 views

WCF Service works in debug but not as Windows Service

I have a WCF service that is a self hosted Windows Service. When debugging with the WCF Test Client the service works great. I use Javascript with simple ajax requests that return JSON. Although when ...
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 ...
0
votes
1answer
78 views

Max amount of sessions on my WCF service?

I have a WCF service running InstanceContextMode = PerCall, ConcurrencyMode = Multiple, TCP and is hosted in Selfhost(Windows Service) and IIS7/IIS8. The throttling is set to this : ...
1
vote
1answer
99 views

IIS or selfhost for this service?

Hi, I have a complexed layered WCF service, it is really containing 4 different services where 3 is using regular BasicHTTPBinding and the last one netTCPBinding. Here is som facs : Loading data ...
0
votes
0answers
90 views

Download a File from a self hosted web service

Normally my web service application is hosted in an IIS. Beside calling my web service functionality, it is possible to download a file from the file system. For example the address ...
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 ...
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
377 views

WCF net.TCP self hosted on azure emulator - Windows 7

I'm developing a WCF service using Net.tcp Binding. The service is hosted on the Run method of a worker role. When deployed to my Azure Account, it works fine, but in runtime it throws an exception: ...
1
vote
1answer
329 views

Protobuf.net and WCF selfhosting getting null requests?

I have a WCF service that I host in both IIS7 and as a selfhost and with default serlizer it works great in both. When running the protobuf.net endpoint it works great against the IIS7 host but when ...
1
vote
3answers
920 views

Self-hosted WCF service: ConcurrencyMode.Multiple but only using one thread?

I have taken my first steps into using WCF for developing a WINDOWS service hosted calc engine. The service is working great but it only ever seems to use one thread for all my calls but I need it to ...
1
vote
3answers
417 views

Why does WCF ServiceHost stay open once out of scope?

I was just tidying up some WCF (self-hosted) code of mine and realised that my ServiceHost object was going out of scope after it had been initially setup, but I could still connect to it. public ...
4
votes
1answer
160 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 ...
1
vote
1answer
931 views

Hosting WCF service as Windows Service?

I have manage to move my complexed WCF service into a Windows Service. The binding looks like this : <service behaviorConfiguration="MyAppClientService.CustomValidator_Behavior" ...
1
vote
1answer
118 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 ...
4
votes
2answers
606 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. ...
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 ...
1
vote
1answer
283 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
369 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: ...
0
votes
1answer
334 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 ...
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 ...
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?