我正在尝试从文件系统中获取JSON文件,并尝试将文件插入MarkLogic数据库。
<route id="file_upload">
<!-- incoming requests from the file is routed -->
<from uri="file:/E:/camel/input"/>
<to uri="http://localhost:8005/v1/documents?uri/patents/test.json"/>
</route>
用户名和密码为:admin / admin,用于在8005上运行的MarkLogic REST实例
答案 0 :(得分:5)
有https://github.com/rjrudin/ml-camel-client的Camel / MarkLogic集成示例。那些只是使用mlcp(作为嵌入式库)和XCC - 我现在将添加一个REST API示例并回复。
https://github.com/rjrudin/marklogic-camel-demo显示了进一步的集成,虽然配置是用Java而不是XML(我觉得Java在Camel中更容易使用) - 注意如何将HTTP头和查询字符串作为Camel头传入,而不是URI的一部分 - https://github.com/rjrudin/marklogic-camel-demo/blob/master/src/main/java/org/example/util/RunCamel.java#L76。这也记录在Camel http4页面中 - http://camel.apache.org/http4.html