|
| |
名片设计 CorelDRAW Illustrator AuotoCAD Painter 其他软件 Photoshop Fireworks Flash |
|
Consuming Web Services in ASP.NetWeb 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:
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:
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.
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 服务 |
| 快精灵印艺坊 版权所有 |
首页 |
||