Проблемы Sharepoint 2010 с сервисом WCF - PullRequest
3 голосов
/ 23 февраля 2011

Мне нужно создать сервис wcf для sharepoint 2010. Идея использовать Jquery ajax для взаимодействия с этим сервисом. Но все обращения к методам обслуживания всегда терпят неудачу.

Я пытаюсь использовать WCF Test Client и получаю сообщение:

Failed to invoke the service. Possible causes: The service is offline or inaccessible; the client-side configuration does not match the proxy; the existing proxy is invalid. Refer to the stack trace for more detail. You can try to recover by starting a new proxy, restoring to default configuration, or refreshing the service.

и ошибка detais:

    The content type text/html; charset=utf-8 of the response message does not match the content type of the binding (text/xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first 227 bytes of the response were: 'A transport-level error has occurred when sending the request to the server. (provider: Shared Memory Provider, error: 0 - Either a required impersonation level was not provided, or the provided impersonation level is invalid.)'.

Server stack trace: 
   at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException, ChannelBinding channelBinding)
   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 ITV2WCFService.DoWork()
   at TV2WCFServiceClient.DoWork()

enter image description here

Но услуга http://localhost/_vti_bin/site/TEMPSERVICE.svc/mex доступна и дает мне нормальный ответ.

Все сделано согласно статье на MSDN

http://msdn.microsoft.com/en-us/library/ff521581.aspx

В чем проблема и как с ней бороться?

Ответы [ 2 ]

1 голос
/ 24 февраля 2011

Решение: Анонимный доступ должен быть включен!

1 голос
/ 23 февраля 2011

Евгений:

Похоже, ваш веб-сервис возвращает стандартный ответ SOAP XML.JQuery предполагает использовать JSON.Я думаю, что проще всего настроить JQuery на использование XML.В качестве альтернативы вы можете изменить свой веб-сервис так, чтобы он возвращал JSON вместо XML.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...