一大波問題解決和配置備份 WCF快煉成精了
1. 首先我的Service工程配置,target一定要也設成x64
2. 其次
因為WCF出現了“格式化程式嘗試對訊息反序列化時引發異常”(需要加<readerQuotas...),"超過最大配額,使用maxReceivedMessageSize...","超時",的問題,改了最大的接收與傳送的配置.最後這麼配置成功了。
服務端:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding maxBufferPoolSize="2147483647"
maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="2147483647"
maxStringContentLength="2147483647"
maxArrayLength="2147483647"
maxBytesPerRead="2147483647"
maxNameTableCharCount="2147483647"/>
<security mode="Message">
</security>
</binding>
</wsHttpBinding>
</bindings>
<services>
<service behaviorConfiguration="DeepIEHostBehavior" name="DeepIEHostEnTextSegmentation.TextSegmentationService">
<endpoint address="" binding="wsHttpBinding" contract="DeepIEHostEnTextSegmentation.ITextSegmentationService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:9806/DeepIE/service" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="DeepIEHostBehavior">
<serviceMetadata httpGetEnabled="True" />
<serviceDebug includeExceptionDetailInFaults="True" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
客戶端:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_ITextSegmentationService"
closeTimeout="00:01:00"
openTimeout="00:01:00"
receiveTimeout="00:10:00"
sendTimeout="00:05:00"
maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="32" maxStringContentLength="2147483647"
maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:9806/DeepIE/service" binding="wsHttpBinding"
bindingConfiguration="WSHttpBinding_ITextSegmentationService"
contract="EnglishTextSegmentation.ITextSegmentationService"
name="WSHttpBinding_ITextSegmentationService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>
</system.serviceModel>
3. 還有,CLR 無法從 COM 上下文 0x20a6f0 轉換為 COM 上下文 0x20a860,這種狀態已持續 60 秒,
解決方法是 在Debug -> Exceptions -> Managed Debug Assistants裡 去掉ContextSwitchDeadlock一項前面的鉤。
在除錯(選單)-->異常--> Managed Debug Assistants裡 去掉ContextSwitchDeadlock一項前面的鉤。
至此一堆蛋疼問題全部解決。
相關文章
- 終於解決了《====》記一次mysql熱備份xtrabackup(沒有解決問題)MySql
- 煉成爆款小遊戲-首先解決傳播問題遊戲
- Oracle EXPDP自動備份緩慢問題解決Oracle
- 程式碼解決快取穿透和快取雪崩問題快取穿透
- 解決一次RMAN遲遲不能開始備份的問題
- 解決了一個PC的問題
- 解決linux crontab備份mysql失敗的問題LinuxMySql
- 爬蟲必備工具,掌握它就解決了一半的問題爬蟲
- 作為企業資料安全的後盾,備份自身的問題解決了嗎?
- bg配置問題解決
- 終於,解決了一個大問題
- PNP的子集和問題終於解決了
- 記一次mysql熱備份xtrabackup(沒有解決問題)MySql
- netbakcup備份時遇到 status 59: access to the client was not allowed 問題解決client
- 快取穿透問題與解決方法快取穿透
- SQL 問題與解答:備份和設定SQL
- TSM備份時提示認證失敗(Authentication failure)問題的解決AI
- BizTalk 2013R2 WCF-LOB Oracle Adapter安裝配置/問題&解決方法OracleAPT
- WebAssembly解決了哪些業務問題?Web
- Harbor搭建及配置 問題解決
- 快取常見問題及解決方案快取
- 快取三大問題及解決方案快取
- Oracle備份和恢復常見問題解答Oracle
- RAC安裝配置和使用過程的問題解決方法總結一
- 想了解Xtrabackup備份原理和常見問題分析,看這篇就夠了
- rman 備份中ORA-19809、ORA-19804問題解決
- Gulp解決釋出線上檔案(CSS和JS)快取問題CSSJS快取
- 一文揭秘DDD到底解決了什麼問題
- 更新了java 8 之後一個小問題解決Java
- 一次ASM空間滿了的問題解決ASM
- WCF配置檔案詳解
- Promise到底解決了什麼問題?Promise
- 離職,問題就解決了嗎?
- vue webpack配置解決跨域問題VueWeb跨域
- 解決「問題」,不要解決問題
- CSS Hacks 和 問題解決CSS
- 快取問題(四) 快取穿透、快取雪崩、快取併發 解決案例快取穿透
- 手摸手教你解決重定向快取問題快取