100% GUARANTEED PASS
Select all that apply: What topics does this course focus on?
A. Distributed Computing
B. Distributed Software Architecture
C. Parallel Computing System Design
D. Network Topology
E. Communication Protocol
[If answer was F,G,H you would answer: F&G&H]
A&B
What computing Paradigm will this course focus one?
A. Distributed Object
B. Functional Programming
C. Logic Programming
D. Service-Oriented Computing
D
What is the unique feature of service-oriented computing paradigm that does not
exist in other paradigms?
,A. Stateless
B. Resource Sharing
C. Reasoning
D. Platform Independent
D
What protocol is normally used for transferring data between web services?
A. SOAP
B. WSDL
C. UDDI
D. XML
A
Web Service Description Language (WSDL) is used for:
A. Writing the executable code of services.
B. Composing the applications using existing services.
C. Describing the coordination among the services.
D. Defining the interface of services.
D
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="HelloService"
targetNamespace="http://www.ecerami.com/wsdl/HelloService.wsdl"
, xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.ecerami.com/wsdl/HelloService.wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<message name="SayHelloRequest">
<part name="msg" type="xsd:string"/>
</message>
<message name="SayHelloResponse">
<part name="reply" type="xsd:string"/>
</message>
<portType name="Hello_PortType">
<operation name="sayHello">
<input message="tns:SayHelloRequest"/>
<output message="tns:SayHelloResponse"/>
</operation>
</portType>
<binding name="Hello_Binding" type="tns:Hello_PortType">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="sayHello" style="document">