2

私の wcf Web サービスの 1 つにアクセスするコマンドレットを作成しようとしています。

新しいコマンドレット: New-WebServiceProxy を見てきましたが、実際には ASMX Web サービスを使用できるようにしか見えません。

この記事を見ました。これは Powershell v1.0 に焦点を当てていますが、より良い方法を使用したいと思います (存在する場合)。 http://keithhill.spaces.live.com/blog/cns!5A8D2641E0963A97!645.entry

この Web サービスを使用する他の .net アプリから、私が使用する構成の種類を次に示します。

 <system.serviceModel>
    <bindings>
      <wsHttpBinding>
        <binding name="WSHttpBinding_IMyService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536000" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
          <readerQuotas maxDepth="32" maxStringContentLength="819200" maxArrayLength="1638400" maxBytesPerRead="409600" maxNameTableCharCount="1638400" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
          <security mode="Message">
            <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
            <message clientCredentialType="Windows" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="true" />
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://myServer/MyService/MyService.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IMyService" contract="MyService.IMyService" name="WSHttpBinding_IMyService">
        <identity>
          <dns value="localhost" />
        </identity>
      </endpoint>
    </client>
  </system.serviceModel>

誰でも私にアドバイスしたいですか?

4

1 に答える 1

2

最終的には、クライアント側のプロキシ オブジェクトを作成し、それを .NET アセンブリにコンパイルして、そのプロキシを作成し、PowerShell でそれに対してプログラムする必要があります。New-WebServiceProxy は、それを可能にするために作成されました。ASMX サービスに対してのみ機能することに驚いていますか? 構成ファイルに MEX エンドポイントが定義されていないため、機能していないのではないでしょうか? Web サービスのプロキシ生成を有効にするMEX エンドポイントを作成する方法については、この記事を参照してください。

于 2010-07-01T15:33:53.627 に答える