快精灵印艺坊 您身边的文印专家
广州名片 深圳名片 会员卡 贵宾卡 印刷 设计教程
产品展示 在线订购 会员中心 产品模板 设计指南 在线编辑
 首页 名片设计   CorelDRAW   Illustrator   AuotoCAD   Painter   其他软件   Photoshop   Fireworks   Flash  

 » 彩色名片
 » PVC卡
 » 彩色磁性卡
 » 彩页/画册
 » 个性印务
 » 彩色不干胶
 » 明信片
   » 明信片
   » 彩色书签
   » 门挂
 » 其他产品与服务
   » 创业锦囊
   » 办公用品
     » 信封、信纸
     » 便签纸、斜面纸砖
     » 无碳复印纸
   » 海报
   » 大篇幅印刷
     » KT板
     » 海报
     » 横幅

Web service in DW.mx

Consuming Web Services in ASP.Net


Web services have quickly become the most touted industry buzzword.  The fact that they are based on XML and other "Internet" standards make it the ideal vehicle to send and recieve information between applications.  Dreamweaver MX has taken this into consideration and given you the power to consume web services in a visual environment.
When a web service is published, it will also have a WSDL (Web Service Definition Language) file along with it.  This gives applications wanting to use it some meta-data concerning the service such as what are the method names, how many parameters it takes, and other useful tidbits of information.  By feeding Dreamweaver the URL of this WSDL file, you give it the information it needs to create what\\'s called a proxy class.  This is a .Net assembly (.dll) that hides all of the intricate details involved in calling the web service over the internet.  Behind the scenes, this is done with the WSDL command line utility that is installed with the .Net SDK.
The first step in consuming a web service involves finding a web service to consume.  Several web sites exists solely for this reason:
  • Sal Central
  • XMethods
  • Microsoft UDDI

Once you have found one you are interested in consuming, find the link the WSDL file.  For this tutorial, we will be consuming the GEO Cash ATM Lookup web service.  With this service, we can find ATM locations in any US city by entering in a zip code.
Once you have found the service you wish to consume, you can create the proxy class for it by going to the Application panel and choosing the Components tab.

When you click on the + icon, choose Add using WSDL.  This will bring up the following dialog.

Enter the WSDL URL and Dreamweaver will create two files in your site root, a .dll file which must be moved and uploaded to the /bin directory, and a .cs file with the source for the .dll in case you want to take a peek below the hood.  Another look at the Components panel will reveal a tree view of available methods in the .dll.

Once all of this is registered, you are ready to create your web form.  Begin by creating a new .aspx file either from File > New dialog, or right clicking in the site window and choosing New File.  
Create the web form by following these steps:
  1. Add a form from the Form object panel
  2. Enter code view and change the opening form tag to look like this:
    <form runat ="server">
  3. From the ASP.Net Object panel, insert a TextBox with the ID of zip.
  4. Next, insert an ASP.Net button with the id of submit
  5. After adding the button id, go the Event > OnClick option in the tag editor and add the text "submit_click"
  6. Add a simple ASP.Net label with the id result

Once all of this has been done, your web form should look like this:

The final step, is to add the code that will process the GEOCash service.  Begin by adding this code to the top of the page.
<script language="C#" runat ="server">
void submit_click(Object ob, EventArgs ev)
{

}
</script>
Once that is added, you can drag over the two lines from the Application > Components tab that say:
-GeoCash()
-String GetATMLocations(String)
The result will look like this.
<script language="C#" runat ="server">
void submit_click(Object ob, EventArgs ev)
{
GeoCash aGeoCash = new GeoCash();
String aString = aGeoCash.GetATMLocations(/*String*/enter_value_here);
}
</script>
One more small modification, and you will have a working application.  Just make these small changes to the code.
  • Replace /*String*/enter_value_here with zip.Text
  • Add this line right before the closing }
    result.Text = Server.HtmlEncode(aString);

The result that comes from the web service is a chunk of XML in the form of a string.  For the purpose of this example, we just Html encoded it so you can see the xml tags in the browser (even though the formatting leaves a lot to be desired).  In a real world scenario, you would probably use the XmlDocument object to process the XML blob.  The final code for this example will look like this:
<script language="C#" runat ="server">
void submit_click(Object ob, EventArgs ev)
{
GeoCash aGeoCash = new GeoCash();
String aString = aGeoCash.GetATMLocations(zip.Text);
result.Text = Server.HtmlEncode(aString);
}
</script>
The only thing that is left is to upload and test your application.  Remember to also upload the geocash.dll to your /bin directory.  Click here to see a working example of the form in this tutorial.
 



返回类别: 教程
上一教程: ASP.NET中Cookie编程的基础知识(2)
下一教程: ADO.NET迅速起步

您可以阅读与"Web service in DW.mx"相关的教程:
· Web Services的魅力
· J2EE vs. Microsoft.NET 之 Web Services
· .NET WINFORM中使用本地SMTP SERVICE(CDO.Message错误处理)
· .NET Framework中使用XML Web Service(1)
· Windows.NET Server: XML Web 服务
    微笑服务 优质保证 索取样品