デモ アプリケーションで 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 を使用してテストしたところ、そこにあるすべてのメソッドが機能しました。私がここに欠けているものはありますか?
webconfig 部分:
<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