Here I am doing marklogic enrichment with cts.entityHighlight. Is there any marklogic java API that do same things?
Linked Questions
- Exception for duplicate documents with same URI in MarkLogic
- Confused with search:suggest
- Multiple constraints with same constraint name, different namespaces
- XCC .Net Upload File problems
- MarkLogic template debugging: how to increase productivity?
- Marklogic search query
- Soapui post rest service
- MarkLogic Express Sample Application: The Oscars
- MarkLogic Search Xquery
- Slow first query after update to spelling dictionary
- MarkLogic privilege setting
- Optimal way of storing XML data in Marlogic
- Get 'N' number of records in marklogic
- How do I create a database in marklogic from a script
- xmdp:http-get and xdmp:insert-document
Popular Questions
- Partially applied generic function "cannot be cast to Nothing"
- Peek and Pop not an option
- Run JIRA in port 80 as root
- Agar.io style ripple effect for canvas arcs
- What is the difference between [ValidateModel] and a check of valid state in ASP.NET?
- Passing shared_ptr to std::function (member function)
- UWP location tracking even when the app was suspended
- Docker – fix service IP addresses
- Dynamic partition in hive
- How to enable Indications on Client Configuration descriptor from iOS8
1 Answers
Related Questions
- Calling Shell Script from xquery module in MarkLogic
- Time limit exceeded , in Markligic Cts:Search
- Setting up MarkLogic 5 Express on Windows 7 Professional
- How much memory maps are consuming?
- How to change element name while loading data with Record Loader?
- How to get total number of documents in Marklogic database?
- Result Set manipulation with search-api in Marklogic
- creating an application that provides Check-in , Check-out, Cancel Checkout, Search
- Application code for support package is not complete
- xdmp:invoke call in MarkLogic
- Memory Usage Planning - recommendations?
- Influence of amount element range indexes on memory consumption
- MarkLogic SOAP response handling
- MarkLogic-specific way (or faster way) to do a positional query?
- Marklogic : Security and Configuration Upgrade message
The MarkLogic Java API is a client library, and not designed to provide literal access to ad hoc instructions like above. You best encapsulate your code on server-side, and make it available for outside usage. Depending on how and when you want to use it, you could consider using a REST extension, or a REST transform for instance, but perhaps in your case Data Services makes most sense. You can find documentation on it here:
https://docs.marklogic.com/9.0/guide/java/DataServices
HTH!