ASP.NET
Visual StudioのないWebService
サーチ…
前書き
WebServiceを作成するための最小限のコードの非常に基本的なASP.Netの例です。
備考
別のStackOverflowドキュメンテーションの記事では、このCalculator WebServiceの使用方法を見ていきます。
電卓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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow