Olivia A.
Olivia A.

Reputation: 41

MarkLogic content pump (MLCP) with GUI

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

Answers (3)

Matt Sun
Matt Sun

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

rjrudin
rjrudin

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

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

Related Questions