31 lines
1010 B
C#
31 lines
1010 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.ServiceModel;
|
|
using System.ServiceModel.Web;
|
|
using System.Text;
|
|
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 string GetData(int value)
|
|
{
|
|
return string.Format("You entered: {0}", value);
|
|
}
|
|
|
|
public void NSWResponse(bsmd.dbh.response.Root root)
|
|
{
|
|
_log.Info("response received!");
|
|
Response.ProcessResponse(root);
|
|
}
|
|
|
|
}
|
|
}
|