nerdexam
Microsoft

70-515 · Question #129

You are developing an ASP.NET Web service. The following code segment implements the service. (Line numbers are included for reference only.) 01 [WebServiceBinding(ConformsTo…

The correct answer is A. Remove line 01. D. Modify the attribute on line 10 as follows. See the full explanation below for the reasoning.

Question

You are developing an ASP.NET Web service. The following code segment implements the service. (Line numbers are included for reference only.) 01 [WebServiceBinding(ConformsTo =WsiProfiles.BasicProfile1_1)] 02 public class ProductService :System.Web.Services.WebService 03 { 04 [WebMethod] 05 public Product GetProduct(string name) 06 { 07 & 08 } 09 10 [WebMethod] 11 public Product GetProduct(int id) 12 { 13 & 14 } 15 } You need to ensure that both GetProduct methods can be called from a Web client. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

Options

  • ARemove line 01.
  • BAdd the static modifier on lines 05 and 11.
  • CAdd the following attribute before line 10.
  • DModify the attribute on line 10 as follows.

How the community answered

(42 responses)
  • A
    83% (35)
  • B
    12% (5)
  • C
    5% (2)

Community Discussion

No community discussion yet for this question.

Full 70-515 Practice