Given that StockQuoteService is a Service class and StockQuoteProvider is a corresponding SEI
for a web service. Which of the following options enable MTOM feature for proxy for the
StockQuoteProvider SEI ? (Choose one)
A.
proxy = new StockQuoteService().getStockQuoteProvider()
B.
proxy = new StockQuoteService().getStockQuoteProvider(new MTOMFeature())
C.
proxy = new StockQuoteService(new MTOMFeature()).getStockQuoteProvider()
D.
proxy = new StockQuoteService().getStockQuoteProvider(new RespectBindingFeature())
Explanation: