0
votes
1answer
40 views

Multiple running tasks in windows service with WCF?

Sorry If im not going to be specific but this is my first post as a fresh developer. Im presented with task of creating asp.net web app in C# that will be interacting with multiple systems around ...
0
votes
1answer
28 views

WCF: IIS or Windows Service

What are the pros and cons of hosting a WCF service in IIS versus using a Windows service? FYI - I have googled but it's surprisingly hard to find relevant answers.
0
votes
0answers
16 views

WCF vs Windows Service: What is the recommended method to process multiple queues in MSMQ with throttling?

We have a requirement where there is need to implement queuing so that we can control concurrency and not overload the database. From Microsoft world we have chosen to use MSMQ to store the requests. ...
0
votes
1answer
28 views

How to Call a WCF or Window Service From Android Client?

I have a Android app and I have a button which is used to print documents. When I press that button I have to call my WCF or Windows service to print that page. Is it possible and which is better to ...
0
votes
2answers
47 views

WinService sometimes fails to start after boot

I have a few Windows services (all written in C#) that all show the same strange behaviour. I have them set to delayed auto start so that they get started after the boot (delayed because well they are ...
2
votes
2answers
35 views

How to pass arguments to `Configuration.Install.Installer` when installing a long-running service through `installutil`

I have an application that I want to run as a Windows Service. Following instructions provided in this MSDN doc page (I need to host a WCF service, so the procedure also details this part), I can do ...
0
votes
1answer
52 views

Self-hosted WCF: automatically create service hosts and enable dependency injection with Autofac

I'm working on a Windows Service with a number of self-hosted WCF services. I'm using Autofac for DI/IoC. WCF services and endpoints are set up in app.config, and by enumerating the configured ...
0
votes
1answer
56 views

How to throw the error to window service to restart

I am having MSMQ on windows 2008. Messages are available in private queue. I have one WCF subscriber (written in C#) which is installed as windows service. Now problem is that sometimes the WCF ...
0
votes
1answer
45 views

Why instantiate a ServiceHost within BackgroundWorker for a WCF service hosted within a Windows Service?

I have a Windows service that I created to host a WCF service. It works no problem, but I've noticed online that a lot of people build their services such that the servicehost object is instantiated ...
0
votes
1answer
63 views

Server listen to Client Serial Ports

I manage a web site for company that hired me after being unsatisfied with the original developer of the site. One function of this site is to add new patients. Part of adding the patient is to ...
0
votes
1answer
30 views

WCF REST service hosted in Windows service not working without IIS installation

I have developed a REST service using WCF and hosted it in a windows service and that works fine on a machine which has IIS installed, but not on a machine which does not have IIS. On the machine ...
1
vote
1answer
77 views

WCF callback channel abort exception

I implemented publisher-subscriber mechanism with WCF. this is how I subscribe for callbacks : public delegate void AsyncResponseEventHandler(AsyncResponse asyncResponse); public static event ...
0
votes
1answer
44 views

How to know file copy is in progress and how to know a particular windows service is running?

In our application we are using windows service & WCF service. One of the task of the application is as follows: Client copy file (large file) in specific server location using our admin web ...
0
votes
1answer
40 views

Chatbot (irc) as WCF service?

I want to make a IRC bot and got most of the code already, the only thing I don t know yet is or it is possible that I can host it in a WCF service. The problem I think is that it will be garbage ...
0
votes
1answer
52 views

Hosting a WCF service in a Windows service

Good day I want to host a WCF service in a Windows service and as such I am following the tutorial: http://msdn.microsoft.com/en-us/library/ff649818.aspx During "Step 8: Add a WCF Service Reference ...
0
votes
2answers
85 views

cosume a WCF windows service from another PC

I have created a WCF service and hosted it in a windows service. Testing this service with visual studio works fine and I can consume it. Now I have installed the service on a PC (called PC1) and ...
0
votes
2answers
131 views

Accessing a app.config file property in another app.config file

I have a WCF class library which implements a Windows Service business logic.In app.config file i defined a property called "debug mode" for debugging purposes. Then i have created separate Windows ...
0
votes
1answer
120 views

Installing and Running WCF Service inside a Windows Service

I am not a C# or .NET expert. However, I must use it... I am running InstallUtil.exe MyService.exe to install a Windows Service that is essentially running a WCF service. I have defined the WFC ...
0
votes
1answer
56 views

COM exception 0x80040154 when hosting WCF service in Windows Service or IIS

I have a WCF service (C#), which I can build and run in Visual Studio 2010 (through Cassini Development Server). I connect a console client app to that service and all works great. The service ...
0
votes
1answer
102 views

Advice on layered architecture (Win Forms + WinService; WCF; LINQ to SQL)

I'll try to explain as briefly as possible: C#.Windows application for categories and descriptions of files. Windows Forms - for the user A library I want to be saved for future usage - I got nice ...
0
votes
2answers
141 views

Unable to connect to self-hosted WCF service

I am trying to build a fairly basic WCF SOAP web service self-hosted as a Windows service. The Windows service itself is up and running on my machine -- I just can't access it locally via Visual ...
0
votes
1answer
67 views

Security Exception calling Reporting Services from a Windows Service

I am trying to call the web service for SQL Server Reporting Services from a Windows Service. I can successfully make the call from an Asp.Net MVC website, but when I try to use exactly the same code ...
2
votes
1answer
460 views

WCF NamedPipe CommunicationException - “The pipe has been ended. (109, 0x6d).”

I am writing a Windows Service with accompanying "status tool." The service hosts a WCF named pipe endpoint for inter-process communication. Through the named pipe, the status tool can periodically ...
-1
votes
1answer
62 views

How to deploy an auto-updating WCF windows service?

I have a WCF Windows service that is used locally only. I need to deploy it in multiple sites and I need the option to auto update it - when an update is released, the service has to be able to get ...
0
votes
1answer
108 views

Store user settings in WCF service hosted by a Windows service

I've created a WCF/REST service that is hosted by a Windows service. The service has no database behind it, because there is no need for. But I want to save some general settings (list of allowed ...
0
votes
0answers
57 views

FTP timeout on active connection mode in a WCF service hosted as windows service

I have written a TaskServer WCF service that loads a FTP file sync plugin and executes file synchronization of local and server files in an extra thread by using FTPclient. In the source of FTPclient ...
0
votes
0answers
70 views

WCF TCP Not able to connect with hosted in Windows Service, works fine in self hosted in console

I've researched everywhere but haven't found a solution. I hope somebody has seen this behavior and able to give me some advice. Here is the situation. I have WCF service self-hosted in console ...
1
vote
2answers
90 views

Consume information from multiple windows services

*HOW TO CONSUME INFORMATION FROM MULTIPLE WINDOWS SERVICE * I have a central Administrator machine and 40 other acts like clients , and what i need to do : 1- install a windows service in each ...
0
votes
0answers
117 views

handle multiple windows service client c#.net [closed]

It's easy really to think about it but i can't find a solution what i need is simple : 1- Install a windows service in a X client machine 2- Get the informations from all the client and put ...
0
votes
3answers
42 views

Exception when Widows Service(WCF) is starting on SOME computers?

I have a WCF service using net.tcp communication to a fat winforms client. The installation of the windows service is made with a install.bat that looks like this : @ECHO OFF REM The following ...
0
votes
0answers
107 views

Not able to access multiple WCF Services under a single Windows Service

i have build WCF application which have 2 Services. I want access them under Single Windows service. I am able to access only one service out of 2. My app.config look like: <?xml version="1.0" ...
0
votes
2answers
314 views

ASP.NET MVC 4 application to Call Windows Service

We are using distributed architecture for our project. In which UI layer is reside on one server and Business Layer on another server. We are creating Windows service of Business layer. Is it possible ...
0
votes
1answer
211 views

WCF service cannot write file to users profile directory - access denied [closed]

I got a WCF service hosted as windows service in my project bin folder in my users profile folder. While the working path of the service is always C:\WINDOWS\system32 (obviously) I still can write log ...
0
votes
1answer
143 views

Calling method of WCF Service that is hosted in IIS consumed in a Windows Service but the Service not starting

I am new to .net and WCF. So if this code or the question looks silly, please bare with me. Can you please advice why I am not able to start my Windows Service. As soon as I start it stops ...
0
votes
0answers
84 views

Accessing Member between ServiceBase and ServiceHost using Self-Host WCF

Using Self-Host WCF sample from http://msdn.microsoft.com/en-us/library/ms750530.aspx ; I would like to create Windows Service (Daemon) that also serve WCF Service Host like ICalculator in ...
1
vote
1answer
178 views

IIS AppFabric vs classic Windows Services [closed]

We have an Enterprise CMS with a lot of services all of different kinds, some of them are windows services. I know about the IIS AppFabric extensions and the idea of having all the services running in ...
0
votes
3answers
112 views

Windows service status “Starting”

I have written a windows service which starts automatically and status becomes "started". Sometimes service status goes to "starting" state and impossible to recover to "started" state even after ...
0
votes
1answer
143 views

Unable to start Windows Service that hosts WCF service with NetNamedPipeBinding binding

I am creating a windows service that is supposed to host a WCF service with NetNamedPipeBinding binding. Following is the code: protected override void OnStart(string[] args) { var serviceType = ...
0
votes
0answers
65 views

DirectoryEntry.CommitChanges() throws exception in WCF windows service but the same code works in console application

I am trying modify the active directory attributes programmically(C#). directoryEntry.CommitChanges(); When executing the above line, wcf windows service throws "The server is unwilling to process ...
0
votes
1answer
138 views

Sending messages from windows service to desktop app on the same machine

I need some advice about a scenario like this: We have a windows service, polling a DB periodically, say every five seconds. We also have a desktop application running on the same machine with the ...
2
votes
0answers
183 views

Windows Service hosting MSMQ WCF service via ServiceHost is unable to write to Event Log or write files to system, but can move files around

We have currently written a MSMQ WCF service hosted in a Windows Service that acts as an email queuing service. The idea is that all of our client applications, which can be accessed by multiple ...
0
votes
1answer
122 views

netTcpRelayBinding WCF service hosted in Windows Service - Standard practices

I am writing netTcpRelayBinding WCF service hosted in Windows Service. I feel my code is naive due to lack of experience in windows service development. This get called from Windows-Azure. Could you ...
0
votes
1answer
41 views

Running UI From WCF Hosted Inside WindowService

I have a Window Service thats hosts wcf: protected override void OnStart(string[] args) { if (serviceHost != null) { serviceHost.Close(); } serviceHost = new ...
0
votes
0answers
48 views

WCF library host in Windows service returns error

I'm new with WCF services, I have a WCF library (DLL) hosted in Windows service, this service is called by a DLL which is being called by reflection, I have the following app.config in Windows service ...
2
votes
2answers
155 views

How to release unmanaged resources in a WCF service that is hosted in a Windows Service?

I have a WCF service hosted in a Windows Service. The WCF service has a thread that makes a UdpClient connection to an outside system. I am finding that when the Windows Service is stopped that the ...
0
votes
0answers
58 views

wcf 4.0 IMetadataExchange contract not found

I am configuring a WCF service in a windows service. Here is my code private ServiceHost monitorServiceHost = null; protected override void OnStart(string[] args) { if ...
0
votes
0answers
142 views

.NET WCF - There is already a listener on IP endpoint when service auto restarts

I have a WCF service that is deployed as a Windows service on a server. It is configured to restart automatically on recovery (in the Properties dialog for the service in the Services.msc utility). ...
0
votes
0answers
61 views

IIS and hosting WCF service in a Windows Service [closed]

I have a WCF service that is hosted inside a Windows Service. In addition, I have added the NETWORK SERVICE user (who the service is running as to be able to listen to Http at the specified port: ...
1
vote
1answer
52 views

WCF Hosting - deciding factors

I did google this . Could not find any concrete answer. What are the deciding factors(in general no specific scenarios) would i have to look at to host WCF service. 1. IIS 2. Windows Service 3. WAS ...
0
votes
1answer
177 views

No endpoint of WCF based Named Pipe service for specific application

I am facing a strange issue with windows service communicating to a windows form (Notification Tray) application using WCF based Named Pipe Endpoint.(.Net Framework 4.0) Once the setup is installed, ...

1 2 3 4 5 8