У нас возникли некоторые проблемы при развертывании наших служб WCF в IIS7.
У нас есть два сервиса: DataAccess и BusinessLogic (примеры имен).
Клиенты подключаются к BusinessLogic, который затем подключается к DataAccess.
Тестовый клиент WCF позволяет нам использовать сервис DataAccess без ошибок.
Однако когда мы пытаемся вызвать ту же функцию из службы BusinessLogic, время ожидания истекает и возвращается следующая ошибка:
An error occurred while receiving the HTTP response to http://10.10.200.58/CRM/CS.ITS.CSC.CRM.CRMService.svc/basic. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). See server logs for more details.
Server stack trace:
at System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)
at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)
at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
Exception rethrown at [0]:
at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
at ICRMService.GetAccount(Int32 AccountId)
at CRMServiceClient.GetAccount(Int32 AccountId)
При локальном запуске с использованием Visual Studio 2008 все работает без проблем. Эта проблема возникает только при развертывании в IIS.
На сервере мы перенастроили все конфиги приложения и убедились, что адреса были доступны. Мы можем просмотреть все WSDL через браузер. Мы также включили трассировку на сервере и, используя SvcTraceViewer, получили следующую ошибку:
Failed to lookup a channel to receive an incoming message. Either the endpoint or the SOAP action was not found.
Есть ли у кого-нибудь опыт публикации служб WCF, которые вызывают другую службу WCF в среде IIS7? Любая помощь будет принята с благодарностью.