WCFサービスアプリケーションを作成し、IIS7でホストしました。現在、いくつかのテスト 'helloworld'メソッドがあります。私は私のブラウザでそれを実行すると、私は、この画面が出ます: WCF Webサービス操作の表示
今、サービス自体は素晴らしい作品が、どのように私はこのような操作を表示することができます。
リンクのmarc_sのおかげ:http://www.dotnetcurry.com/ShowArticle.aspx?ID=399ました私のウェブ設定は次のように設定されています:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<services>
<service name="WcfServer.Service1">
<endpoint address="" binding="webHttpBinding" contract="WcfServer.IService1" behaviorConfiguration="HelpBehaviour" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- 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>
<endpointBehaviors>
<behavior name="AjaxBehavior">
<enableWebScript />
</behavior>
<behavior name="HelpBehaviour">
<webHttp helpEnabled="true"/>
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
<directoryBrowse enabled="true" showFlags="Date, Time, Size, Extension" />
</system.webServer>
</configuration>
しかし、これはローカルでしか動作しません。 IIS7のサーバーに公開すると、ヘルプリンクをクリックすると404エラーページが表示されます。誰がこれがなぜであるか知っていますか、それとも前に出てきましたか?
は(最終ビットが実行することによって解決された:aspnet_regiis.exe -iru
)あなたはSOAPバインディングとWCFサービスを持っている場合は
あなたがCでWCFをテストするためにWCFTestClientを使用して最高です:\プログラムファイル(x86の)\のMicrosoft Visual Studio 10.0 \ Common7 \ IDE(VS 2010) –
これは私がやった最初のことでした:これはうまくいきます! –