All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.marklogic.mgmt.api.server.AppServicesServer Maven / Gradle / Ivy

Go to download

Java client for the MarkLogic REST Management API and for deploying applications to MarkLogic

There is a newer version: 5.0.0
Show newest version
package com.marklogic.mgmt.api.server;

public class AppServicesServer extends Server {
	public static final String APP_SERVICES_SERVER_NAME = "App-Services";
	
	public AppServicesServer() {
		setServerName(APP_SERVICES_SERVER_NAME);
		setServerType("http");
		setRoot("/");
		setPort(8000);
		setModulesDatabase("Modules");
		setContentDatabase("Documents");
		setErrorHandler("/MarkLogic/rest-api/8000-error-handler.xqy");
		setUrlRewriter("/MarkLogic/rest-api/8000-rewriter.xml");
		setRewriteResolvesGlobally(true);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy