70-529  Exam

Exam # of questions Description  Update
70-529 69 Microsoft 70-529 TS: Microsoft .NET Framework 2.0... 02/15/2011
[Practice Test]    [Download Study Guide(PDF)]   [Update Exam]

70-529 - Exam Information
  • Description: Microsoft 70-529 TS: Microsoft .NET Framework 2.0 - Distributed Application Development
  • Passing Score: 75%
  • Practice Test - Number of questions: 69 questions
  • Simulation Test - Number of questions: 69 questions
  • Simulation Test Duration: 41 minutes
  • Has explanations: Yes

Question of the day

A Web service application uses Web Services Enhancements (WSE) 3.0. A class named RejectUnknownActorFilter is derived from the SoapFilter class. The RejectUnknownActorFilter class 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 RequireActorAssertion 02 Inherits PolicyAssertion 03 Public Overrides Function CreateClientInputFilter(ByVal_ context As FilterCreationContext) As SoapFilter 04 Return Nothing 05 End Function 06 07 Public Overrides Function CreateClientOutputFilter(ByVal _ context As FilterCreationContext) As SoapFilter08 Return Nothing 09 End Function 10 11 Public Overrides Function CreateServiceInputFilter(ByVal _ context As FilterCreationContext) As SoapFilter12 Return Nothing 13 End Function 14 15 Public Overrides Function CreateServiceOutputFilter(ByVal _ context As FilterCreationContext) As SoapFilter16 Return Nothing 17 End Function 18 End Class You need to ensure that the Web service rejects any SOAP request that contains an unexpected actor. Your code must minimize the server resources used to process the request. What should you do?

Answer(s)

  1. Replace line 08 with the following line of code.Return NewRejectUnknownActorFilter()
  2. Replace line 12 with the following line of code.Return NewRejectUnknownActorFilter()
  3. Replace line 16 with the following line of code.Return NewRejectUnknownActorFilter()
  4. Replace line 04 with the following line of code.Return NewRejectUnknownActorFilter()
Correct Answer

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