spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column112


JScript .NET, Part VI: Creating IE Web Services

Sr. Web Developer
mediabistro.com
US-NY-New York

Justtechjobs.com Post A Job | Post A Resume
Developer News
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?


Interacting with add

A Web service is an entity by itself, besides providing services to its consumers. Make sure your Web service is on your Web server. For example, put both checkIsPrime.asmx and simpleCalc.asmx in c:\inetpub\wwwwroot\Webreference. Now, look at the description of simpleCalc.asmx, by browsing http://localhost/Webreference/simpleCalc.asmx. You should see the following Internet Explorer window:

The window lists the Web service's methods. In our case, there is only one method, add. Click the add link and discover a way to test your Web service. Here is how you input the two numbers to add:

And here is the output window with the Web service's http reply:

Notice we input the numbers 5 and 4, and indeed got 9 in the http reply.

You can also ask to see the WSDL description of your Web service. Browse the address http://localhost/Webreference/simpleCalc.asmx?WSDL and see a structured description of the Web service:

Notice how much you get for free. For a mere 9 lines of code in simpleCalc.asmx, you get thousands of lines in the automatically-generated description, test forms, etc. This is one of the advantages of .NET: you write only a small portion of the application--the rest is added by the framework.


Next: How to interact with the IsPrime Web service

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Rolling Out Your Own HTML Application Version Control · HTML 5: Client-side Storage · Working with Ajax Server Extensions
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Wi-Fi Product Watch, November 2009 · Chip Market Recovering From '08 Collapse · Low-Cost Tools to Kickstart Your New Business


Produced by Yehuda Shiran and Tomer Shiran
All Rights Reserved. Legal Notices.
Created: June 17, 2002
Revised: June 17, 2002

URL: http://www.webreference.com/js/column112/3.html