I'am trying to read the data from the properties file present in my local system into Form Stencil of Alfresco Process Service.Is it possible to read the data .Please reply back.
Thanks in Advance.
Can you describe more what do you want to do maybe giving an example?
I had same scenario but I have used java to read custom property file.
You need to place property at classpath.
@Configuration @PropertySource("classpath:/META-INF/foo/foo.properties") @PropertySource(value = "classpath:foo.properties", ignoreResourceNotFound = true) @PropertySource(value = "file:foo.properties", ignoreResourceNotFound = true) @Service("MyService") public class MyService { @Value("${propertyname}") private String name; }
Ask for and offer help to other Alfresco Process Services and Activiti Users and members of the Alfresco team.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.