Skip to content
HowTo Brothers
Straight to the Point
  • Home
  • About us

Category: Alfresco

How to reindex Solr when running on Kubernetes

2021-09-07 howtobrothers

If you need to run a full reindex in Solr, you’ll probably try the classic approach that requires to stop…

Continue Reading →

Posted in: Alfresco, Alfresco Search Services, Index, Kubernetes, Solr

How to implement autosave for Alfresco Process Service forms

2021-06-05 howtobrothers

You just need to subscribe to formFieldValueChanged, and save the form using formService.saveTaskForm whenever there is a change on the…

Continue Reading →

Posted in: ADF, Alfresco, Alfresco Process Services, APS, TypeScript

How to get node’s mimetype on a content update behavior on Alfresco

2020-05-05 howtobrothers

Officially, Alfresco provides access to the mimetype through node’s ContentData. However, when this is called on an content update behavior…

Continue Reading →

Posted in: Alfresco, Alfresco Content Services, Java

How to use ADF version manager component just knowing the node ID

2020-04-03 howtobrothers

On the component, create a NodeMinial object (this implements MinimalNodeEntryEntity), and just set its id using the input nodeId. On…

Continue Reading →

Posted in: ADF, Alfresco, Alfresco Content Services, TypeScript

How to make APS form fields read-only programmatically on ADF

2020-03-03 howtobrothers

To make an APS form field read-only, you need to access its FormFieldModel. Once you have that, you can compare…

Continue Reading →

Posted in: ADF, Alfresco, Alfresco Process Services, APS, TypeScript

How to solve error 415 “Cannot update using multipart/form-data”

2020-02-05 howtobrothers

If you are trying to update a node’s content in Alfresco make sure you don’t set the content type as…

Continue Reading →

Posted in: Alfresco, Alfresco Content Services, Error, Java, REST API

How to get Alfresco (ACS) group users using alfresco-js-api

2020-01-02 howtobrothers

Using groupsApi Using Search PATH Using Search ANCESTOR As follows, there are some methods required to support the previous methods

Continue Reading →

Posted in: Alfresco, Alfresco Content Services, alfresco-js-api, Javascript

How to revert LDAP configuration from JMX to alfresco-global.properties

2019-05-26 howtobrothers

If you made breaking changes through Alfresco admin console (JMX) to your LDAP subsystem, and found yourself with an unusable…

Continue Reading →

Posted in: Alfresco, Alfresco Content Services, Error, JMX, LDAP

How to solve Apache error 502 “Bad Gateway” when updating Alfresco node content

2019-04-10 howtobrothers

In case you are using Apache as a proxy for your Alfresco Content Service Tomcat, you may face this unexpected…

Continue Reading →

Posted in: Alfresco, Alfresco Content Services, Error, Java, REST API

How to solve “Error during LDAP Search”

2019-03-01 howtobrothers

If you get the following error, even though the ID of the DSID-0C09044 is associated to an invalid password issue,…

Continue Reading →

Posted in: Alfresco, Alfresco Content Services, Error, LDAP

Develop Fast Deploy Faster, APS Scripting

2019-02-18 howtobrothers

You can check here my presentation at the Alfresco DevCon 2019 https://www.alfresco.com/devcon-2019-playlists#section-17 https://www.slideshare.net/MiguelSnchez75/develop-fast-deploy-faster-alfresco-process-services-aps-scripting-132267271

Continue Reading →

Posted in: Alfresco, Alfresco Process Services, APS, DevCon, Groovy, Summit, Visual Editor

DevCon 2019

2019-01-25 howtobrothers

I’ll be speaking at Alfresco Devcon next week in Edinburgh, Scotland. I’ll show you how to take advantage of APS…

Continue Reading →

Posted in: Alfresco, Alfresco Process Services, APS, DevCon, Summit Filed under: Alfresco, Alfresco Process Service, APS, DevCon, Low Code, Speaker

How to update in-flight process instances definition after publishing a new workflow version in APS

2018-11-29 howtobrothers

Whenever you publish a new version of an existing workflow, only processes created after that will use the new definition.…

Continue Reading →

Posted in: Alfresco, Alfresco Process Services, APS, Groovy, Visual Editor

How to get the active task of a process instance using ADF services

2018-06-17 howtobrothers

There are several ways to get the active task/s from a process instance. In this case, we’re using the TaskListService…

Continue Reading →

Posted in: ADF, Alfresco, Alfresco Process Services, APS

Alfresco Gov Summit 2018

2018-05-15 howtobrothers

I’ll be speaking at #AlfrescoGovSummit 2018. We’ll talk about our experience with ADF, REST API, Activiti Designer, DevOps, and how…

Continue Reading →

Posted in: Alfresco, Summit

Alfresco REST API, how to generate node properties JSON Object in Groovy

2018-05-07 howtobrothers

To be able to create a node, or update it, using the Alfresco REST API you will need to send…

Continue Reading →

Posted in: Alfresco, APS, Groovy Filed under: Alfresco REST API

How to involve task candidate groups automatically when the task is created in Alfresco Process Services

2018-04-06 howtobrothers

To add a candidate group as a participant of a task, you can do it easily thanks to the task…

Continue Reading →

Posted in: Alfresco, Alfresco Process Services, APS

How to create a new type in Alfresco

2017-09-15 howtobrothers

In this tutorial, we explain how to create a new type in Alfresco. To do that, we are implementing a…

Continue Reading →

Posted in: Alfresco, Share Filed under: Alfresco, custom type, model, new type, Share

How to use Spring’s cache in Alfresco

2017-09-14 howtobrothers

In this post, we are going to explain how to use Spring’s cache in Alfresco. To implement this feature could…

Continue Reading →

Posted in: Alfresco Filed under: Alfresco, Cache, Spring, Spring Surf

How to add wiki articles to the advanced search

2017-08-24 howtobrothers

Adding an option in the advanced search to look for wiki articles is possible, but It’s not as straightforward as…

Continue Reading →

Posted in: Alfresco, Share Filed under: advanced search, Alfresco, articules, search, Share, wiki

How to implement Form Field Validation Handlers in a different way in Alfresco

2017-08-02 howtobrothers Leave a comment

We are going to explain an extra way to implement Form Field Validation Handlers in Alfresco. We know the standard…

Continue Reading →

Posted in: Alfresco, Share Filed under: Alfresco, form, Form Field Validation Handlers, Share

How to set up an Alfresco cluster on my local environment

2017-07-13 howtobrothers

Install an alfresco instance following the standard procedure, but in the last step, you should deselect all the options, and…

Continue Reading →

Posted in: Alfresco Filed under: Alfresco, Cluster, Set up

Our certifications

Recent Posts

  • How to reindex Solr when running on Kubernetes
  • How to implement autosave for Alfresco Process Service forms
  • How to solve Solr socket timeout exception
  • How to get node’s mimetype on a content update behavior on Alfresco
  • How to use ADF version manager component just knowing the node ID

Archives

  • September 2021
  • June 2021
  • May 2021
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • November 2018
  • June 2018
  • May 2018
  • April 2018
  • March 2018
  • January 2018
  • October 2017
  • September 2017
  • August 2017
  • July 2017

Categories

  • ADF
  • Alfresco
  • Alfresco Content Services
  • Alfresco Process Services
  • APS
  • DevCon
  • Groovy
  • Share
  • Summit
  • Task Listener
  • Visual Editor
HowToBrothers © 2021