現在、Java API を使用して MarkLogic サーバーからデータ (XML) を取得しようとしています。
したがって、名前空間を追加しました:
NamespacesManager nsManager = client.newServerConfigManager()
.newNamespacesManager();
nsManager.addPrefix("document",
"http://test/dummy/master/doc");
...
その後、次のことを試しました:
DatabaseClient client = DatabaseClientFactory.newClient("IP_ADDRESS",
PORT, user, password, Authentication.DIGEST);
SearchHandle handle = new SearchHandle();
QueryManager queryMgr = client.newQueryManager();
KeyValueQueryDefinition query = queryMgr.newKeyValueDefinition();
query.put(
queryMgr.newElementLocator(new QName("doc:id")),
"1439-1074");
SearchHandle resultsHandle = queryMgr.search(query, handle);
System.out.println("results: " + resultsHandle.getTotalResults());
// System.out.println("Matched "+resultsHandle.getTotalResults()+
// " documents with '"+query.getCriteria()+"'\n");
// iterate over the result documents
MatchDocumentSummary[] docSummaries = resultsHandle.getMatchResults();
System.out.println("Listing "+docSummaries.length+" documents:\n");
すべての作品; 結果を取得していますが、XML ドキュメントが含まれていません (ドキュメントへの URI のみ)。このクエリで XML 結果を取得することは可能ですか、それとも次のような 2 番目のクエリをコミットする必要がありますか?
JSONDocumentManager docMgr = client.newJSONDocumentManager();
StringHandle doc = docMgr.read(uri, new StringHandle());