07-19-2011 10:51 AM
<process id="createInboundDocument">
<startEvent id="start" />
<sequenceFlow sourceRef="start" targetRef="create_workitem_action" />
<serviceTask id="create_workitem_action"
name="Create a WorkItem from the InboundDocumentAction"
activiti:class="com.stoneriver.iip.document.bpm.CreateWorkItemFromInboundDocument" />
<sequenceFlow sourceRef="create_workitem_action"
targetRef="create_workitem" />
<sendTask id="create_workitem" activiti:type="mule">
<extensionElements>
<activiti:field name="endpointUrl"
expression="vm://createWorkItem.in?connector=vmSync" />
<activiti:field name="language">
<activiti:string>juel</activiti:string>
</activiti:field>
<activiti:field name="payloadExpression">
<activiti:string>#{createWorkItemAction}</activiti:string>
</activiti:field>
<activiti:field name="resultVariable">
<activiti:string>workItemCollection</activiti:string>
</activiti:field>
</extensionElements>
</sendTask>
<sequenceFlow sourceRef="create_workitem" targetRef="end" />
SEVERE: Error while closing command context
org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'muleContext' is defined
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFac
tory.java:521)
07-20-2011 02:39 AM
07-20-2011 10:33 AM
07-21-2011 03:27 AM
09-26-2011 05:29 AM
<simple-service name="hello" address="http://localhost:8080/hello">
<script:component>
<script:script engine="groovy">
<script:text>return "Hello World"</script:text>
</script:script>
</script:component>
</simple-service>
09-26-2011 07:03 AM
09-26-2011 08:07 AM
09-26-2011 09:58 AM
<bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
<property name="databaseType" value="h2" />
<property name="dataSource" ref="dataSource" />
<property name="transactionManager" ref="transactionManager" />
<property name="databaseSchemaUpdate" value="true" />
<property name="beans">
<map>
<entry key="muleContext" value-ref="_muleContext" />
</map>
</property>
</bean>
<bean id="_muleContext" …>
…
</bean>
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named '_muleContext' is defined
…
…
09-26-2011 11:15 AM
09-26-2011 12:27 PM
<bean id="_muleContext" factory-bean="muleFactory" factory-method="createMuleContext">
<constructor-arg type="java.lang.String" value="src/main/resources/application-context.xml"/>
</bean>
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.