Use DMN in camundastandalone (deploying on AWS)

Hello,

I’m using camunda standalone webapplication. In WEB-INF/classes/bpmn directory I have two files: one is .bpm and other is .dmn.

When I deploy my webapplication (.war file) to amazon aws I see only bpm process, in cockpit menu “Decisions” is written “No decision tables deployed”. Could anyone help? I wand to deploy both files: bpm and dmn.

Hello @BriBrs,

What is your version - community or enterprise?
Sorry, I misunderstood the question.
So could you share the log of the deployment if you still have it.

Best regards,
Yana

Hello, @yana.vasileva,

I faced with the same problem, when I deploy standalone application on localhost. My log of the deployment:

DeploymentLog.txt (4.9 KB)

Hi Brigita,

You need to adjust the applicationContext.xml and more specifically deploymentResources property to accept dmn files also.
Does this help you?

Best regards,
Yana

Thank you @yana.vasileva for help, now it’s working.

I added one more resource in applicationContext.xml file:

<property name="deploymentResources">
 <list> 
  <value>classpath*:bpmn/*.bpmn </value>
  <value>classpath*:dmn/*.dmn </value>
</list> 
 </property>
1 Like

Hi @yana.vasileva,

I have one more question: is it possible to send email with service task, when standalone application is deployed on amazon AWS? On localhost i’m using embabed engine and email sending is working, but on AWS I got the error “failed to send mail”. Could you give me some advice? What would be the simplest way to do it?

Best regards,
Brigita