XMLData
メソッドを呼び出すと、WebMessageFormat.Xml
次のような応答が返されます。
XMLData
メソッドを呼び出すと、WebMessageFormat.Json
次のような応答が返されます。
WCF コード:
namespace RestService
{
[ServiceContract]
public interface IRestServiceImpl
{
[OperationContract]
[WebGet(ResponseFormat = WebMessageFormat.Json)]
string XMLData(string id);
[OperationContract]
[WebGet(ResponseFormat = WebMessageFormat.Json)]
string JSONData();
}
public class RestServiceImpl : IRestServiceImpl
{
#region IRestServiceImpl Members
public string XMLData(string id)
{
return "You requested product " + id;
}
public string JSONData()
{
return "You requested product ";
}
#endregion
}
}
構成ファイル:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<authentication mode="None" />
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
<system.serviceModel>
<services>
<service name="RestService.RestServiceImpl">
<endpoint name="jsonEP"
address=""
binding="webHttpBinding"
behaviorConfiguration="json"
contract="RestService.IRestServiceImpl"/>
</service>
</services>
<behaviors>
<endpointBehaviors>
<behavior name="json">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
コードの何が問題になっていますか?