c# - Hosting WCF service and static html files -
we developing application has static html pages + jquery on client side. client gets data rest-ful wcf service hosted in iis.
i'm bit confused on how structure in vs/host it.one of pre requisite i'm not allowed put client side html static content asp.net app sake of it.
my aim following: - have mechanism client dev , service dev can integrate there work easily, i.e on running single project should seeing there progress of there work. - separate client , service projects allowed, client cannot hosted in asp.net app. - within client code, should able retrieve data relatively service uri's. i.e should not tied down specific port or localhost, if /getmydata
wcf serivce, rather http://localhost:51345/getmydata
, should return data service.
for service side, i'm using route table instead of svc file.
right now, thinking bundle service , client static content single host project , query data relatively.my question - there better approach this? should taking care of security issues while doing this/or while hosting in iis/my development server?
Comments
Post a Comment