0

WCF サービス ライブラリを Windows サービスとしてホストする方法を誰か教えてもらえますか? さまざまなリンクをたどろうとしましたが、常に何らかのエラーが発生します。サービスが開始してすぐに停止するか、クライアントが Windows でホストされているサービスにアクセスできません。単純な WPF アプリをクライアントとして使用しています。

また、エンドポイントアドレスとベースア​​ドレスの違いと、WCFをWindowsサービスとしてホストしているときに何を設定する必要があるかを誰かに教えてもらえますか

WCF サービスの App.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <connectionStrings>
    <add name="mysqlconnection" connectionString="Initial catalog=calculator; data source=10.2.108.251; User Id=sa; Password=abc@123"/>
  </connectionStrings>
  <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 name="Calculator1.CalculatorService1" behaviorConfiguration="Calculator1.BasicCalculator">
        <endpoint address="" binding="wsHttpBinding" contract="Calculator1.ICalculator1">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8732/Design_Time_Addresses/Calculator1/Service1/" />
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="Calculator1.BasicCalculator">
          <!-- To avoid disclosing metadata information, 
          set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="True"/>
          <!-- To receive exception details in faults for debugging purposes, 
          set the value below to true.  Set to false before deployment 
          to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="False" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

</configuration>

SvcUtil.exe を使用して生成した app.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="BasicHttpBinding_ICalculator1" closeTimeout="00:01:00"
                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                    allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                    maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                    useDefaultWebProxy="true">
                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                    <security mode="None">
                        <transport clientCredentialType="None" proxyCredentialType="None"
                            realm="" />
                        <message clientCredentialType="UserName" algorithmSuite="Default" />
                    </security>
                </binding>
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://localhost:9001/CalculatorService1"
                binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ICalculator1"
                contract="ICalculator1" name="BasicHttpBinding_ICalculator1" />
        </client>
    </system.serviceModel>
</configuration>

Windows サービス ファイル

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 System.ServiceModel.Description;

namespace WindowsSErviceCalculator1
{
    public partial class CalculatorWindowsService1 : ServiceBase
    {
        ServiceHost m_svcHost = null;
        public CalculatorWindowsService1()
        {
            InitializeComponent();
        }

        protected override void OnStart(string[] args)
        {
            if (m_svcHost != null)
            {
                m_svcHost.Close();
            }
            string strAdrHTTP = "http://localhost:9001/CalculatorService1";
            Uri[] adrbase = { new Uri(strAdrHTTP) };
            m_svcHost = new ServiceHost(typeof(Calculator1.CalculatorService1), adrbase);

            ServiceMetadataBehavior mBehave = new ServiceMetadataBehavior();
            m_svcHost.Description.Behaviors.Add(mBehave);

            BasicHttpBinding httpb = new BasicHttpBinding();
            m_svcHost.AddServiceEndpoint(typeof(Calculator1.ICalculator1), httpb, strAdrHTTP);
            m_svcHost.AddServiceEndpoint(typeof(IMetadataExchange),
            MetadataExchangeBindings.CreateMexHttpBinding(), "mex");

            m_svcHost.Open();
        }

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

1 に答える 1

0

たとえば、サービスをコンソール アプリケーションとしてホストできる場合は、そのアプリケーションapp.configファイルからサービス構成を取得し、それをサービスのファイルにコピーしapp.configます。

アプリケーションまたはサービスから WCF サービスをホストすることに違いはありません。

そうは言っても、何かをするように指示しない限り、サービスは実行されません。技術的に言えば、サービスを維持するループ (理想的にはタイマーまたはスレッド) が必要です。それがない場合、サービスはすぐに開始および停止します。


あはは!あなたの質問の編集から、1 つのことが明らかになりapp.configます。コードで行われたものから構成を上書きしています。いずれかの方法を決定する必要がありapp.configます。ファイルを介してすべてを実行するか (これをお勧めします)、コードですべてを実行します。

于 2013-11-22T11:37:53.060 に答える