Questions tagged [wcf-hosting]
84 questions
1
vote
1 answer
deploy wcf service to IIS
I am a web newbie. I have absolutly 0 web (ASP.NET) experience. I am also a WCF newbie. So forgive me if I sound like one.
I created a WCF service that desktop applications use to comunicate. I have a client (the desktop app) project and a Service…

Fragilerus
- 1,829
- 3
- 15
- 22
1
vote
1 answer
WCF Service Hosting on client premises
I have to create an application which communicate with DB through WCF Service. WCF service will be hosted on client's server.It will be an intranet environment. I want to use NetTCPBinding to get the performance benefit.
If i use IIS7 to host my…

Rudra
- 148
- 1
- 10
1
vote
2 answers
Hosting WCF Service on a partial trust host
I'm trying to deploy my WCF web service to a free host to test it, but it gives me the following error:
The Binding with name WSDualHttpBinding failed validation because the Binding type System.ServiceModel.WSDualHttpBinding is not supported in…

mrtaikandi
- 6,753
- 16
- 62
- 93
1
vote
0 answers
Error In consuming WCF services at client side end-point not found
I am working on ASP.NET WCF simple HelloWorld Example. I have successfully completed server side but I am getting issue while working on client side. I have used SVCUTIL.exe to generate proxy classes for me.
On debug I am getting following…

K.Z
- 5,201
- 25
- 104
- 240
1
vote
0 answers
WCF client error
I'm having trouble to consume my WCF service that is hosted on an web IIS (IIS 8.0). I can access the .svc page and add reference to the service on my WPF application, but when I call/invoke some of the wcf service methods, i got an exception:…

Marcelo
- 11
- 2
1
vote
1 answer
Can IIS hosted WCF services perform background tasks?
I know that probably this question would be asked to many times but...
The wcf services hosted on iis7 in an asp. Net Web site can do things automatically? Like post a message to a pre-configured wall on Facebook given the permission to the…

Angarato Surion
- 27
- 5
1
vote
1 answer
Can I host both a webservice and a WCF service on the same website in IIS?
I currently have a website where I'm hosting a webservice with several web methods, I need to add some new web methods, but I want to move to the WCF services model rather than continue with asmx. I want to be able to host the WCF service in the…

Tone
- 2,793
- 6
- 29
- 42
1
vote
1 answer
Hosting multiple WCF ServiceContract implementations from a single service
I have a interface and for the same interface i have multiple implementation.
so i would like to ask you that how do i expose the endpoint, using one host?
SERVICE CODE
[ServiceContract]
public interface ICalculator
{
[OperationContract]
…

Vikas Gupta
- 1,293
- 1
- 15
- 21
1
vote
0 answers
WCF Windows Service Host - WCF Http Request Mapping
I am hosting a wcf rest service within a windows service hosting container and am having an issue mapping http requests from a distinct dns name to a given wcf endpoint. It seems like the requests are mapped via IP Address and the dns name is being…

Doug
- 5,268
- 24
- 31
1
vote
1 answer
Self-hosted WCF service inaccessible in IIS+AppFabric
For a few weeks now I've been having a really weird problem. I have a couple of services which work just fine when self-hosted in a command line app. However in IIS+AppFabric I cannot access one of the services - I get TimeoutException and am pretty…

Valo
- 1,872
- 2
- 15
- 23
1
vote
0 answers
WCF call function from host application
I'm fairly recent to WCF and trying to figure out the best way to accomplish my requirements.
I have an application hosting a WCF service with the following code:
Uri u1 = new
Uri("http://localhost:8732/Client1/WcfServiceLibrary1/Service1/"); Uri
u2…

user2142806
- 11
- 1
1
vote
1 answer
WCF Service over HTTPS giving errors
I have made a WCF service with configuration as follows:
…

Ashish Jain
- 4,667
- 6
- 30
- 35
0
votes
1 answer
How to determine if a WCF service that is hosted in a Console application is up and running?
I have a WCF Service that is hosted by a Console Application.
The client connects to the Service through a named pipe.
And the Console only gets executed when the client needs it, and the console gets killed after the client is done.
Here is the…

Cui Pengfei 崔鹏飞
- 8,017
- 6
- 46
- 87
0
votes
3 answers
Hosting ASPX and WCF
I have searched a lot for methods of hosting the WCF and found them to work, however, in my a Solution I have WCF Service Project(it has a web.config with some connection strings) and a ASPX.NET project( it also has a web.config), could any one…

surpavan
- 1,372
- 7
- 34
- 66
0
votes
2 answers
How to manage ServiceHost in Windows service from a Winforms admin tool?
I have a Windows service that create more than one instance of ServiceHost...
I want to be able to manage those ServiceHosts through an external winforms admin tool, so I can open and close each of the ServiceHost from a UI.
What are my options…

liron
- 375
- 2
- 12