-1

スタンフォードパーサーにProxemラッパーを使用していますが、ASP.NETMVC3および4アプリケーションでの解析で問題が発生しています。投げる

System.Reflection.TargetInvocationException: Exception has been thrown by the target of an      invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object.
 at Proxem.Antelope.Parsing.Sentence.a(List`1 A_0)
 at Proxem.Antelope.Parsing.Sentence..ctor(SerializationInfo info, StreamingContext ctxt)
--- End of inner exception stack trace ---

WPFおよびコンソールアプリケーションでは、正常に機能します。

4

1 に答える 1

0

それを私が直した。コンストラクターParser(文字列パス)はParser(string path, int poolsize)、poolsizeでコンストラクターを呼び出していvalue = 1ます。Parser(string path, int poolsize)値->Parser(yourPath、0)でコンストラクターを使用すると、MVCおよびWCFで機能します。

于 2013-07-10T08:57:26.063 に答える