3

我在我的应用spellchecker程序tinymce中使用。拼写检查器在内部使用Moxiecode.TinyMCE.dll.

在我们上次实时更新之前它运行良好。突然它给出错误说You must write ContentLength bytes to the request stream before calling [Begin]GetResponse

这是在弹出窗口中显示错误详细信息的堆栈跟踪

System.Net.HttpWebRequest.GetResponse() +6038604 Moxiecode.TinyMCE.SpellChecker.GoogleSpellChecker.SendRequest(String lang, String data) +762 Moxiecode.TinyMCE.SpellChecker.GoogleSpellChecker.CheckWords(String lang, String[] words) +197 Moxiecode .TinyMCE.SpellChecker.SpellCheckerModule.ProcessRequest(HttpContext context) +500 Moxiecode.TinyMCE.Web.HttpHandler.ProcessRequest(HttpContext context) +282 System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +100 System. Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75
版本信息:  Microsoft .NET Framework Version:4.0.30319; ASP.NET 版本:4.0.30319.504

我搜索错误的解决方案,但没有找到任何解决方案。

任何人都可以为此建议解决方法。

4

2 回答 2

3

我已经搜索了问题的解决方案,但我们的应用程序没有任何问题。基本上重点是,我们正在使用 Google 提供的拼写检查 Web 服务和我们的 WYSIWYG 编辑器。我发现,从昨天开始,该服务无法正常运行或被 Google 停止。

以下是一些链接,其中包含有关用户体验的一些注释

http://www.tinymce.com/develop/bugtracker_view.php?id=5793 http://www.tinymce.com/forum/viewtopic.php?id=30779

于 2013-04-05T10:17:06.943 回答
0

您可以通过执行以下操作来启用浏览器的内置拼写检查器:

tinymce.init({
    browser_spellcheck : true,
});

请务必从您的工具栏和插件列表中删除拼写检查器。

于 2014-01-16T21:55:22.617 回答