1

アプリケーションの要件に関連しているため、手動でサービスを作成しようとしています。

コンソールアプリケーションへのサービスをホストしたい。どうやってやるの?

もう一度、2つのプロジェクトがあります。

1)シンプルなライブラリ:

これには、サービス契約(インターフェース)を持つファイルが1つだけ含まれています。

[ServiceContract]
public interface IMessageManager
{
    [OperationContract]
    string ConvertToUpper(string text);
}

そのライブラリをコンパイルすると、DLLファイルが出力として作成されます。

その後、svcutil.exeを使用して、クライアントプロキシクラス(.cs)ファイルと構成ファイル(output.config)を手動で作成しました。

2)コンソールアプリケーション:

これには、サービスコントラクトを実装するライブラリDLLとクラスへの参照があります。

public class MessageManager : IMessageManager
{
    public string ConvertToUpper(string text)
    {
        return text.ToUpper();
    }
}

また、svcutil.exeによって生成された2つのファイルがあります。すべてをoutput.configファイルからコンソールアプリケーションのApp.configファイルにコピーしました。そして、私は次のようにクライアントコードを書きました:

MessageManagerClient client = new MessageManagerClient();
string output = client.ConvertToUpper("aaaa");
Console.WriteLine(output);

App.configファイルは次のようになります。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="DefaultBinding_IMessageManager" 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 binding="basicHttpBinding" bindingConfiguration="DefaultBinding_IMessageManager"
          contract="IMessageManager" name="DefaultBinding_IMessageManager_IMessageManager" />
    </client>
  </system.serviceModel>
</configuration>

では、この場合、どのアドレスを指定する必要がありますか?

上記の私のアプローチに何か問題があるのでしょうか?

どんな助けでも大歓迎です。ありがとう。

4

1 に答える 1

0

質問への回答:

  1. <endpoint/>で定義された に属性としてアドレスを追加します<client/>。例えば:<endpoint address="http://localhost/blah" ...
  2. そうです、リクエストごとに SOAP エンベロープが生成されます。「ファイル」は存在しません。
于 2012-09-06T06:47:53.883 に答える