In our production farm, internet
access is routed through ISA which intern routes the requests to a web
application hosting a WCF service on IIS7.
The service is hosted with a host
header (KMServices.hcl.in) and has a SSL certificate installed on that. it
working fine using netTCP binding with windows Authentication over intranet.
This service is not working over
internet – ISA is routing the requests coming for https://km.hcl.in/arKMedesServices/arKMarkServices.svc
to http://KMServices.hcl.in/arKMarkServices.svc
using wsHttpBinding and we have a listen URI
configured properly in web.config of the service and a clientVia URL on the
client web.config. I am even unable to add the reference using VS 2008 from
Internet.
The error Message - The
remote name could not be resolved: ‘KMServices.hcl.in’.
We need to get this working over
internet using Windows Authentication only as the users will be accessing the client
application from internet but will be logging in to the system with their
domain credentials only.
Pls. help.