我们正在使用 Marklogic XCC .Net 库将文档插入 Marklogic。但是在负载下(45 个并发用户),我们开始收到异常消息 Provider com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl not found 有人知道吗?
代码是
using (var session = ContentSourceFactory.NewContentSource(new Uri(_connectionUriString)).NewSession())
{
var contentCreateOptions = new ContentCreateOptions
{
Format = DocumentFormat.Format.XML,
Collections =
new[]
{
"Docs"
}
};
var options = contentCreateOptions;
var fileName = string.Format("/doc/{0}.xml", doc.Id);
session.InsertContent(ContentFactory.NewContent(fileName, doc.Serialize(), options));
}