WCF访问被拒绝

  • 本文关键字:拒绝 访问 WCF wcf
  • 更新时间 :
  • 英文 :


我有一台本地托管WCF服务的PC,我可以在C#程序中添加对该服务的引用。但是,当我运行该程序时,我会收到一个"拒绝访问"错误。除了访问被拒绝之外,我没有得到其他信息。

有人对该怎么做有什么建议吗?我有另一台机器,它看起来设置相同,但能够连接到同一台机器上的本地托管版本。我已经看了其他已经发布的问题,但似乎没有什么是正确的。

已编辑。。。。

<?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:TracingApp_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="domainusername" 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);
                }

发现了问题所在,非常可笑。虽然我认为是IIS或.NET造成的,但我几乎是在讨价还价。问题是Windows防火墙被设置为阻止包括网络流量在内的所有内容。这个问题被张贴在这里是因为我认为它是.NET代码。

感谢Grzegorz、CodeCaster和Shailesh花时间阅读并提供建议。

最新更新