alfresco

Looking for Activiti Alfresco Workflow tutorial step by step [closed]

故事扮演 提交于 2019-11-30 12:21:41
Where i can find simple tutorial for Activiti Alfresco Workflow (especially with Custom Workflow) ? I'm new with Alfresco Activiti Worfklow. Thanks. I have written a tutorial on using the Activiti workflow engine that is embedded in Alfresco 4 that shows how to create custom workflows. It includes everything you need to know from setting up the workflow using the Activiti Eclipse plug-in to defining your workflow content model and wiring up everything in Spring. It includes basic hello world examples as well as a slightly more complex example that incorporates a custom task listener. The

Alfresco community 5.1.x workflow form add input fields dynamically

北慕城南 提交于 2019-11-30 06:06:39
问题 I am using Alfresco Community 5.1.x. I want to create a custom workflow using kickstart in that one of the forms I have + button when + button add text fields dynamically. Is this possible? How? 回答1: I hope you will get some idea from this control. On Share configration, <field id="myco:userDetails" set="userDetails" label="User Details" > <control template="/org/alfresco/components/form/controls/workflow/userdetails.ftl" /> </field> userdetails.ftl <style> .yui-dt{ border: 1px solid #ccc;

Looking for Activiti Alfresco Workflow tutorial step by step [closed]

老子叫甜甜 提交于 2019-11-29 17:41:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Where i can find simple tutorial for Activiti Alfresco Workflow (especially with Custom Workflow) ? I'm new with Alfresco Activiti Worfklow. Thanks. 回答1: I have written a tutorial on using the Activiti workflow engine that is embedded in Alfresco 4 that shows how to create custom workflows. It includes

HTTP Request from WebScript in Alfresco

末鹿安然 提交于 2019-11-29 10:52:46
I'm writing a WebScript in Alfresco using JS controller and I want to make a HTTP request to the local HTTP resource. This resource is a Java-based app and gives me its own REST API. My WebScript is not a Share Component: so I don't have a remote object to call another webscript. How can I make a HTTP request to the local resource (something like '/sdo/documents/getName?type=fl') from a WebScript? EDIT: Alfresco is overriding the Spring Surf webscripts.container bean removing the remote definition (in web-scripts-application-context.xml of remote-api ): <bean id="webscripts.container" class=

centos7下安装agilefant,alfresco,gitlab 和一些基础软件

你。 提交于 2019-11-29 06:29:50
设置ip(这个是本虚拟机才需要的) vi /etc/sysconfig/network-scripts/ifcfg-eth0 改 bootproto=static onboot=yes 后面加上 IPADDR=192.168.137.21 NETMASK=255.255.255.0 GATEWAY=192.168.137.1 DNS1=192.168.137.1 DNS2=8.8.8.8 重启网络 systemctl restart network (如果不是虚拟机就从这开始) 安装ssh yum install openssh-server systemctl restart sshd 重启SSH服务。 命令:systemctl start sshd 启动服务 | 命令:systemctl stop sshd 停止服务   重启后可输入:netstat -antp | grep sshd 查看是否启动22端口 安装java mkdir /usr/lib/jvm tar zxvf /root/jdk-8u221-linux-x64.tar.gz -C /usr/lib/jvm/ vi /etc/profile export JAVA_HOME=/usr/lib/jvm/jdk1.8.0_221 export JRE_HOME= J A V A H O M E / j r e e x

通过Alfresco DM 架设网络文件服务-CIFS及WebDAV

喜欢而已 提交于 2019-11-28 16:29:52
Alfresco DM为网络文件服务提供了一个虚拟的文件系统(是纯Java的),并支持CIFS及WebDAV网络文件访问协议。当你需要在企业局域网及互联网上同时架设一个可以供企业员工使用的安全而可靠的文件服务时,Alfresco是一个比较容易管理和实现的选择。 参照以下的步骤来完成服务器与个人电脑的设置: 1. 安装Alfresco 如何安装Alfresco的步骤不在此详细描述了。如果是在Linux环境下安装Alfresco的话,安装完毕后,请先确保Linux服务器上没有启动SMB服务,如果有,请关闭SMB,否则无法使用Alfresco 的CIFS文件服务。 在/<alfresco home>/WEB-INF/classes/alfresco目录下 打开file-system.properties文件,开启cifs服务 cifs.enabled=true 打开file-system.xml文件 修改 <authenticator type="enterprise"/> 这是文件系统的用户认证方式,有三种: 通过alfresco的账户认证 通过微软的活动目录Activity Directory来认证 通过企业的网络密码验证协议,如Kerberos来认证 这里介绍使用alfresco的账户用户进行验证的方法,把type设为alfresco。然后重启alfresco服务。 2.

Alfresco community 5.1.x workflow form add input fields dynamically

一曲冷凌霜 提交于 2019-11-28 14:22:17
I am using Alfresco Community 5.1.x. I want to create a custom workflow using kickstart in that one of the forms I have + button when + button add text fields dynamically. Is this possible? How? I hope you will get some idea from this control. On Share configration, <field id="myco:userDetails" set="userDetails" label="User Details" > <control template="/org/alfresco/components/form/controls/workflow/userdetails.ftl" /> </field> userdetails.ftl <style> .yui-dt{ border: 1px solid #ccc; font-weight: normal; } .yui-dt th { margin: 0; padding: 0; border: none; border-right: 1px solid #CBCBCB;

How to start an Alfresco Workflow through Javascript adding a resource

断了今生、忘了曾经 提交于 2019-11-28 05:11:34
问题 Starting using a rule and a simple javascript in Alfresco is quite easy but i'm stuck on trying to start a workflow through javascript adding a resource. My goal is to add the document (or documents) used to start the flow, so i can obtain a reference in the "OW_ATTACHMENTS" of the Alfresco BPM of the Alfresco WorkDesk. I've tried many times with the bpm:workflowpagckage or bpm:package with no luck....help! Edit: function startWorkflow(name,docNode) { var workflow = actions.create("start

HTTP Request from WebScript in Alfresco

六月ゝ 毕业季﹏ 提交于 2019-11-28 04:07:38
问题 I'm writing a WebScript in Alfresco using JS controller and I want to make a HTTP request to the local HTTP resource. This resource is a Java-based app and gives me its own REST API. My WebScript is not a Share Component: so I don't have a remote object to call another webscript. How can I make a HTTP request to the local resource (something like '/sdo/documents/getName?type=fl') from a WebScript? 回答1: EDIT: Alfresco is overriding the Spring Surf webscripts.container bean removing the remote

Auto-generation of email with username and random password on creation of new user

て烟熏妆下的殇ゞ 提交于 2019-11-27 05:42:13
I have created a class NewUserEmail to auto generate an email with username and password while creating a new user. I am able to create the password but whenever I am trying to log in with that password, its not logging in. I am not able to generate my mail. Please guide me and let me know what is wrong with my code: import java.util.HashMap; import java.util.Map; import java.util.Set; import javax.mail.MessagingException; import javax.mail.internet.MimeMessage; import org.alfresco.error.AlfrescoRuntimeException; import org.alfresco.model.ContentModel; import org.alfresco.repo.jscript