using log4net; namespace bsmd.dbh.ResponseService { // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in code, svc and config file together. // NOTE: In order to launch WCF Test Client for testing this service, please select Service1.svc or Service1.svc.cs at the Solution Explorer and start debugging. public class ResponseService : IResponseService { private ILog _log = LogManager.GetLogger("dbh ResponseService"); public void NSWResponse(bsmd.dbh.response.Root root) { _log.Info("response received!"); Response.ProcessResponse(root, Properties.Settings.Default.DBConnectionString); } } }