McAfee Secure sites help keep you safe from identity theft, credit card fraud, spyware, spam, viruses and online scams
My Cart (0)  

Lotus 190-805

190-805

Exam Code: 190-805

Exam Name: Using Web Services in IBM Lotus Domino 8 Applications

Updated: Jul 25, 2026

Q & A: 96 Questions and Answers

190-805 Free Demo download

PDF Version Demo PC Test Engine Online Test Engine

Already choose to buy "PDF"

Price: $49.99 

About Lotus 190-805 Exam

In recent years, many people choose to take Lotus 190-805 certification exam which can make you get the Lotus certificate that is the passport to get a better job and get promotions.

How to prepare for Lotus 190-805 exam and get the certificate? Please refer to Lotus 190-805 exam questions and answers on ITCertTest.

ITCertTest is a good website that provides all candidates with the latest IT certification exam materials. ITCertTest will provide you with the exam questions and verified answers that reflect the actual exam. The Lotus 190-805 exam dumps are developed by experienced IT Professionals. 99.9% of hit rate. Guarantee you success in your 190-805 exam with our exam materials.

Furthermore, we are constantly updating our 190-805 exam materials. We will provide our customers with the latest and the most accurate exam questions and answers that cover a comprehensive knowledge point, which will help you easy prepare for 190-805 exam and successfully pass your exam. You just need to spend you 20-30 hours on studying the exam dumps.

ITCertTest provides you not only with the best materials and also with excellent service. If you buy ITCertTest questions and answers, free update for one year is guaranteed. You fail, after you use our Lotus 190-805 dumps, 100% guarantee to FULL REFUND. You just need to send the scanning copy of your examination report card to us. After confirming, we will refund you.

What's more, before you buy, you can try to use our free demo. We provide you some of Lotus 190-805 exam questions and answers and you can download it for your reference.

ITCertTest is no doubt your best choice. Using the Lotus 190-805 training dumps can let you improve the efficiency of your studying so that it can help you save much more time.

Quick and easy: just two steps to finish your order. We will send your products to your mailbox by email, and then you can check your email and download the attachment.

Lotus 190-805 Exam Syllabus Topics:

SectionWeightObjectives
Security and Access Control15%- Run On Behalf Of and authentication
- SOAP message security and error handling
- ACL settings for Web Services
Troubleshooting and Optimization15%- Debugging Web Services and SOAP faults
- Performance considerations
- Interoperability with external systems
Consuming Web Services in Domino Applications25%- Creating Web Service consumers in Domino Designer
- Calling services from agents and forms
- Mapping XML schema and data types
Creating Domino Web Services25%- Deployment and configuration on Domino server
- Using LotusScript and Java to build services
- Defining operations, data types, and WSDL generation
Web Services Fundamentals20%- Core concepts: SOAP, WSDL, XML, namespaces
- Domino Web Services architecture and support

Lotus Using Web Services in IBM Lotus Domino 8 Applications Sample Questions:

1. Joe is creating a Web service. What role does UDDI play in a Web service?

A) UDDI defines the methods of a specific Web service.
B) UDDI validates the proper functioning and use of a Web service.
C) UDDI allows listing and discovery of available Web services.
D) UDDI controls the access levels of a Web service client.


2. Frances has a Web services client that generates the following SOAP message when calling a
Domino Web service that has been written in LotusScript: <?xml version='1.0' encoding='UTF8'?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SOAP-ENV:Body>
<ns1:GETPERSONINFO
xmlns:ns1="urn:DefaultNamespace"SOAP-
ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><
xsi:type="ns1:PERSONNAME"> <FIRSTNAME xsi:type="xsd:string">Billy
Bob</FIRSTNAME><LASTNAME xsi:type="xsd:string">Brubaker</LASTNAME></PNAME>
</ns1:GETPERSONINFO></SOAP-ENV:Body> </SOAP-ENV:Envelope> Based on the structure
of this message, which of the following represents the possible signature of the LotusScript
function that implements the "GetPersonInfo" method?

A) FunctionGetPersonInfo (pname As PersonName) As PersonInfo
B) FunctionGetPersonInfo (pinfo As PersonInfo) As PersonName
C) FunctionGetPersonInfo (firstName As String, lastName As String) As PersonName
D) Function GetPersonInfo (pname As PersonName, firstName As String, lastName As String) As PersonInfo


3. Examine the following WSDL excerpt: <wsdl:portType
name="GetEmployeeInfo"> <wsdl:operation name="GETEMPNAME"> <wsdl:input
message="impl:GETEMPNAMERequest" name="GETEMPNAMERequest"/><wsdl:output
message="impl:GETEMPNAMEResponse"
name="GETEMPNAMEResponse"/></wsdl:operation>
<wsdl:operation name="GETEMPID"><wsdl:input message="impl:GETEMPIDRequest"
name="GETEMPIDRequest"/><wsdl:output message="impl:GETEMPIDResponse"
name="GETEMPIDResponse"/></wsdl:operation> </wsdl:portType> Paola is developing a Domino Web service to supply the appropriate response(s) for the operations represented in the WSDL. How many of what type(s) of LotusScript code blocks must she create?

A) The PortType class will be named "GetEmployeeInfo". Paola must create 2 public methods, functions, or subs, and they must be named "GetEmpName" and
B) The PortType class will be named "GetEmployeeInfo". Paola must create 2 public methods, functions, or subs, and they must be named "GETEMPNAMEResponse"
C) The PortType class will be named "GetEmployeeInfo". Paola must create 2 private methods, functions, or subs within this class, named "GetEmpNameResponse"
D) The PortType class will be named "GetEmployeeInfo". Paola must create 2 private methods, functions, or subs within this class, named "GETEMPNAME" and


4. 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>

A) Public FunctiongetQuantity( ProdID As String ) As Double
B) Public FunctiongetQuantity( ProdID As String ) As Integer
C) Private FunctionGETQUANTITY( PRODID As String ) As Single
D) Private FunctionGETQUANTITY( PRODID As String ) As Long


5. Roberto is trying to create a Domino Web service to return an array of 3 String values containing Employee information. As a start, he is hardcoding some values to test his code. But examining the generated WSDL, Roberto does not see an array being returned from this Web service. What is the problem? Class GetEmpData Function getData() As Variant Dim empData(0 To 2) As StringempData(0) = "This is the Name" empData(1) = "Here is the ID"empData(2) = "This is the Phone" getData = empData End Function End Class

A) Public ClassGetEmpData
B) ThegetData function should be declared to return a String, since the empData array is declared as a String. Mixing the data types as in the sample code yields
C) ThegetData function is returning a Variant. This does not provide enough information for the generated WSDL to interpret the data type. If Roberto declares the
D) The GetEmpData class is declared without the word Public, so it is a private class. The code within the class will return an array if the class is declared using:
E) TheempData array should be declared as a Variant, since the getData function is returning a Variant value. Mixing the data types as in the sample code yields


Solutions:

Question # 1
Answer: C
Question # 2
Answer: A
Question # 3
Answer: A
Question # 4
Answer: B
Question # 5
Answer: B

909 Customer ReviewsCustomers Feedback (* Some similar or old comments have been hidden.)

Itcerttest study guide best facilitates its customers with authentic and to the point content!Learning Itcerttest QandAs for exam 190-805 was Passed exam 190-805 with a marvelous score!

Gwendolyn

Gwendolyn     4.5 star  

I finally passed 190-805 exam.

Vicky

Vicky     4.5 star  

Many thanks to Itcerttest for the 190-805 dumps. I passed the exam in just one attempt. The exam had good questions and 93% of questions were from dumps.

Bob

Bob     4.5 star  

I knew that I was struggling to pass a difficult and complex certification exam 190-805. In this time of trial, my only hope was Itcerttest's study guide.

Lynn

Lynn     5 star  

Passed the exam successfully! Got many 190-805 questions in the test from the dumps! Thanks, Itcerttest!

Linda

Linda     4 star  

190-805 practice braindumps really did me a favor to pass my 190-805 exam. All questions are valid. Thank you so much!

Mandel

Mandel     4 star  

It is the latest dumps. If you wanna pass 190-805 exam successfully you must notice if it is latest version. This is the most important.

Claude

Claude     4.5 star  

This is the second time for me to take 190-805.

Kevin

Kevin     4 star  

Awesome preparatory pdf files at Itcerttest. I passed my 190-805 exam with 94% marks in the first

Gwendolyn

Gwendolyn     4.5 star  

190-805 exam engine covering the whole chapter in such a way, that there is no reason to leave any topic.

Albert

Albert     4 star  

Finally I got rigth dump with right answers. I recommended this to my all friends to get 190-805 exam questions only form Itcerttest with 100% passing gaurantee and excellent customer support.

Arvin

Arvin     4 star  

Best study material for 190-805 exam. I was able to score 96% marks in the exam with the help of content by Itcerttest. Many thanks Itcerttest.

Mortimer

Mortimer     4.5 star  

Valid 190-805 exam questions! Though i just got the passing score for i had little time to study it, but i still passed the exam. Lucky girl!

Megan

Megan     4 star  

I am sure that I would make a great hit in 190-805 exam with the help of 190-805 exam practice test.

Ursula

Ursula     4.5 star  

LEAVE A REPLY

Your email address will not be published. Required fields are marked *

Contact US:  
 [email protected]  Support

Free Demo Download

Popular Vendors
Adobe
Alcatel-Lucent
Avaya
BEA
CheckPoint
CIW
CompTIA
CWNP
EC-COUNCIL
EMC
EXIN
Hitachi
HP
ISC
ISEB
Juniper
Lpi
Network Appliance
Nortel
Novell
SASInstitute
Sybase
Symantec
The Open Group
Tibco
VMware
Zend-Technologies
IBM
Lotus
OMG
Oracle
RES Software
all vendors
Why Choose ITCertTest Testing Engine
 Quality and ValueITCertTest Practice Exams are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development - no all study materials.
 Tested and ApprovedWe are committed to the process of vendor and third party approvals. We believe professionals and executives alike deserve the confidence of quality coverage these authorizations provide.
 Easy to PassIf you prepare for the exams using our ITCertTest testing engine, It is easy to succeed for all certifications in the first attempt. You don't have to deal with all dumps or any free torrent / rapidshare all stuff.
 Try Before BuyITCertTest offers free demo of each product. You can check out the interface, question quality and usability of our practice exams before you decide to buy.