1. Question: Which of the following is not a correct statement regarding schema?

    A
    The schema element can contain any number of top-level declarations

    B
    The XML schema language is based on the Worldwide Web Consortium (W3C)

    C
    The definitions in an XML schema are contained within the top-level schema element

    D
    The schema element in an XML schema document cannot use a namespace

    Note: Answer not sure
    1. Report
  2. Question: In the .NET UDDI SDK, which of the following contains the businessEntity structure?

    A
    WSBusinessEntity

    B
    BusinessClass

    C
    BusinessEntity

    D
    WSBusinessClass

    E
    None of these

    Note: Answer not sure
    1. Report
  3. Question: Refer to the following code of a SOAP message and identify the error:
    <s:Envelope
    xmlns:s="http://www.w3.org/2001/06/soap-envelope">
    <s:Body>
    <n:getQuote xmlns:n="urn:QuoteService">
    <symbol xsi:type="xsd:string">
    Mistristic
    </symbol>
    </n:getQuote>
    <s:Header>
    <m:transaction xmlns:m="soap-transaction"
    s:mustUnderstand="true">
    <transactionID>1234</transactionID>
    </m:transaction>
    </s:Header>
    </s:Envelope>

    A
    The Namespace is incorrect

    B
    The position of the header is incorrect

    C
    The body cannot contain a symbol element

    D
    MustUnderstand is not an attribute of the transaction element

    Note: Answer not sure
    1. Report
  4. Question: Sometimes, you will want the WSDL file created for your service to indicate that it will be modified by the SOAP extension running on it. Conversely, you will want the proxy generated for you from wsdl.exe to add the SOAP extension to any proxy class it consumes that contains this indication. Which of the following should you apply to accomplish this?

    A
    WSDLFormatter

    B
    WebServiceClientExtension

    C
    ServiceDescriptionFormatter

    D
    None of these

    Note: Answer not sure
    1. Report
  5. Question: Which of the following is an invalid child of a Fault element of a SOAP message?

    A
    faultcode

    B
    faultstring

    C
    faultactor

    D
    faultdescription

    Note: Answer not sure
    1. Report
  6. Question: State whether True or False: When you serialize an array that is a member of a class, the result is a piece of structured XML that contains (a) a top element which is, by default, the name of the class member, and (b) any number of child elements, one for each value in the array.

    A
    True

    B
    False

    Note: Answer not sure
    1. Report
  7. Question: Which of the following is true with regard to .NET Web services? Statement 1:.NET Web services use the XmlSerializer as the engine for sending and receiving SOAP messages. Statement 2:.NET Web services are literal schema-based XML. They are not encoded XML.

    A
    Statement 1 is true but statement 2 is false

    B
    Statement 1 is false but statement 2 is true

    C
    Both the statements are true

    D
    Both the statements are false

    Note: Answer not sure
    1. Report
  8. Question: Which of the following represents an array in a SOAP message?

    A
    <person> <firstname>Joe</firstname> <lastname>Smith</lastname> </person>

    B
    <people> <person name='joe smith'/> <person name='john doe'/> </people>

    C
    <people> <person name='joe smith'> <designation/> </person> <person name='john doe'> <designation/> </person> </people>

    D
    None of these

    Note: Not available
    1. Report
  9. Question: Which of the following is the correct position of the header in a SOAP message?

    A
    Only before the body

    B
    Only after the body

    C
    Only before the envelope

    D
    Anywhere in the message

    Note: Answer not sure
    1. Report
  10. Question: Refer to the following code, which is a part of an xml validation: ... filename = "OrderDetails.xml"; FileStream stream = new FileStream( filename , FileMode.Open); XmlValidatingReader reader = new XmlValidatingReader(stream); ... Gavin is trying to open an xml which contains "order details" returned by a Web service, through this code, but an error is being generated in the code. Which of the following might be the cause of error?

    A
    XmlValidatingReader is not a valid class

    B
    In the constructor of XmlValidatingReader, FileStream object is passed instead of XmlTextReader object

    C
    In the constructor of XmlValidatingReader, FileStream object is passed instead of XmlReader object

    D
    None of these

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