0
votes
1answer
30 views

Calling selfhosted WCF service from Windows Phone 8 Emulator

My selfhosted WCF wervice works fine with any browser on the domain, and also with a WinForm client. In a Windows Phone 8 app I can create Service References OK. Trying to consume the service from ...
1
vote
1answer
59 views

WCF REST Self-Hosted 400 Bad Request

I'm having a problem with a self-host WCF REST service. When I try to issue a GET via browser or Fiddler, I get a 400 Bad Request. Tracing is reporting an inner exception of XmlException "The body ...
5
votes
2answers
388 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
44 views

WCF Service in Windows Form Application

I'm newbie in WCF. I have some questions need to be answered. Can I use WCF to make a simple chat application from a client to a client (via WCF Service) ? I have tried follow many examples, And i ...
0
votes
1answer
241 views

Return JSON from self-hosted WCF 4.5 service?

How do I get JSON from a self-hosted WCF 4.5 service? I'm using Fiddler2 to send requests with "Content-Type: application/json" (also tried "Content-Type: application/javascript") but I keep getting ...
0
votes
1answer
75 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
3answers
144 views

Communication between two WCF Services in selfhosting Server

In a selfhosting service as described in this MSDN article there are two servies. Now I want to call one from the other. One does some database related stuff and the other provides some work. I want ...
0
votes
2answers
169 views

Self-Hosting WCF and System.ServiceModel.FaultException

I have a simple WCF Service Library Project (call this Project W) with a handful of DLLs in directory X. I set the startup directory of W to X, all methods work correctly using WcfServiceHost in ...
0
votes
0answers
26 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
137 views

Unable to connect to self-hosted WCF service over HTTPS

I am unable to connect to my self-hosted WCF service running with WebHttp+HTTPS bindings. For various reasons, I configure the service entirely in code rather than using a config file, and I ...
2
votes
1answer
97 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 ...
1
vote
1answer
80 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 ...
0
votes
2answers
134 views

Consume self-hosted WCF with ajax on same machine

I need help, pls…or, at least, a direction… I have a very peculiar scenario for WCF…I need to self-host a service (no IIS permitted) and consume it through a HTML page using jQuery ajax … (no IIS ...
0
votes
0answers
91 views

Self hosted HTTPS WCF service breaks IIS site using SSL

I've got a self-hosted service (Windows Service) running on my server. When it starts however, it seems to block an existing SSL site set up in IIS. Meaning, when the service is not running, my SSL ...
1
vote
2answers
200 views

Self-hosted WCF Service with SSL on XP SP3

I've seen about 1000 posts on StackOverflow, blogs, and other sites, but none have been able to shed light on the problem I'm having. Setup: WCF self-hosted service (NOT IIS) using .NET Framework ...
0
votes
1answer
191 views

Can't Access WCF REST service from any other machine on my local area network

None of any similar questions have helped me. I am sure experts here would.. My problem is I am hosting a WCF Rest service and I can only access it locally. Any other computer on the LAN won't be ...
4
votes
2answers
221 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
132 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
77 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 : ...
3
votes
1answer
312 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 ...
1
vote
0answers
905 views

To call a Self Hosted WCF service from another Net.Tcp WCF service running on IIS 7

I have a NetTcp Self Hosting service running on my client machine, and there is another NetTcp service running on IIS on the server. I am trying to consume the self hosted service from the service in ...
0
votes
1answer
108 views

Wcf self hosting over basicHttp and browsing

Hej, I feel like a complete idiot but I don't seem to find an answer. I'm selfhosting a WCF service in a console application. This is working like a charm, I've done it a million times :) Consuming ...
1
vote
1answer
96 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 ...
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
1answer
704 views

Dealing with concurrent requests in self hosted WCF web service

I am starting to develop the following scenario (Visual Studio 2010, WCF): Different clients in our network will call a web service that I developed myself, which is hosted as part of a windows ...
0
votes
1answer
2k views

Pass a parameter to a WCF service constructor

I need to pass an exist DI container as a parameter to a WCF service constructor In order to do that i'm using IInstanceProvider The WCF service should be hosted in self host. public class ...
1
vote
2answers
35 views

Is the computer the role runs on the same?

I have a self hosted wcf service with a startup task that runs netsh http add urlacl url=https://+:{PORT}/{SERVICENAME} user=everyone listen=yes delegate=yes" previously the service didn't have ...
0
votes
2answers
376 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: ...
0
votes
1answer
350 views

Silverlight Cross-domain issue with WCF self-hosted in windows service

I have a Silverlight application that is running perfectly in my local machine, consuming WCF services form a development server (self-hosted in windows services). I have to debug one of the WCF ...
1
vote
1answer
39 views

Selfhosted WCF not running Factory(CustomHostServiceFactory)?

I have a WCF service that can be placed in both IIS7 and in selfhost. The SVC file looks like this : <%@ ServiceHost Language="C#" Debug="False" ...
1
vote
1answer
322 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 ...
3
votes
2answers
253 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 ...
1
vote
3answers
907 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
414 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
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 ...
1
vote
1answer
893 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
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
1answer
276 views

How use function SetEndpointAddress?

What should come in the place of ??? (first parameter) serviceHost = new ServiceHost(typeof(MyService)); serviceHost.SetEndpointAddress(???, "http://cvxcvxcvcx"); I have specified Endpoint in ...
0
votes
0answers
258 views

How change url from client to webservice in WCF C#?

I have a client and service (selfhosting) and i want to change url from client to service. Administration configuration.
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
2answers
505 views

Hosting WCF as Windows service “ Service was started and Stopped”

I am hosting WCF as Windows Service using net.tcp. After installing the windows service when I start the service, I get that service was started and stopped. The error says in order to In order to ...
0
votes
1answer
560 views

How to create a session between client and self-hosted WCF service

My goal is to keep track of clients with cookies and their sessions. This is needed because I don't like WCF's builtin authentication process, where they are just give the generic login popup in the ...
0
votes
2answers
1k views

Problems with netTCP Binding and Self hosting

I have searched the web but I cannot find the solution to my problem. I am self hosting my service on XP using nettcpbinding. The config file is as follows: <system.serviceModel> ...
3
votes
1answer
545 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 ...
0
votes
1answer
163 views

Is it possible to use “add service reference” option to add a self-hosted service in WCF?

I am creating a WCF service. At first I had one WCF service library project and one console project which was referencing the this library. And it worked fine when I used "add service reference" in my ...
0
votes
1answer
720 views

Impersonation using a self-hosted WCF WebServiceHost gets 'An operations error occurred.' error

So I have been banging my head on this one. I have a self hosted WCF service: var webServiceHost = new WebServiceHost(helloWorld); webServiceHost.Authorization.ImpersonateCallerForAllOperations = ...
1
vote
1answer
213 views

Using MVC routing engine from a self hosted dll (outside asp.net)?

I'm using WCF Web API to create a self-hosted/InProcess REST Service (HttpServiceHost) that the client app will use. All the examples for the web api use ASP.Net routing engine. Would it be possible ...

1 2