-2

WCF サービスがローカルホスト化された PC があり、C# プログラムでサービスへの参照を追加できます。しかし、プログラムを実行すると、アクセス拒否エラーが発生します。Access Denied 以外の情報は得られません。

何をすべきかについて何か提案はありますか?同じセットアップに見える別のマシンがありますが、同じマシン上のローカルホスト バージョンに接続できます。すでに投稿された他の質問を見てきましたが、何も正しくないようです。

編集....

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.diagnostics> 
       <sources> 
            <source name="System.IdentityModel" switchValue="All"> 
                <listeners> 
                    <add type="System.Diagnostics.DefaultTraceListener" name="Default"> 
                        <filter type="" /> 
                    </add> 
                    <add name="IdentityModelListener"> 
                        <filter type="" /> 
                    </add> 
                </listeners> 
            </source> 
        </sources> 
        <sharedListeners> 
            <add initializeData="C:\Tracing\App_identitymodellog.svclog"                    type="System.Diagnostics.XmlWriterTraceListener, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" 
         name="IdentityModelListener" traceOutputOptions="Timestamp, Callstack">
            <filter type="" /> 
        </add> 
    </sharedListeners> 
    <trace autoflush="true" /> 
</system.diagnostics> 
    <system.web>
<compilation debug="true" targetFramework="4.0">
        <assemblies></assemblies></compilation>
        <identity impersonate="true" userName="domain\username" password="password" />
    <hostingEnvironment shadowCopyBinAssemblies="false"/>
<trust level="Full" /> 
</system.web>
<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
                <readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                <security mode="None">
                    <transport clientCredentialType="None" proxyCredentialType="None" realm="" />
                    <message clientCredentialType="UserName" algorithmSuite="Default" />
                </security>
            </binding>
        </basicHttpBinding>
    </bindings>
    <behaviors>
        <serviceBehaviors>
            <behavior>
                <serviceMetadata httpGetEnabled="true" />
                <serviceDebug includeExceptionDetailInFaults="false" />
            </behavior>
        </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
    <validation validateIntegratedModeConfiguration="false" />
</system.webServer>

そしてapp.configは次のとおりです:-

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
<bindings>
  <basicHttpBinding>
    <binding name="BasicHttpBinding_IService" 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="2147483647" maxStringContentLength="2147483647"
        maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
      <security mode="None">
        <transport clientCredentialType="None" proxyCredentialType="None"
          realm="" />
        <message clientCredentialType="UserName" algorithmSuite="Default" />
      </security>
    </binding>
    <binding name="BasicHttpBinding_IService1" 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:2745/ActDemo/Service.svc"
    binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService"
    contract="ActWS.IService" name="BasicHttpBinding_IService" />
  <endpoint address="http://localhost/ActDemo/Service.svc"
    binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService1"
    contract="Act.IService" name="BasicHttpBinding_IService1" />
</client>
</system.serviceModel>
</configuration>`

コード :-

using ActDemoApp;    

namespace ActDemoApp
{
    class Program
    {
        static void Main(string[] args)
        {


            string strXML="";
            string strRetXML = "";

            try
            {

                ActWS.IService oService;

                ActWS.Request oRequest = new ActWS.Request();
                ActWS.Response oResponse;

                ActWS.Acceptance oAccept = new ActWS.Acceptance();


                StreamReader streamReader = new StreamReader("c:\\temp\\Request.dat");
                strXML = streamReader.ReadToEnd();
                streamReader.Close();

                Stopwatch stopWatch = new Stopwatch();
                oRequest = new ActWS.Request();
                oService = new ActWS.ServiceClient("BasicHttpBinding_IService1");

                // To ignore BindingFailure, turn off Errors -> Managed Debugging Assitant -> BindingFailure


                oResponse = new ActWS.Response();

                strRetXML  = oService.MakeRequest(strXML);

                if (strRetXML == null)
                {
                    Console.WriteLine("XML was invalid");
                    Environment.Exit(0);
                }
4

1 に答える 1

0

問題が何であるかを発見し、かなり笑えました。原因は IIS または .NET にあると考えていましたが、私は障害物と同じくらい問題に近かったのです。問題は、Windows ファイアウォールがネットワーク トラフィックを含むすべてをブロックするように設定されていたことです。.NET コードだと思ったので、ここに質問を投稿しました。

Grzegorz、CodeCaster、Shailesh に時間を割いて読んで提案を提供していただきありがとうございます。

于 2012-07-11T13:48:15.783 に答える