I am creating a WCF service that will be hosted in a Windows service. I created a console application as follows
I went to the management console (services.msc) and started the service. But I got the following error:
The LijosWindowsService service on the local computer started and then stopped. Some services stop automatically if they do not have work, for example, performance logs and alerts
I went to the event viewer and got the following
The service cannot be started. System.InvalidOperationException: The Lijo.Samples.WeatherService service has a null application (no infrastructure). This is possible, due to the lack of a configuration file was found for your application or because no mapping of service items to the service name can be found in the configuration file, or because no endpoints were defined in the service item.
Could you tell me what is missing here?
File Name [LijosService.cs]
using System.ComponentModel;
using System.ServiceModel;
using System.ServiceProcess;
using System.Configuration;
using System.Configuration.Install;
namespace Lijo.Samples
{
[ServiceContract(Namespace = "http://Lijo.Samples")]
public interface IWeather
{
[OperationContract]
double Add(double n1, double n2);
}
public class WeatherService : IWeather
{
public double Add(double n1, double n2)
{
double result = n1 + n2;
return result;
}
}
public class MyWindowsService : ServiceBase
{
public ServiceHost serviceHost = null;
public MyWindowsService()
{
ServiceName = "LijosWindowsService";
}
public static void Main()
{
ServiceBase.Run(new MyWindowsService());
}
protected override void OnStart(string[] args)
{
if (serviceHost != null)
{
serviceHost.Close();
}
serviceHost = new ServiceHost(typeof(WeatherService));
serviceHost.Open();
}
protected override void OnStop()
{
if (serviceHost != null)
{
serviceHost.Close();
serviceHost = null;
}
}
}
[RunInstaller(true)]
public class ProjectInstaller : Installer
{
private ServiceProcessInstaller myProcess;
private ServiceInstaller myService;
public ProjectInstaller()
{
myProcess = new ServiceProcessInstaller();
myProcess.Account = ServiceAccount.LocalSystem;
myService = new ServiceInstaller();
myService.ServiceName = "LijosWindowsService";
Installers.Add(myProcess);
Installers.Add(myService);
}
}
}
App.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<services>
<service name="Lijo.Samples.WeatherService"
behaviorConfiguration="WeatherServiceBehavior">
<host>
<baseAddresses>
<add baseAddress="http://localhost:8000/ServiceModelSamples/LijosService"/>
</baseAddresses>
</host>
<endpoint address=""
binding="wsHttpBinding"
contract="Lijo.Samples.IWeather" />
<endpoint address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="WeatherServiceBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="False"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
thank
Lijo
source
share