ASP.NET
WebService bez Visual Studio
Szukaj…
Wprowadzenie
Bardzo prosty przykład ASP.Net minimum kodu do stworzenia WebService.
Uwagi
W osobnym poście Dokumentacja StackOverflow przyjrzymy się zużyciu tego kalkulatora WebService.
Kalkulator WebService
<%@ WebService Language="C#" Class="Util" %>
using System;
using System.Web.Services;
public class Util: WebService
{
[WebMethod]
public int CalculatorAdd(int operandA, int operandB)
{
return operandA + operandB;
}
[WebMethod]
public int CalculatorSubtract(int operandA, int operandB)
{
return operandA - operandB;
}
[WebMethod]
public long CalculatorMultiply(int operandA, int operandB)
{
return operandA * operandB;
}
[WebMethod]
public long CalculatorDivide(int operandNumerator, int operandDenominator)
{
if (operandDenominator == 0)
return System.Int64.MaxValue; // Should really do better error handling overall & return an error
else
return operandNumerator / operandDenominator;
}
}
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow