Given stock quote web service endpoint:
and the corresponding client side artifacts for the above web service are :
StockQuoteService is the Service class and StockQuoteProvider is the corresponding SEI. Which
of the following two options enable addressing feature for proxy for the StockQuoteProvider SEI ?
(Choose two)
A.
proxy = new StockQuoteService().getStockQuoteProvider()
B.
proxy = new StockQuoteService().getStockQuoteProvider(new AddressingFeature())
C.
proxy = new StockQuoteService().getStockQuoteProvider(new AddressingFeature(false))
D.
proxy = new StockQuoteService().getStockQuoteProvider(new AddressingFeature(false, true))
Explanation: