我需要编写RESTful WCF服务,该服务使用userId:userData作为键:值对来维护字典(或任何其他合适的数据结构)。 为此,我首先需要实现一个用于获取和设置userData的接口(具体配置是附带的):
GetConfiguration():当用户尚未设置配置时返回默认配置
GetConfiguration(string id)
SetConfiguration(string id,Configuration configurationSchema)
然后我需要编写一个实现此接口的服务。
作为WCF的新手,我不知道该怎么做。我试图寻找相关的参考文献,但没有找到任何参考。
感谢任何帮助/相关参考,谢谢!
userData对象:
public class ConfigurationSchema
{
public string MobileNumber { get; set; }
public List<string> Habits { get; set; }
public ConfigurationSchema(string mobileNumber, List<string> habits)
{
this.MobileNumber = mobileNumber;
this.Habits = habits;
}
}
答案 0 :(得分:0)
如果您没有找到可以帮助您的参考资料,我建议您在解决编程问题之前先学习谷歌。这很值得。对于你的问题:
答案 1 :(得分:0)
可能会在视频下方帮助您创建WCF服务。在添加代码之后创建简单的WCF服务。