我是创建 Web 服务的新手,我不完全了解如何访问我的 Web 服务。
我想要做的是创建一个 WCF webservice,它读取发布到它的 JSON 数据并反序列化它然后做一些事情。
我创建了一个非常简单的 WCF 服务,其中公开了两种方法并创建了一个 uri 端点。虽然当我去我的uri时,我什么也没得到。
我应该能够导航到“http://localhost:8000/asd/EchoWithGet?s=Hello, world!” 在我的浏览器中,该方法应该返回“你说”+ s。当我在服务运行的情况下导航到该位置时,我什么也得不到。
我的问题是如何连接我的程序?我还可以通过 HTML 表单发布到我的服务然后打开 IO 阅读器吗?
在此先感谢您的帮助。
下面是我的代码。
namespace WcfService1
{
[ServiceContract]
public interface IService1
{
[OperationContract]
[WebGet]
string EchoWithGet(string s);
[OperationContract]
[WebInvoke]
string EchoWithPost(string s);
}
public class Service1 : IService1
{
public string EchoWithGet(string s)
{
return "You said " + s;
}
public string EchoWithPost(string s)
{
return "You said " + s;
}
}
class program
{
static void Main(string[] args)
{
WebServiceHost host = new WebServiceHost(typeof(Service1), new Uri("http://localhost:8000/asd/"));
ServiceEndpoint ep = host.AddServiceEndpoint(typeof(IService1), new WebHttpBinding(), "");
/*
ServiceDebugBehavior sdb = host.Description.Behaviors.Find<ServiceDebugBehavior>();
sdb.HttpHelpPageEnabled = false;
*/
host.Open();
Console.WriteLine("Service is running");
Console.WriteLine("Press enter to quit...");
Console.ReadLine();
host.Close();
}
}
在此先感谢您的帮助
更新了,我认为我的问题源于我的配置文件。我需要向配置文件添加哪些信息才能通过浏览器使用我的 Web 服务?
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>