0

PIC32 マイクロコントローラと Windows プラットフォーム間の TCP ベースの通信を開発してデータを送受信するために、WCF サービス ライブラリを使用して Windows サービスを作成しています。

私のapp.configファイルは

  <?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <system.web>
    <compilation debug="true" />
  </system.web>
  <!-- When deploying the service library project, the content of the config file must be added to the host's 
  app.config file. System.Configuration does not support config files for libraries. -->
  <system.serviceModel>
    <services>
      <service behaviorConfiguration="WcfServiceLibrary1.Service1Behavior" name="WcfServiceLibrary1.Service1">
        <endpoint address="" binding="netTcpBinding" bindingConfiguration=""
          contract="WcfServiceLibrary1.IService1">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration=""
          contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:8523/Service1" />
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="WcfServiceLibrary1.Service1Behavior">
          <serviceMetadata httpGetEnabled="false" />
          <serviceDebug includeExceptionDetailInFaults="false" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

</configuration>

また、service1.cs ファイルの C# コードは次のとおりです。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.ServiceModel;
using WcfServiceLibrary1;

namespace WindowsService1
{
    public partial class Service1 : ServiceBase
    {
        internal static ServiceHost myServiceHost = null;
        public WCFServiceHost1()
        {
            InitializeComponent();
        }

        protected override void OnStart(string[] args)
        {
            if (myServiceHost != null)
            {
                myServiceHost.Close();
            }
            myServiceHost = new ServiceHost(typeof(Service1));
            myServiceHost.Open();
        }

        protected override void OnStop()
        {
            if (myServiceHost != null)
            {
                myServiceHost.Close();
                myServiceHost = null;
            }
        }
    }
}

Method must have return typepublic WCFServiceHost1()というエラーが発生しています。

このエラーが発生する理由がわかりません。私は現在 WCF にいますが、msdn で提供されている情報を参考にしてこれまでに行いました。

4

1 に答える 1

3

コンストラクターを宣言したいと思います:

public Service1()
{
    InitializeComponent();
}

ただし、戻り値の型を持つ必要があるメソッドを宣言しました (void の可能性もあります)。

public WCFServiceHost1()
{
    InitializeComponent();
}

要約すると、コンストラクターである場合はpublic Service1()(型名と同じ)、メソッドである場合は ですpublic void WCFServiceHost1()

于 2013-10-16T10:46:44.230 に答える