第二步,给WebServicePerson这个项目添加一个.SVC的文件,取名叫做“PersonService”
接下来呢,将创建项目时自带的文件夹和.aspx文件都删除掉(如下图)然后打开 PersonService.svc 文件,我们需谈耐要将文件修改如下。
<%@ ServiceHost Language="C#" Debug="true" Service="WCFService_Library2010.PersonService" %>
Service="含仿春WCFService_Library2010.PersonService"是需要自己定义的,服务指向那个WCF的服务库
第三步,非常重要绝对不能忽略,就是要将WCF服务引用到当前的项目中来。
第四步,经过上面三步的 *** 作项目基本已成成型了,接下来只需要最后一步了,那就是配置Web.Config. 自己手写去配置Web.config是非常痛苦的,所幸微软给我我们提供了非常便捷的配置功能“Edit WCF Configuration”
进入配置界面后,我们发现Services下面并没有任何节点,需要我们自己去新建一个,可以点击“Create a New Service...”去创建
去选择,我们刚刚创建的 WCF Service Library的服务。
一路next往下。
创建完之后,我们会得到这样的一个界面。
这一步很重要的,因为之前我们已经添加了一个.svc的文件PersonService并且已经配置好了Service的内容,所以系统自动已经在Service Behaviors下面创建了一个PersonService的节点。
此时我们只需要填写一个name就可以了
回到Services 选中刚刚创建的name名称。
最后,最关键的一步就是要记得“保存”。
最后去运行PersonService.svc,右击 → 在浏览器中查看,一切大功告成了。此时你就可以将这个WebAppliction部署到IIS中去了,供Web项目所使用。
附上代码:
<p>
<asp:TextBox ID="TextAge" runat="server"></asp:TextBox>
<asp:TextBox ID="TextName" runat="server"><大逗/asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="新增" onclick="Button1_Click" />
</p>
<p>
<asp:Label ID="LabInfo" runat="server" Text=""></asp:Label>
<asp:Button ID="Button2" runat="server" Text="获取" onclick="Button2_Click"
/>
</p>
using System
using System.Collections.Generic
using System.Linq
using System.Web
using System.Web.UI
using System.Web.UI.WebControls
using WebPerson.PersonService//这里是引用webservice
namespace WebPerson
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
PersonServiceClient client = new PersonServiceClient()
client.AddPerson(new Person() { Age=Convert.ToInt32(TextAge.Text), Name=TextName.Text })
client.Close()
}
protected void Button2_Click(object sender, EventArgs e)
{
LabInfo.Text = ""
PersonServiceClient client = new PersonServiceClient()
Person [] personList = client.GetAllPersons()
foreach (Person model in personList)
{
LabInfo.Text += model.Age + "," + model.Id + "," + model.Name + "<br />"
}
}
}
}
可以有很多,不过WCF一般都是单独托管的。在web.config中可以这样配置:
<services>
<service
name="MyNamespace.DBService"
>
<host>
<baseAddresses>
<add
baseAddress="http://localhost:8001/"/>
</baseAddresses>
</host>
<endpoint
address="http://localhost:8001/DBService"
binding="wsHttpBinding"
contract="MyNamespace.IDBService">
</endpoint>
</service>
<service
name="MyNamespace.MyService">
<host>
<baseAddress>
<add
baseAddress="http://localhost:8001/"/>
<!--注意吵友这里的基地址-->
</baseAddress>
</host>
<endpoint
address="http://localhost:8001/MyService"
binding="wsHttpBinding"
contract="MyNamespace.IMyService">
</endpoint>
</service>
</services>
这里的两个服务使用了相同的基地址,但URI不同。MyNamespace是你项目的命名空间,根据你的项目自己修改。
其实你也可以配置不同的基地址,例如:
<services>
<service
name="MyNamespace.DBService"
>
<host>
<baseAddresses>
<add
baseAddress="http://localhost:8001/"/>
</升链槐baseAddresses>
</host>
<endpoint
address="http://localhost:8001/DBService"
binding="wsHttpBinding"
contract="MyNamespace.IDBService">
</endpoint>
</service>
<service
name="MyNamespace.MyService">
<host>
<baseAddress>
<add
baseAddress="http://localhost:8002/"/>
<!--注意这里的基地址-->
</baseAddress>
</host>
<endpoint
address="http://localhost:8002/MyService"
binding="wsHttpBinding"
contract="MyNamespace.IMyService">
</endpoint>
</service>
</services>
还可以选择不同的绑定类型:
<services>
<service
name="MyNamespace.DBService"
>
<host>
<baseAddresses>
<add
baseAddress="http://localhost:8001/"/>
</baseAddresses>
</host>
<endpoint
address="http://localhost:8001/DBService"
binding="wsHttpBinding"
contract="MyNamespace.IDBService">
</endpoint>
</service>
<service
name="MyNamespace.MyService">
<host>
<baseAddress>
<add
baseAddress="net.tcp://localhost:8002/"/>
<!--注意唤空这里的基地址-->
</baseAddress>
</host>
<endpoint
address="net.tcp://localhost:8002/MyService"
binding="netTcpBinding"
<!--使用TCP绑定-->
contract="MyNamespace.IMyService">
</endpoint>
</service>
</services>
关于WCF的配置还有很多种情况,比如还可以为同一个服务配置不同的基地址,或者为同一个服务配置不同的绑定类型。这些就不多说了,你最好买一本关于WCF的书系统的学习一下。WCF是下一代编程技术,必将替代面向组建技术,现在学习也算是先行者了。祝你好运!
补充一下:我这里写得配置都不是用于IIS/WAS托管的,而是需要直接与宿主实例交互。.svc文件是用于IIS/WAS托管的,可以不需要手动配置,直接在IIS/WAS上发布就行了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)