我创建了一个Wcf服务库。其中有Service1和IService1类和接口。
服务:
public class Service1 : IService1
{
public string InsertData(string Name, string Email, string Message)
{
XDocument xDoc = XDocument.Load(HttpContext.Current.Server.MapPath("DataFile.xml"));
xDoc.Element("Users").Add(
new XElement("User",
new XAttribute("Name", Name),
new XAttribute("Email", Email),
new XAttribute("Message", Message)));
xDoc.Save(HttpContext.Current.Server.MapPath("DataFile.xml"));
return "Registered Successfully";
}
}
Iservice:
[ServiceContract]
public interface IService1
{
[OperationContract]
string InsertData(string Name, string Email, string Message);
}
我关注this文章。在此之后,我添加了另一个项目并在那里添加了Service引用,并添加了名为AjaxService.svc的文本文件
<%@ ServiceHost Debug="true" Factory="System.ServiceModel.Activation.WebScriptServiceHostFactory" Language="C#" Service="DataServices.Service1" %>
但是当我在浏览器中运行此文件时:
答案 0 :(得分:0)
感谢上帝。我解决了我的问题:
我刚刚从Target文件夹中复制了所有文件并将其粘贴到Project。
copy "$(TargetDir)*.dll" "$(ProjectDir)bin"
copy "$(TargetDir)*.pdb" "$(ProjectDir)bin"
copy "$(TargetDir)*.config" "$(ProjectDir)bin"