70-554  Exam

Exam # of questions Description  Update
70-554 107 70-554... 02/15/2011
[Practice Test]   [Download Study Guide(PDF)]  [Update Exam]

70-554 - Exam Information
  • Description:MCSD Microsoft .NET Skills to MCPD Enterprise Application Developer
  • Passing Score:75%
  • Practice Test - Number of questions:107 questions
  • Simulation Test - Number of questions:107 questions
  • Simulation Test Duration:90 minutes
  • Has explanations:No

Question of the day

Answer(s)

  1. Web service application uses Web Services Enhancements (WSE) 3.0. A class namedRejectUnknownActorFilter is derived from the SoapFilter class. The RejectUnknownActorFilterclass throws a SoapException exception if the request contains an unexpected actor.A class defines a policy assertion as follows. (Line numbers are included for reference only.)01 Public Class RequireActorAssertion02 Inherits PolicyAssertion03 Public Overrides Function CreateClientInputFilter(ByVal_ context As FilterCreationContext) AsSoapFilter04 Return Nothing05 End Function0607 Public Overrides Function CreateClientOutputFilter(ByVal _ context As FilterCreationContext)As SoapFilter08 Return Nothing09 End Function1011 Public Overrides Function CreateServiceInputFilter(ByVal _ context As FilterCreationContext)As SoapFilter12 Return Nothing13 End Function1415 Public Overrides Function CreateServiceOutputFilter(ByVal _ context AsFilterCreationContext) As SoapFilter16 Return Nothing17 End Function18 End ClassYou need to ensure that the Web service rejects any SOAP request that contains an unexpectedactor. Your code must minimize the server resources used to process the request. What shouldyou do?A. Replace line 04 with the following line of code.Return New RejectUnknownActorFilter()
  2. Replace line 08 with the following line of code.Return New RejectUnknownActorFilter()
  3. Replace line 12 with the following line of code.Return New RejectUnknownActorFilter()
  4. Replace line 16 with the following line of code.Return New RejectUnknownActorFilter()
Correct Answer

Replace line 12 with the following line of code.Return New RejectUnknownActorFilter()