1. Question: Mark is developing a Web service that handles RPC-encoded operations. He wants to make all the methods of the service RPC-encoded, but does not want to put any attribute for each method. Which class attribute should he use to make all methods of a class RPC-encoded?

    A
    SoapRpcMethodsAttribute

    B
    SoapRpcServiceAttribute

    C
    SoapRpcServiceMethodsAttribute

    D
    SoapRpcService

    E
    None of these

    Note: Answer not sure
    1. Report
  2. Question: You use UDDI operations to find something when you do not know specifically what you are looking for. Which of the following UDDI operations fall in this category?

    A
    find_binding

    B
    find_business

    C
    find_service

    D
    find_Model

    E
    All of these

    Note: Answer not sure
    1. Report
  3. Question: Which of the following does the acronym UDDI stand for?

    A
    Universal Description, Discovery, and Investigation

    B
    Universal Description, Discovery, and Integration

    C
    Universal Discovery, Definition , and Integration

    D
    None of these

    Note: Answer not sure
    1. Report
  4. Question: Which of the following information does a server need to publish in order to meet a client's needs?

    A
    Description Information

    B
    Service Location

    C
    Service Schema

    D
    Service Classification

    E
    All of these

    Note: Answer not sure
    1. Report
  5. Question: Refer to the following statements and identify the lines that are invalid: 1. <%@ Service Class="TestClass" Language="C#" %> 2. using System; 3. using System.Web.Service; 4. public class TestClass { 5. [WebMethod] 6. public int Add( int a, int b) 7. { 8. return a+b; 9. } 10. }

    A
    line 1

    B
    line 2

    C
    line 3

    D
    line 4

    E
    line 5

    F
    All of these

    Note: Answer not sure
    1. Report
  6. Question: You have created a Web service named 'Service1'. The client application of 'Service1' has a textbox called 'textbox1' and you want to set the value of textbox1.text as UserAgent of 'Service1'. Which code will you apply to accomplish this?

    A
    localhost.Service1.UserAgent = this.textBox1.Text;

    B
    localhost.Service1 s = new localhost.Service1(); s.UserAgent = this.textBox1.Text;

    C
    localhost.Service1.UserAgent ua = new localhost.Service1.UserAgent(); ua.value = this.textBox1.Text;

    D
    None of these

    Note: Answer not sure
    1. Report
  7. Question: The two major features in .NET are the ability to create XML Web Services Servers and XML Web Services Clients. Which of the following is the engine that drives most of these features?

    A
    XML Schema

    B
    SOAP Engine

    C
    XML Serialization

    D
    None of these

    Note: Answer not sure
    1. Report
  8. Question: WSDL is an XML-based language for describing Web services. Which of the following are correct regarding the functioning of WSDL?

    A
    WSDL forces a clean separation between data (as found in messages)

    B
    WSDL provides the abstract definition of a set of message-sending operations

    C
    WSDL provides the particular binding information needed to format and to send a message correctly

    D
    All of these

    Note: Answer not sure
    1. Report
  9. Question: Refer to the code given below and identify the line numbers that contain errors: .. 1. Inquire.Url = "http://uddi.rte.microsoft.com/inquire"; 2. FindBusiness findBusiness = new FindBusiness(); 3. findBusiness.Names.Add("Royal Airways"); 4. BusinessList list = findBusiness.Find(); 5. if (list.BusinessInfos.Count > 0) 6. { 7. GetBusinessInfo gb = new GetBusinessInfo(); 8. gb.BusinessKeys.Add(bizList.BusinessInfos[0].BusinessKey); 9. BusinessDetail bizDetail = gb.Send(); 10. if (bizDetail.BusinessEntities.Count > 0) 11. { 12. ... 13. } 14.} ...

    A
    2

    B
    4

    C
    5

    D
    7

    E
    10

    F
    None of these

    Note: Answer not sure
    1. Report
  10. Question: Which of the following is a process of making resources and services available on a new system, when the previous system fails while using a federated Web service design?

    A
    RECOVER

    B
    ROLLOVER

    C
    FEDERATION REPAIR

    D
    None of these

    Note: Answer not sure
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd