Tagged Questions
0
votes
1answer
23 views
Determine host type ( selfhost vs iis ) for a wcf service exposing basichttp binding
There is a service , exposing one endpoint as basic http binding.
I have two types of hosting ( selfhost for test ,iis for production)
I am using configurationmanager which has to read a service ...
0
votes
0answers
38 views
What port of VPS can I use in endpoint of WCP?
I am writing a WCF Hello World service. I have hosted it on my local IIS and it works.
Now I am trying to Host on a VPS (Remote Server) with Windows Server 2008 and IIS 7.5.
Before I host the ...
0
votes
0answers
199 views
Unable Host WCF Service with nettcpBinding on IIS 7.0
I am having a WCF ServiceLibrary which runs successfully on WCF Test Client.
Now I am trying to build a Website to Host this web service. I am using nettcp binding. My web.config file looks like this
...
1
vote
2answers
73 views
Hosting IIS site on local company Network
There are 3 people working on a project, one of which is working on a wcf service, is it possible for him to create an IIS site on his machine locally to host the service and allow the other members ...
0
votes
0answers
49 views
WCF Rest service Hosting issue
I have hosted a sample WCF rest (JSON) service to a third party server. But the issue is when I tried to access the service from Mozilla Rest client , I am getting the following error.
Response ...
2
votes
2answers
214 views
Service cannot be started. Could not register URL
I want to host wcf in window service. I've done several times before without any problem. This time After I installed the service and click on start I get the following error in EventViewer.
Service ...
-1
votes
1answer
141 views
Hosting a WCF service for iOS and Android application back-end [closed]
I would like to create a WCF service for my server-side for multiple platforms (iOS and Android) to operate against (mainly sending data like text and images). I have a couple questions:
Will WCF ...
0
votes
1answer
70 views
Can I make “Discover services in Solution” work for Windows service based WCF services?
I've got a VS2010 solution with two projects, each containing a Windows service hosting a WCF service. I also have another project as part of the solution that consumes these services.
When I deploy ...
0
votes
1answer
23 views
Windows account for IIS7 to connect DB
I have Client, WCF service (hosted in windows service) and Object Database. To connect Object DB we have one API provided by DB team. This API reads the Windows account posted in Windows hosted Logon ...
0
votes
1answer
148 views
How to change the WCF Service Url?
I have a WCF 3.0 service which has been configured with BasicHttpBinding and has been deployed and hosted in IIS.
I can access my service using the below url:
...
1
vote
1answer
44 views
What's a good ASP & WCF host? [closed]
Currently I'm new with ASP and WCF, but I really enjoy it and I would like to purchase some online hosting to get myself started.
Does anyone know a good hoster which isn't that expensive and ...
0
votes
0answers
89 views
How to host WCF service in IIS 7.5 or WAS using net.tcp binding
I am looking for a good document about how to host WCF services in IIS7.5 or WAS using tcp.ip binding. I found some on the internet but most of them are incomplete.
0
votes
1answer
111 views
WCF on Bigrock.in/.com or Godaddy Shared Windows Hosting [closed]
I was wondering whether a wcf service would be allowed to be hosted on http://Bigrock.in or http://bigrock.com windhows shared hosting or with godaddy's shared windows hosting.
Anyone have any ...
0
votes
2answers
264 views
HostingEnvironment.ApplicationPhysicalPath and Unit Test
In my WCF code I need to know the physical location of the service, thus I used HostingEnvironment.ApplicationPhysicalPath.
But unit test project is unable to get value, normal to me, since the ...
0
votes
2answers
176 views
WCF background process hosing enviroment
Here is a question for WCF hosing environment:
You are developing an application that performs file backups in the
background. The background application will host a Windows
Communication ...
0
votes
1answer
108 views
Can a “Standard” WCF service and a REST-ful OData service be combined into a single service?
I have a WCF service that offers a standard SOAP interface over TCP/IP, HTTP or Named Pipes. This service computes and caches a large, complex, relational data set and offers views on it to clients, ...
0
votes
2answers
266 views
How to stop WCF Service project from being hosted automatically while debugging
I have Asp.Net solution that contains few WCF Service projects. Every time i run the application in debug mode, i can see that my services being hosted on ASP.Net Development Server. I just have ...
1
vote
1answer
192 views
Error accessing a WCF service
I have a very strange problem.
I have a working WCF service.
[ServiceContract]
public interface IService
{
[OperationContract]
int AddResult(int result, string name);
[OperationContract] ...
0
votes
0answers
60 views
Error while deploying a WCF service on web
I created a working WCF Service Library on my computer.
When I published it on the hosting (right-click -> Publish -> I entered address) and launched the web page with this service like ...
0
votes
1answer
97 views
Self hosting WCF contract not found
I used this MSDN example to construct my console host app:
http://msdn.microsoft.com/en-us/library/ms731758.aspx
It works I have a service running, while running I can add it as a Service Reference ...
1
vote
1answer
715 views
Changing existing WCF project to Azure project
I have a working WCF service.
I want to deploy it on Windows Azure.
There Host Existing WCF Service On Azure
it is written, that I should make right-click on the project and choose an option.
But I ...
-1
votes
2answers
1k views
How to locally host a WCF service on IIS that will be available to clients over the internet, and configure SSL for it?
I have a C# WCF service and client that I wrote so that employees of a business can clock in/out from a client on a mobile device (for now, a netbook). This is tested and works well in development, ...
6
votes
1answer
2k views
How to host my WCF service in my website?
I am new to WCF. I have developed a sample WCF service. My service uses the basicHttp binding.
I host my service in local IIS 7.5 using WAS and it works fine. Now I want to host my service in my ...
0
votes
3answers
636 views
Error while hosting WCF Service
I am trying to host a WCF Service in IIS, but I am getting the following error.
"The configuration section 'oracle.dataaccess.client' cannot be read because it is missing a section declaration "
I ...
0
votes
1answer
223 views
Why is my server returning machine name instead of url with my WCF Service?
Why is my server returning machine name instead of url with my WCF Service hosted in IIS6 on windows 2003 x86?
1
vote
1answer
529 views
Steps to Build and deploy a WCF Service on IIS using PowerShell scripting
Can some one please help me on the Steps to build and Deploy a WCF Service on IIS using the PowerShell Scripting.
Regards,
Harshal
0
votes
2answers
621 views
Configuring and hosting WCF services in a Prism desktop application [closed]
My application is currently made up of 2 different solutions.
1) The Shell which contains all the WPF and front end logic
2) The BackEnd which contains all the WCF service implementations and ...
1
vote
1answer
160 views
Hosting WCF Service on a local machine - DNS work?
I've a WCF service running just on my laptop. The laptop is connected to the web, IP is static.
What's involved in getting that service consumable by a web user (say I'm in Cyprus and my clients are ...
0
votes
1answer
117 views
Net Tcp Service not discoverable when hosted using console
When trying to host my WCF service using Net Tcp channel through Windows Console, I have to comment the 4 lines of code everytime I want to make my service discoverable.
class Program
{
static ...
0
votes
3answers
163 views
Host WAS hosting without IIS
I am using Windows XP which got IIS 5, I am facing some authentication issue during database actions. I tried impersanating but it didn't work for me.
Can I host WCF service without IIS(5) in XP ...
0
votes
2answers
102 views
Authentication error during acess WCF service through IIS 5
I have hosted a WCF service in my local machine(XP SP3) lets name as PushService, I am consuming this service in PushServiceClient. When I keep PushService project in running mode and try to push data ...
0
votes
1answer
936 views
How to call WCF Service?
I've the following code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html ...
2
votes
1answer
123 views
Server rejects request on self hosted service
I have created a self hosted service with a proxy
Service and Contracts
Namespace ECDBDatabase.Service
Public Class DatabaseService
<ServiceContract(Name:="DatabaseService", ...
-1
votes
1answer
57 views
Hosting A Service as A WCF Service
I have two .cs files in one i will specify the Interfaces, and in another file i will implement the interfaces. Now i want to host Service as a WCF Service on IIS.
In another way How to host the ...
0
votes
1answer
107 views
need advice on how to host wcf rest service
I have created a wcf project. It has some wcf rest services. Now i need to host it to the web server, which is a shared hosting.
My web site is: www.mysite.com.
And the services should have ...
1
vote
2answers
160 views
WCF Winform Hosting
I have a WCF service hosted in a Winforms application, it's running on a vista machine and I've used netsh to allow the application to listen on port 6003.
I have a client application which can call ...
4
votes
3answers
2k views
How to start a process from an IIS hosted WCF service?
I would like to run a process from an intranet client on the WCF service side. In my case a client asks a server to create a new process on the server's machine under the provided credentials. WCF ...
-3
votes
1answer
88 views
local pc as server [closed]
Hi is there a way to use my locally hosted wcf service over the internet by using my current IP. I'm having wcf service which is having postgreSQL as database. I have looked for a place to host this ...
0
votes
2answers
485 views
Installing WCF service on IIS using WIX
I have designed a WCF service, how do I install it to IIS on a server using WIX? Any clues where I can find step by step procedure?
0
votes
1answer
396 views
Dynamic IIS hosted WCF Service with TCP binding
I am using Dynamic IIS Hosting (http://blog.micic.ch/net/dynamic-iis-hosted-wcf-service) with http binding. How can I use tcpbinding with dynamic IIS hosting.
Thanks
0
votes
0answers
220 views
WCF service in self hosting on window application running on remote machine not respond when no one is logged in
Hi I have developed one WCF service which is hosted on the window application. This application is running on the virtual machine.If none is logged in on machine for long time that service stop ...
1
vote
1answer
109 views
Host wcf service
I can access my WCF service typing
http://localhost:1592/TourService.svc/GetPoints
in browser.
However I can't access my service if I put my IP address instead "localhost".
What should I do ...
1
vote
1answer
469 views
Host WCF service on shared provider
I am trying to access my WCF service on a shared hosting server, i can consume the service but when i try to call the service i get "The caller was not authenticated by the service" error.
Client ...
9
votes
1answer
2k views
WCF Service dies on its own after some time
I am facing a peculiar problem related to a hosted WCF service (.NET Framework 4, IIS 7, Windows 2008 Standard SP2).
After I deployed the service it works fine for some time and it dies on its own by ...
2
votes
2answers
80 views
How to access info about where the WCF service is deployed
I have one WCF service deployed in multiple websites hosted in IIS7 and sometimes (development environemnt) in VS2010.
Often multiple instances are connected to the same database and usually its not ...
3
votes
1answer
352 views
Hosting a WCF Service
So i am new to WCF Services and I need to create a dulplex service (working on it) however I cannot figure out where/how to host it (external). Right now I am using http://aspspider.com for my ...
1
vote
1answer
867 views
How to install WCF service using WiX installer?
How do I create WiX installer for WCF service in this case?
At the start user choose hosting: self-hosting, in IIS, in system service.
Depending on his selection I need to install one of 3 different ...
1
vote
1answer
346 views
Creating a WCF Service Website
I am following Learning WCF by Michelle Bustamante for understanding in and out of WCF.
I am trying to create a WCF Service Web Site, following steps given in an example but I am getting error saying ...
1
vote
1answer
390 views
WCF Hosting on remote server
I created a WCF service at my machine, I hosted it under IIS, it works fine.
then I compile my service , and i put the compile code at remote server. i hosted it under IIS on remote server. but when i ...
0
votes
3answers
306 views
Windows Service Refuses to start
I have hosted a WCF duplex service (netTcpBinding) in a Windows Service going by the instructions given in the blog : ...