Lotus Using Web Services in IBM Lotus Domino 8 Applications - 190-805 Exam Practice Test
Donnie wants to write a LotusScript Web service method what returns an array of Strings. Which one of the following Function definitions will do this?
Correct Answer: D
Vote an answer
Martina has developed the OrderStatus Web service in the Sales.nsf database. What is one way she can access the WSDL document for this Web service, using her Web browser?
Correct Answer: B
Vote an answer
Collin is writing a Domino Web service to provide product inventory information. What signature of the getQuantity function in his Web service would result in this WSDLbeing part of the associated WSDL document? <wsdl:message name="GETQUANTITYResponse"> <wsdl:part name="GETQUANTITYReturn" type="xsd:short"/> </wsdl:message>: <wsdl:operation name="GETQUANTITY" parameterOrder="PRODID"> <wsdl:input message="impl:GETQUANTITYRequest" name="GETQUANTITYRequest"/><wsdl:output message="impl:GETQUANTITYResponse" name="GETQUANTITYResponse"/></wsdl:operation>
Correct Answer: D
Vote an answer
Jose wrote the following LotusScript Web service class: Class NumberTest Function GetOne () As IntegerGetOne = 1 End Function Public Function GetTwo () As Integer GetTwo = 2 End Function Private Function GetThree () As Integer GetThree = 3 End Function End Class If "NumberTest" is defined as the PortType class in the Web service design element, which of these methods will be available to remote clients that need to call this Domino Web service?
Correct Answer: C
Vote an answer
Jakob is developing the EmployeeInfo Web service in his Domino database. He has created the GetEmployeeInfo public class in the Web service, which includes the getEmpID function. Jakob has not populated any of the Web service properties yet. He wants consumers of the Web service to be able to receive the output of the getEmpID function. What must be entered for the "Port Type class" on the Basic tab of the Web service properties?
Correct Answer: C
Vote an answer
Lorraine is examining a WSDL file for her Domino Web service. What role does the Message element have in the file?
Correct Answer: D
Vote an answer
Selina wrote a LotusScript Web service method with the following structure:
Public Function lookupPersonInfo (personName As String, f As WS_FAULT) As PersonInfo '** do
the lookup, return the information in our custom PersonInfo data type End Function What is the
purpose of the WS_FAULT parameter in the Function definition?
Public Function lookupPersonInfo (personName As String, f As WS_FAULT) As PersonInfo '** do
the lookup, return the information in our custom PersonInfo data type End Function What is the
purpose of the WS_FAULT parameter in the Function definition?
Correct Answer: B
Vote an answer
Eloise has created a Domino Web service to provide on-hand inventory data to her companies suppliers. She would like to check the performance of the Web service. What step(s) must Eloise follow to enable profiling of her Web service?
Correct Answer: D
Vote an answer
Brent has set the 'Profile this Web service' option in the Web Services properties box for his Web service. He calls the Web service from a program and now would like to see the profiling results. How would he view that information?
Correct Answer: C
Vote an answer