0

我尝试在演示应用程序中设置 WCF 服务,当我在应用程序中对其进行测试时,它在运行时运行良好。然后我创建了相同的服务并尝试将其应用到我从 xhrpost 函数调用该服务的 dojo 应用程序,并出现以下错误

Failed to load resource: the server responded with a status of 404 
(Not Found)    http://localhost:51541/Service1.svc/load_data

在浏览器中打开它后http://localhost:56252/Service1.svc,我使用 wcftestclient.exe 对其进行了测试,其中的所有方法都有效。有什么我在这里想念的吗。

网络配置部分:

  <bindings>
  <basicHttpBinding>
    <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://locaxxxxx:56252/Service1.svc" binding="basicHttpBinding"
    bindingConfiguration="BasicHttpBinding_IService1" contract="ServiceReference1.IService1"
    name="BasicHttpBinding_IService1" />
</client>

编辑:

我发现它引用了提到的另一个端口,但是在删除另一个项目后,我现在收到以下错误:

Failed to load resource http://localhost:56252/Service1.svc/load_data
4

0 回答 0