WCF 학습 노트 - C#로 WebService 개발 방법
5071 단어 webservice
4
4
4
[ServiceContract]
Interface IMath {
[Operationcontract]
Int add (int a, int b);
}
4
Public class Math : IMath{
Int add(int a,int b){
Return (a+b);
}
}
4
4
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using System.ServiceModel.Channels;
namespace HelloServiceHost
{
class Program
{
static void Main(string[] args)
{
using (MyHelloHost host = new MyHelloHost())
{
host.openService();
}
}
}
public class MyHelloHost : IDisposable
{
private ServiceHost serviceHost = null;
///
///base address
///
//public const string baseAddress = "net.pipe://localhost";
public const string baseAddress = "http://localhost";
///
///서비스 이름
///
public const string serviceAddress = "MathService";
///
///서비스 구현 계약
///
public static readonly Type serviceType=typeof(demo.Math);
///
///인터페이스 계약
///
public static readonly Type contractType = typeof(HelloService.IHelloService);
///
///서비스 바인딩 정의
///
//public static readonly Binding helloBinding = new NetNamedPipeBinding();
public static readonly Binding helloBinding = new BasicHttpBinding();
///
///빌드 서비스 호스팅
///
private void createHelloServiceHost()
{
///서비스 객체 만들기
serviceHost = new ServiceHost(serviceType,new Uri[]{new Uri(baseAddress)});
///끝점 추가
serviceHost.AddServiceEndpoint(contractType, helloBinding, serviceAddress);
}
public ServiceHost ServiceHost
{
get { return serviceHost; }
}
///
///서비스 열기
///
public void openService()
{
Console.WriteLine("Service is starting...");
serviceHost.Open();
Console.WriteLine("Service running...");
}
public MyHelloHost()
{
createHelloServiceHost();
}
public void Dispose()
{
if (null != serviceHost)
{
(serviceHost as IDisposable).Dispose();
}
}
}
}
4
1a) App. 수정Config
1b) 수정 코드는 다음과 같다.
class Program
{
static void Main(string[] args)
{
ServiceHost host = new ServiceHost(typeof(demo.Math));
host.Open();
Console.ReadKey();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java가 클라이언트를 통해 서버 웹 서비스에 접근하는 방법본고는 자바가 클라이언트를 통해 서버 웹 서비스에 접근하는 방법을 실례로 설명한다.다음과 같이 여러분에게 참고할 수 있도록 공유합니다. 자바 관련 내용에 관심이 있는 더 많은 독자들은 본 사이트의 주제를 볼 수 있습...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.