EC-Council
312-92 · Question #33
What type of authentication is used in the following Pocket SOAP code? Dim Envelope Dim HTTP Set Envelope = CreateObject("PocketSOAP.Envelope.2") Set HTTP = CreateObject("PocketSOAP.HTTPTransport.2)…
The correct answer is C. Basic authentication. See the full explanation below for the reasoning.
Question
What type of authentication is used in the following Pocket SOAP code? Dim Envelope Dim HTTP Set Envelope = CreateObject("PocketSOAP.Envelope.2") Set HTTP = CreateObject("PocketSOAP.HTTPTransport.2) Emvelope.Parameters.Create "SomeParameter", "SomeValue" HTTP.Authentication "Username", "Password" Envelope.Parse HTTP MsgBox "Result: " & Envelope.Parameters.Item(0).Value
Options
- ADigest authentication
- BSSL authentication
- CBasic authentication
- DIntegrated authentication
How the community answered
(26 responses)- A4% (1)
- B12% (3)
- C81% (21)
- D4% (1)
Community Discussion
No community discussion yet for this question.