Question:You want to consume an existing web service from your ASP.NET website. What actions should you take? (Choose all that apply.)
A Use the Add Reference dialog box to set a reference to the WSDL file that contains the web service.
B Use the Add Web Reference dialog box to point to the URL of the web service.
C Write a method in your website that has the same function signature as your web service. Do not implement this method. Instead, mark it with the WebMethod attribute.
D Call a proxy class that represents your web service.
+ AnswerB D
+ Report