1.參考原hololens接入wcf工程,匯入wcfdataaccess中**和dll。
測試時,在過去roomdevs時,由於資料量過大。提示the message is too large.
的錯誤。
但是在hololens中測試,不會出現該問題。最後把hololens工程下的system.servicemodel和wcfmodels 重新匯入
安卓工程,沒有再報錯。(可能第一次匯入那幾個dll做了什麼更改,導致出錯)
2.單獨使用commonservice進行大資料收發,會提示位元組數不能超過8196bytes的錯誤。
在nettcpbinding出,新增以下**:
binding.readerquotas = new system.xml.xmldictionaryreaderquotas();
binding.readerquotas.maxstringcontentlength = int.maxvalue;
這個可以解決8196bytes的問題,但是最好的解決方法還是替換1中的那幾個dll。
安卓開發問題記錄隨筆
2018.7.26 2018.7.29 一般在根布局檔案中會出現 tools context 某個activity名稱。這個屬性的意思是 如果你在androidmanifest.xml檔案中為某個activity設定了theme樣式,那麼,一般情況下,你在layout布局裡面是無法直接看到這個效果的...
安卓手機scrollTop失效問題記錄
在做移動端適配的時候,監聽scroll事件 componentdidmount handlescroll this.props const this.props.store if srcollheight scrolldom.clientheight 632 如果是先查詢的要重製計數 pagenum...
安卓接入極光im TP3 2接入極光IM
分享下我用的極光im,希望能幫助到大家,一 在common common檔案下function檔案中寫乙個公共呼叫的方法。極光im curl提交 param 請求url url param 請求資料 data param 請求型別 type post get delete return mixed ...