新客网WWW.XKER.COM:致力做中国最专业的网络学院!
学院: 操作系统 - 网络应用 - 服务器 - 网络安全 - 工具软件 - 办公软件 - Web开发 - 数据库 - 网页设计 - 图形图像 - 媒体动画 - 硬件学堂 - 存储频道 - QQ专区
您的位置:首页 > 软件开发 > .Net开发 > Asp.net教程 > 正文:Data Integrity in Web Services (转二)

Data Integrity in Web Services (转二)

新客网 XKER.COM 2003-07-12 来源: 收藏本文
Although you can create any client you desire for the web service, in this example I have chosen to create a Windows Application. To do so, simply go to File->New Project and choose Windows Application. Drag and drop the items on the form to look something like the figure below.


Now choose Project->Add Web Referance and in the bottom left of this dialog box choose "Web Referances on Loacal Web Server". Choose the Web Service we created in step one, then click on OK.

Below is the event handler code for the two buttons of the application. The rest of the code required for the application should be autogenerated by the form builder. Also note you'll need to include the namespace of the web service in order to use the wrapper objects. It should look something like "using WindowsApplication1.localhost;", but you can find out the exact namespace from the Class View->localhost->PersonService. Look at the top of this code file and see what namespace VS.NET gave this wrapper.


private void GetterButton_Click(object sender, System.EventArgs e)
{
    PersonData pd = ps.GetPersonData();
    FirstNameField.Text = pd.FirstName;
    LastNameField.Text = pd.LastName;
    YearsExperienceField.Text = ""+ pd.YearsExperience;
}

private void SetterButton_Click(object sender, System.EventArgs e)
{
    PersonData pd = new PersonData();
    pd.FirstName = FirstNameField.Text;
    pd.LastName = LastNameField.Text;
    pd.YearsExperience = Int32.Parse(YearsExperienceField.Text);
    try
    {
        ps.SetPersonData(pd);
        MessageBox.Show("Person Set");
    }
    catch(Exception exx) { MessageBox.Show("Error Setting Data:"+ exx); }
}



To drive the point home as to what VS.NET is doing with the web service, double click on the PersonData struct in the ClassView of your application.


Taking a look around inside the class viewer is an excellent way to find out exactly what kinds of wrappers VS.NET is creating for differant things you might be doing and will generally give you an excellent idea of what to expect from your remote objects.


Web Services are one of the hottest technologies going right now but there are a number of pitfalls that any programmer must be aware of. Data Integrity is important for any object's proper functioning and must be assured or it could corroupt a larger program and generate a very difficult to trace error. By using the techniques in this article you can keep your objects safe and your data assured.
收藏】 【评论】 【推荐】 【投稿】 【打印】 【关闭
发表评论
要记得去论坛讨论,点击注册新会员匿名评论
评论内容:不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
阅读排行
随机推荐
实用信息推荐