Reputation: 41
I've tried using the mlcp pump through the terminal with ease following https://docs.marklogic.com/guide/ingestion/content-pump
but I have no clue on how to implement the mlcp function with a user interface in a website. I've searched the whole internet-sphere but to no avail.
Please help
Upvotes: 2
Views: 173
Reputation: 11
If you are looking to create a GUI on web page that connects to MLCP underneath, then this project might give you some rough idea: mlcpGui
If you need a more user-friendly MLCP (like a GUI), then this project is highly recommended: iMLCP
Upvotes: 1
Reputation: 2236
Here's an example of invoking mlcp programmatically (in this case, from within an Apache Camel component) - https://github.com/rjrudin/ml-camel-mlcp/blob/master/src/main/java/com/rjrudin/marklogic/camel/component/mlcp/MlcpProducer.java - you could adapt this to invoke it in your UI.
Upvotes: 0
Reputation: 7770
MLCP is a Java program. The source code is also available. It was written as a command-line tool. However there is nothing stopping you from using the libraries (or other wrapper scripts) for managing these tasks through a web interface.
Upvotes: 2