October 2001
Intermediate to advanced
376 pages
7h 3m
English
Microsoft has done a great deal to ease the process of building Web Services, especially in Visual Studio .NET. But let’s focus on using just the .NET framework tools here.
First you’ll take a look at a simple Web Service. Then we’ll identify areas where you might have problems. Listings 13.1–13.4 serve as examples of the code that you will need to get started.
<%@ WebService Language="c#" Codebehind="Service1.asmx.cs" Class="chap_13_c. TimeService" %%> |
using System; using System.Web.Services; namespace chap_13_c { //Create a class and inherit the WebService functionality public class TimeService : System.Web.Services.WebService { //Constructor ... |
Read now
Unlock full access