0

我是 wcf 的菜鸟,我需要一些帮助。

老实说,我对 web.config 文件不太了解,它有很多内容需要考虑。

我有一个 Service.svc.cs 和它的接口 IService.cs 我想创建一个用户可以从客户端登录的登录系统。

//Service Contract
[ServiceContract]
public class ItheService
{
    [OperationContract]
    string Login(string email, string password);
}

//interface
public class TheService : ItheService
{
    public string Login(string email, string password)
    {
        //some code
        return "";
    }
}

我阅读了很多页面并尝试了一些不同的 web.config 变体,并得到了关于需要会话的合同的错误。

我知道我需要行为和服务设置,但我不知道该使用什么。

有人可以解释一下我需要在 web.config 文件中添加什么吗?

我最初有这个 web.config,但我知道它错了。

<?xml version="1.0"?>
<configuration>
  <system.web>
        <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <behaviors>
      <endpointBehaviors>
        <behavior name="httpBehavior">
          <webHttp />
        </behavior>
      </endpointBehaviors>
      <serviceBehaviors>
        <behavior name="">
          <serviceMetadata httpGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="false" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
    <services>
      <service name="TheService.theService">
        <endpoint address=""
                     behaviorConfiguration="httpBehavior"
                     binding="webHttpBinding"
                     contract="TheService.ItheService" />
      </service>
    </services>
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
</configuration>
4

0 回答 0