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);
}