1 / 18

VS.NET 에서의 Web Service

VS.NET 에서의 Web Service. Keon Bok Lee Microsoft Korea. Agenda. Web Service 란 ? Web Service 가 사용되야 하는 이유 Web Service 의 작성방법 Web Service 를 사용하는 방법. 웹 서비스로 제공. B2B 무역거래. 공급자 A. 공급자 B. Firewall. Rich and Reach. SQL Server, Oracle, DB2. Inventory. 전자상거래. 다양한 클라이언트 환경. 물품주문 수행.

horace
Download Presentation

VS.NET 에서의 Web Service

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. VS.NET에서의 Web Service Keon Bok Lee Microsoft Korea

  2. Agenda • Web Service란 ? • Web Service가 사용되야 하는 이유 • Web Service의 작성방법 • Web Service를 사용하는 방법

  3. 웹 서비스로 제공 B2B 무역거래 공급자 A 공급자 B Firewall Rich and Reach SQL Server, Oracle, DB2 Inventory 전자상거래 다양한 클라이언트 환경 물품주문 수행 Windows DNA 2000 환경 Windows DNA App

  4. Web Service Web Service XML XML XML XML XML Web Application Web Service “Block Services” 구축 Client Client XML .NET 응용프로그램 HTML

  5. Web Service 개방형Internet Protocols 추가정보: SOAPDiscovery • 웹사이트에서 제공하는 웹 서비스를 요청 SOAPContract Language • 웹 서비스는 일정한 형식에 따라 정의됨 SOAP • 웹 서비스의 사용자는 XML을 이용하여 데이터를 주고 받는다. XML, XSDHTTP, SMTP • 이러한 기능을 표준 인터넷 프로토콜을 이용 Web Service란 ? 표준 웹 프로토콜을 이용한 구성요소 사용/프로그램 작성

  6. Web Service란 ? • 잘못된 생각: • 웹서비스는 웹페이지이다. • 웹 브라우저에서만 사용된다. • 마이크로소프트에서만 사용되는 기술이다 • 웹 서비스란 ?: • 표준 인터넷 프로토콜을 이용하여 외부의 프로시저를 호출하는 방법

  7. Web Service의 의미는? • Web Service의 역활: • 서비스의 발견 • 프로시저의 호출 • Argument 전달 • 결과 검색 • XML의 사용

  8. Example Hello World

  9. Web Service를 사용해야 하는 이유 • 기존의 DCOM의 문제점 • 간단함 • 텍스트 (XML) • HTTP • Stateless • 성능 • 신뢰성 • 기존의 웹 사이트의 기본구조 사용

  10. Web Services 구조 • Web Service (ASP.Net에서 ASMX 파일 호출) • Web Service 메서드의 구현 • Service Description Language (SDL) • Web Service를 설명 • 다른 연결된 정보 설명 • Discovery Documents (DISCO) • Web Service 생성 ASMX SCL XSD DISCO SCL

  11. Discovery Document • 웹서비스를 찾아내는 방법 • *.disco 파일 사용 • 웹 서비스가 어디있는지 알려주는 XML 파일 • 필수요소는 아님 <?xml version="1.0" ?> <disco:discovery xmlns:disco="http://schemas.xmlsoap.org/disco xmlns:scl="http://schemas.xmlsoap.org/disco/scl"> <scl:contractRef ref="http://MyWebServer/UserName.asmx?SDL"/> </disco:discovery>

  12. Service Description Language • 웹 서비스의 내용을 알아내는 방법 • Web Service는 SDL을 이용 • Service Description Language • 클라이언트와 서버와의 계약 • 설명 • 가능한 프로시저 • Arguments • Return값 • 데이터 형식 • http://localhost/webservice.asmx?SDL

  13. Wire Formats • 잘못된 생각: • Proprietary • Binary • 기본 형식은..: • XML 바탕의 사용 • HTTP Get • HTTP Post • SOAP

  14. Protocols • 기본: HTTP GET 와 POST • Primitives (integers, strings, etc) • Primitives 배열 • SOAP • 기본 구조 • Enumerations • 클래스 • XML 데이터셋 • 배열

  15. 호출방법 • HTTP GET • http://localhost/webservice.asmx?arg1=2&arg2=4 • HTTP Post • 폼과 같은 UUEncoded 인수의 사용 • SOAP • XML 요청 형식을 설명 • Test 페이지 자동 생성 • http://localhost/webservice.asmx

  16. 웹서비스 작성방법 • Inline Code 형식 • Code Behind • VS.Net 에서 사용 <%@ WebService Language="C#" Class="Math" %> using System.Web.Services; public class Math : WebService { [ WebMethod ] public int Add(int num1, int num2) { return num1+num2; } }

  17. Demo • PocketPC에서 웹 서비스의 사용

  18. Questions http://www.microsoft.com http://www.devpia.com

More Related