-1

VS2012 を使用して新しい WCF Web サイトを作成しました ([追加] -> [新しい Web サイト] -> [WCF サービス])。

「箱から出して」これにより、次の web.config ファイルが得られます。

<?xml version="1.0"?>
<configuration>
  <appSettings>
    <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true"/>
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.5"/>
    <httpRuntime targetFramework="4.5"/>
  </system.web>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="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>
    <protocolMapping>
      <add binding="basicHttpsBinding" scheme="https"/>
    </protocolMapping>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <!--
        To browse web app root directory during debugging, set the value below to true.
        Set to false before deployment to avoid disclosing web app folder information.
      -->
    <directoryBrowse enabled="true"/>
  </system.webServer>
</configuration>

また、次のような初期 Service クラスも提供されます。

public class Service : IService
{
    public string GetData(int value)
    {
        return string.Format("You entered: {0}", value);
    }

    public CompositeType GetDataUsingDataContract(CompositeType composite)
    {
        if (composite == null)
        {
            throw new ArgumentNullException("composite");
        }
        if (composite.BoolValue)
        {
            composite.StringValue += "Suffix";
        }
        return composite;
    }
}

次に F5 キーを押してプロジェクトを開始すると、Service.svc を含むディレクトリの内容を一覧表示するブラウザー ウィンドウが起動します。

GetData メソッドを呼び出す URL を入力したいと考えています。ブラウザーのアドレス バーに何を入力すればよいですか? また、ブラウザーに URL を入力して JSON 形式の文字列が返されるのを確認できるように、サービスを構成および/または装飾する方法は?

4

1 に答える 1

1

コントラクト (IService インターフェイス) の Operation を次の属性でマークします - [WebInvoke(Method = "GET", BodyStyle = WebMessageBodyStyle.WrappedRequest, ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json, UriTemplate="GetData/{id}" )] 次に、GetData/[任意の番号] を追加して、ブラウザからサービスを呼び出してみてください

于 2013-07-26T03:14:23.257 に答える