Моя форма aspx работает до вчерашнего дня, и у меня 2400 записей.Сегодня, когда я пытаюсь сохранить данные, я получаю сообщение об ошибке
Исключение типа 'System.ServiceModel.ProtocolException' произошло в mscorlib.dll, но не было обработано в коде пользователя
Я уже пыталсяthis
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="ws_IUAEOrderService">
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None" />
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default" establishSecurityContext="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://uae.sahulatbazar.com/UAEIntegration/Service1.svc" binding="wsHttpBinding" bindingConfiguration="ws_IUAEOrderService" name="ws_IUAEOrderService" contract="IUAEOrderService"/>
</client>
</system.serviceModel>
Это моя привязка кода в wcf до вчерашнего дня отлично работала
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IUAEOrderService"/>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://uae.sahulatbazar.com/UAEIntegration/Service1.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IUAEOrderService" contract="IUAEOrderService" name="BasicHttpBinding_IUAEOrderService"/>
</client>
</system.serviceModel>