You are creating a Windows Communication Foundation (WCF) service by using Microsoft .NET Framework 3.5. You need to host the WCF service on the IIS Web server. First, you create a new folder for your application files. Next, you use the IIS management tool to create a Web application in the new folder. Which three actions should you perform next? (Each correct answer presents part of the solution. Choose three.)
A.
Create a web.config file that contains the appropriate configuration code. Place this file in the application folder.
B.
Create a web.config file that contains the appropriate configuration code. Place this file in the same folder as your service contract code.
C.
Create a service file that has the .svc extension containing the @service directive information for the service. Move this file to the application folder.
D.
Create a service file that has the .svc extension containing the @servicehost directive information for the service. Move this file to the application folder.
E.
Create a vti_bin sub-folder within the application folder for your code files. Place the code file that defines and implements the service contract in this folder.
F.
Create an App_Code sub-folder within the application folder for your code files. Place the code file that defines and implements the service contract in this folder.