What should you do?

DRAG DROP

You are developing a web application that retrieves data from a web service. The data being retrieved is a custom binary datatype named bint. The data can also be represented in XML.

Two existing methods named parseXml() and parseBint() are defined on the page.

The application must:

• Retrieve and parse data from the web service by using binary format if possible

• Retrieve and parse the data from the web service by using XML when binary format is not possible

You need to develop the application to meet the requirements.

What should you do? (To answer, drag the appropriate code segment to the correct location. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

Answer:

Explanation:

* accepts : ‘application/bint, text/xml’

accepts:’application/bin,text/xml’ to accept only XML and binary content in HTML responses.

* Use the following condition to check if the html response content is binary: If(request.getResponseHeader("Content-Type")=="application/bint"

* var request = $.ajax({

uri:’/’,

accepts: ‘application/bint, text/xml’,

datafilter: function(data,type){

if(request.getResponseHeader("Content-Type")=="application/bint")

return parseBint(data);

else

return parseXml();

},

success: function (data) {

start(data);

}

});

Latest 70-480 Dumps Valid Version with 288 Q&As

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments