SOAP
Simple Object Access Protocol
웹서비스 통신 표준 프로토콜 중 하나
xml기반의 메시지 교환을 정의
최근에는 RESTful 웹서비스가 더 간편하게 사용되고 있어 REST가 선호되는 경향이 있다.
https://standout.tistory.com/1076
REST와 REST API, 그리고 RESTful
REST Representational State Transfer HTTP 프로토콜을 기반으로 자원을 정의하고 상태를 주고받는 방식 https://standout.tistory.com/606 REST란? REST란? Representational State Transfer의 약자 하나의 URI가 고유한 리소스를
standout.tistory.com
https://standout.tistory.com/1163
SOAP와 REST의 차이
SOAP import javax.jws.WebMethod; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import javax.jws.soap.SOAPBinding.Style; @WebService @SOAPBinding(style = Style.RPC) public class CalculatorService { @WebMethod public int add(int num1, int n
standout.tistory.com
'이론' 카테고리의 다른 글
Spring Security란? (0) | 2023.12.06 |
---|---|
Apache CXF란? : RESTful 서비스를 손쉽게 개발하다 (0) | 2023.12.06 |
SOAP와 REST의 차이 (0) | 2023.12.06 |
MVC패턴이란? (0) | 2023.12.06 |
자바의 정석 Chapter07: 객체지향 프로그래밍 (0) | 2023.12.06 |