Which two design changes should be made? (Choose two

A purchase order Web service is designed to be synchronous, request-response, and HTTP- based. The existing service processes the request immediately. Because of new business requirements, the service can take up to ten days to perform a credit check before processing the order. Which two design changes should be made? (Choose two.)

A purchase order Web service is designed to be synchronous, request-response, and HTTP- based. The existing service processes the request immediately. Because of new business requirements, the service can take up to ten days to perform a credit check before processing the order. Which two design changes should be made? (Choose two.)

A.
The client needs to use dynamic proxies instead of stubs.

B.
The client needs to develop and deploy a Web service to accept callbacks.

C.
The service only needs to change the WSDL from rpc-literal to document-literal.

D.
The client and the service need to establish a mechanism to correlate the messages.

E.
Given delays of up to ten days, a polling strategy is more efficient than callback.



Leave a Reply 2

Your email address will not be published. Required fields are marked *


coco

coco

B) El cliente debe tener publicado un web service, que permita escuchar el llamado del
web service asíncrono cuando termine de validar el credito de la orden de compra.

D) El cliente y el web service asíncrono (valida el credito compra) deben tener una comunicación correlacionada, es decir, cuando el web service asíncrono termine de finalizar su proceso este sepa a que endpoint del cliente invocar para enviar la respuesta del proceso
finalizado.

Answer correct B,D