.net 无法访问Visual Studio正在发布的WCF Web服务

.net 无法访问Visual Studio正在发布的WCF Web服务,.net,wcf,exception,iis,.net,Wcf,Exception,Iis,更新:我不知道这是否有助于任何人诊断此问题,但wsdl的终点是: http://localhost:8523/Temp/WebService.svc/WebService.svc 这是错误的,我尝试手动更改端点以删除末尾的额外位,但它仍然返回404 /更新 我正在使用WCF处理web服务,当我运行VS2010调试器时,会收到以下错误消息: 目标程序集不包含服务类型。您可能需要调整此程序集的代码访问安全策略 我在网上找到的解决方案是,我应该将[ServiceContract]添加到界面中,但它已

更新:我不知道这是否有助于任何人诊断此问题,但wsdl的终点是:

http://localhost:8523/Temp/WebService.svc/WebService.svc
这是错误的,我尝试手动更改端点以删除末尾的额外位,但它仍然返回404

/更新

我正在使用WCF处理web服务,当我运行VS2010调试器时,会收到以下错误消息:

目标程序集不包含服务类型。您可能需要调整此程序集的代码访问安全策略

我在网上找到的解决方案是,我应该将[ServiceContract]添加到界面中,但它已经存在了

我还看到有人说我必须从csproj文件中删除标记,但这样做会使项目成为类库而不是web服务

但是我的浏览器会打开一个目录列表,通过单击.svc文件,然后单击指向.svc?wsdl的链接,我可以导航到容器生成的wsdl

如果我尝试从应用程序或WCF service Tester中点击服务,我会得到一个404异常,我将一个测试应用程序打包在一起,下面是它给我的异常:

Sending Message: Make Call: InteractionId [rt], Destination [ert], ExternalReferenceId [ert], userIdentifier [ert] attachedData [rt]
System.ServiceModel.EndpointNotFoundException: There was no endpoint listening at http://localhost:8523/WebService.svc?wsdl that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. ---> System.Net.WebException: The remote server returned an error: (404) Not Found.
   at System.Net.HttpWebRequest.GetResponse()
   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
   --- End of inner exception stack trace ---

Server stack trace: 
   at System.ServiceModel.Security.IssuanceTokenProviderBase`1.DoNegotiation(TimeSpan timeout)
   at System.ServiceModel.Security.SspiNegotiationTokenProvider.OnOpen(TimeSpan timeout)
   at System.ServiceModel.Security.WrapperSecurityCommunicationObject.OnOpen(TimeSpan timeout)
   at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
   at System.ServiceModel.Security.CommunicationObjectSecurityTokenProvider.Open(TimeSpan timeout)
   at System.ServiceModel.Security.SymmetricSecurityProtocol.OnOpen(TimeSpan timeout)
   at System.ServiceModel.Security.WrapperSecurityCommunicationObject.OnOpen(TimeSpan timeout)
   at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
   at System.ServiceModel.Channels.SecurityChannelFactory`1.ClientSecurityChannel`1.OnOpen(TimeSpan timeout)
   at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
   at System.ServiceModel.Security.SecuritySessionSecurityTokenProvider.DoOperation(SecuritySessionOperation operation, EndpointAddress target, Uri via, SecurityToken currentToken, TimeSpan timeout)
   at System.ServiceModel.Security.SecuritySessionSecurityTokenProvider.GetTokenCore(TimeSpan timeout)
   at System.IdentityModel.Selectors.SecurityTokenProvider.GetToken(TimeSpan timeout)
   at System.ServiceModel.Security.SecuritySessionClientSettings`1.ClientSecuritySessionChannel.OnOpen(TimeSpan timeout)
   at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannel.OnOpen(TimeSpan timeout)
   at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannel.CallOpenOnce.System.ServiceModel.Channels.ServiceChannel.ICallOnce.Call(ServiceChannel channel, TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannel.CallOnceManager.CallOnce(TimeSpan timeout, CallOnceManager cascade)
   at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
   at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)

Exception rethrown at [0]: 
   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
   at Sabio.Avaya.AACC.ProxyServiceLibary.IProxyService.MakeCall(MakeCallRequestData MakeCallRequestData)
   at Sabio.Avaya.AACC.ProxyServiceLibary.WSPipeProxyClient.MakeCall(MakeCallRequestData MakeCallRequestData) in C:\Users\me\Documents\Visual Studio 2010\Projects\WebService\RemoteClientLib\WSPipeProxyClient.cs:line 42
   at ClientLibTestUI.WcfTestApp.MPCWSButton_Click(Object sender, EventArgs e) in C:\Users\me\Documents\Visual Studio 2010\Projects\WebService\ClientLibTestUI\Form1.cs:line 97
这是我的Web.config:

   <?xml version="1.0"?>
<configuration>

  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <services>
      <service name="WebService" behaviorConfiguration="WebServiceBehaviour">
        <endpoint address="WebService.svc"
                  binding="wsHttpBinding"
                  bindingConfiguration="DefaultWSBinding"
                  name="WSEndPoint"
                  contract="IWebService">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex"
                  binding="mexHttpBinding"
                  contract="IMetadataExchange"
                  bindingConfiguration="mexHttpBinding"/>
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost/Temp/"/>
          </baseAddresses>
        </host>
      </service>
    </services>
    <bindings>
      <netTcpBinding>
        <binding name="DefaultNetTcpBindingConfig"
                 maxConnections="5"
                 portSharingEnabled="true" >
          <security mode="None"/>
        </binding>

      </netTcpBinding>
      <wsHttpBinding>
        <binding name="DefaultWSBinding">
          <security mode="None"/>
        </binding>
      </wsHttpBinding>

      <mexHttpBinding>
        <binding name="mexHttpBinding"/>
      </mexHttpBinding>
    </bindings>
    <behaviors>
      <serviceBehaviors>
        <behavior name="ServerServiceBehaviour">
          <!-- 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="true"/>
        </behavior>
        <behavior name="MexBehaviour">
          <serviceMetadata httpGetEnabled="true" policyVersion="Policy15"/>

        </behavior>
        <behavior name="WebServiceBehaviour">
          <!-- 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>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>

</configuration>

有人能告诉我我可能做错了什么吗?如果我在IIS或VS2010中的内置Web服务器中托管,我会遇到类似的问题。配置中的服务标签是错误的。应该是以下内容:

<service name="namespace.WebService" behaviorConfiguration="WebServiceBehaviour">
        <endpoint address="WebService.svc"
                  binding="wsHttpBinding"
                  bindingConfiguration="DefaultWSBinding"
                  name="WSEndPoint"
                  contract="namespace.IWebService">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex"
                  binding="mexHttpBinding"
                  contract="IMetadataExchange"
                  bindingConfiguration="mexHttpBinding"/>
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost/Temp/"/>
          </baseAddresses>
        </host>
      </service>

service元素中的name值和endpoint元素中的contract值应该是完全限定的。

这是我清理Web.config以删除对客户端的引用的结果,service name和endpoint contract都有名称空间。对不起,你在IIS上托管吗?项目中是否有.svc文件。您的意思是配置中的服务名称和端点约定被指定为完全限定名称吗?我已尝试在IIS中托管,在Cassini Visual Studio中,我有一个实现[ServiceContract]的.svc文件我将尝试在一个干净的解决方案中重新加载代码,看看这是否有效……您是否能够浏览到服务页面并在IE中查看wsdl?还可以尝试使用Fiddler调用web服务并监视请求-响应,看看它是如何运行的?我可以使用service_Name.svc?wsdl浏览到wsdl,我已经将它加载到SOAP UI中,该UI将为服务生成存根,但当我尝试执行任何方法时,它只是404。