Package com.openkm.ws.client

Examples of com.openkm.ws.client.OKMFolderService


    public void initServices(String host) throws OKMException {
        try {
            this.host = host;
            authService = new OKMAuthService(new URL(host + "/OKMAuth?wsdl"), AuthServiceName);
            repositoryService = new OKMRepositoryService(new URL(host + "/OKMRepository?wsdl"), RepositoryServiceName);
            folderService = new OKMFolderService(new URL(host + "/OKMFolder?wsdl"), FolderServiceName);
            documentService = new OKMDocumentService(new URL(host + "/OKMDocument?wsdl"), DocumentServiceName);
        } catch (Exception ex) {
            throw new OKMException(ex);
        }
    }
View Full Code Here


    public void initServices(String host) throws OKMException {
        try {
            this.host = host;
            authService = new OKMAuthService(new URL(host + "/OKMAuth?wsdl"), AuthServiceName);
            repositoryService = new OKMRepositoryService(new URL(host + "/OKMRepository?wsdl"), RepositoryServiceName);
            folderService = new OKMFolderService(new URL(host + "/OKMFolder?wsdl"), FolderServiceName);
        } catch (Exception ex) {
            throw new OKMException(ex);
        }
    }
View Full Code Here

TOP

Related Classes of com.openkm.ws.client.OKMFolderService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.