セッションをサポートするために、JSON を要求および応答形式として使用する WCF サービスを使用することは可能ですか?
現在、JSON 形式で WCF サーバーと通信し、呼び出しごとに認証しているアプリをセキュリティで保護する必要があります。
ログイン時にのみ認証し、セッションで残りのリクエストを処理したいのですが、そのようなサービスを作成しようとすると、バインディングを wsHttpBinding または netTCPBinding に変更する必要があり、その瞬間に、サーバーが JSON リクエストを受け入れなくなりました。ただし、「サービス参照の追加」ツールを使用するだけで、C# で記述されたテスト クライアントからの要求を受け入れます。
fiddler を使用すると、C# クライアントが非常に肥大化した XML を介してサービスと通信していることがわかりました。
これが私のweb.configです:
<?xml version="1.0"?>
<configuration>
<system.web>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5cxxxxxxe089"/>
</assemblies>
</compilation>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Windows"/>
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
</system.web>
<!--
The system.webServer section is required for running ASP.NET AJAX under Internet
Information Services 7.0. It is not necessary for previous version of IIS.
-->
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="MobiServiceLibrary.MobiServiceBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
<!--<endpointBehaviors>
<behavior name="MobiServiceLibrary.MobiServiceBehavior">
<webHttp helpEnabled="true" defaultOutgoingResponseFormat="Json" automaticFormatSelectionEnabled="true"/>
</behavior>
</endpointBehaviors>-->
</behaviors>
<services>
<service behaviorConfiguration="MobiServiceLibrary.MobiServiceBehavior" name="MobiServiceLibrary.MobiService">
<endpoint address="" binding="wsHttpBinding" contract="MobiServiceLibrary.IMobiService">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<!--<serviceHostingEnvironment multipleSiteBindingsEnabled="true" minFreeMemoryPercentageToActivateService="1">
</serviceHostingEnvironment>-->
</system.serviceModel>
</configuration>
マイログイン「契約」:
[ServiceContract(SessionMode = SessionMode.Required)]
public partial interface IMobiService
{
[OperationContract(IsInitiating=true)]
[WebInvoke(Method = "POST", UriTemplate = "/Login", BodyStyle = WebMessageBodyStyle.Wrapped, ResponseFormat=WebMessageFormat.Json, RequestFormat=WebMessageFormat.Json)]
userData login(string pUserName, string pPassword, string pDeviceType);
}
私のログイン「実装」:
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession,AddressFilterMode=AddressFilterMode.Any)]
public partial class MobiService : IMobiService
{
public userData login(string pUserName, string pPassword, string pDeviceType)
{
//Do Login
}
}