25.5. 소비자의 비즈니스 논리 구현
25.5.1. 개요
원격 엔드포인트에 대한 서비스 프록시를 인스턴스화하면 로컬 오브젝트인 것처럼 메서드를 호출할 수 있습니다. 호출은 원격 메서드가 완료될 때까지 차단됩니다.
참고
@OneWay
주석으로 메서드에 주석을 달면 호출이 즉시 반환됩니다.
25.5.2. 예
예 25.7. “WSDL 계약 없이 구현됨” 예 24.7. “완전히 주석 처리됨 SEI” 에 정의된 서비스의 소비자를 표시합니다.
예 25.7. WSDL 계약 없이 구현됨
package com.fusesource.demo; import java.io.File; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.ws.Service; public class Client { public static void main(String args[]) { QName serviceName = new QName("http://demo.eric.org", "stockQuoteReporter"); Service s = Service.create(serviceName); QName portName = new QName("http://demo.eric.org", "stockQuoteReporterPort"); s.addPort(portName, "http://schemas.xmlsoap.org/soap/", "http://localhost:9000/EricStockQuote"); quoteReporter proxy = s.getPort(portName, quoteReporter.class); Quote quote = proxy.getQuote("ALPHA"); System.out.println("Stock "+quote.getID()+" is worth "+quote.getVal()+" as of "+quote.getTime()); } }
예 25.7. “WSDL 계약 없이 구현됨” 의 코드는 다음을 수행합니다.
Service
오브젝트를 생성합니다.
Service
오브젝트에 끝점 정의를 추가합니다.
Service
오브젝트에서 서비스 프록시를 가져옵니다.
서비스 프록시에서 작업을 호출합니다.