SPIN/DOM-XML-01007 Unable to find child element (Tomcat)

Hello,

I am having a problem to use a webservice. I got this message while execute my process:

Error while evaluating expression: ${S(response) .childElement("Body") .childElement("http://thomas-bayer.com/blz/", "getBankResponse") .childElement("details") .textContent()}. Cause: org.camunda.spin.xml.SpinXmlElementException: SPIN/DOM-XML-01007 Unable to find child element with namespace 'http://thomas-bayer.com/blz/' and name 'getBankResponse'

BPMN


bank.bpmn (4.7 KB)

bankApplication.class

Summary
package bank;

import org.camunda.bpm.application.ProcessApplication;
import org.camunda.bpm.application.impl.ServletProcessApplication;

@ProcessApplication("Bank App")
public class BankApplication extends ServletProcessApplication {
  // empty implementation
}

pom.xml

Summary
<project xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>de.hsb.wsdl</groupId>
	<artifactId>bank</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>war</packaging>
	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>org.camunda.bpm</groupId>
				<artifactId>camunda-bom</artifactId>
				<version>7.12.0</version>
				<scope>import</scope>
				<type>pom</type>
			</dependency>
		</dependencies>
	</dependencyManagement>

	<dependencies>
		<dependency>
			<groupId>org.camunda.bpm</groupId>
			<artifactId>camunda-engine</artifactId>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>javax.servlet-api</artifactId>
			<version>3.0.1</version>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>org.camunda.connect</groupId>
			<artifactId>camunda-connect-core</artifactId>
		</dependency>

		<dependency>
			<groupId>org.camunda.connect</groupId>
			<artifactId>camunda-connect-http-client</artifactId>
		</dependency>

		<dependency>
			<groupId>org.camunda.connect</groupId>
			<artifactId>camunda-connect-soap-http-client</artifactId>
		</dependency>

		<dependency>
			<groupId>org.camunda.bpm</groupId>
			<artifactId>camunda-engine-plugin-connect</artifactId>
		</dependency>

		<dependency>
			<groupId>org.camunda.template-engines</groupId>
			<artifactId>camunda-template-engines-freemarker</artifactId>
		</dependency>

		<dependency>
			<groupId>org.camunda.template-engines</groupId>
			<artifactId>camunda-template-engines-velocity</artifactId>
		</dependency>

	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-war-plugin</artifactId>
				<version>2.3</version>
				<configuration>
					<failOnMissingWebXml>false</failOnMissingWebXml>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>

processes.xml

Summary
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE xml>
<process-application
	xmlns="http://www.camunda.org/schema/1.0/ProcessApplication"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<process-archive name="bankdaten">
		<process-engine>default</process-engine>
		<properties>
			<property name="isDeleteUponUndeploy">false</property>
			<property name="isScanForProcessDefinitions">true</property>
		</properties>
	</process-archive>
</process-application>

Thanks in advance !

@Gigli0neiric refer this post for configuration of spin plugin.

Dependency missing when using camunda-spin-dataformat-json-jackson (SPIN)

@aravindhrs
If i adding the dependencies:

        <dependency>
 			<groupId>org.camunda.spin</groupId>
 			<artifactId>camunda-spin-core</artifactId>
 		</dependency>
 
 		<dependency>
 			<groupId>org.camunda.spin</groupId>
 			<artifactId>camunda-spin-dataformat-all</artifactId>
 		</dependency>
 
 		<dependency>
 			<groupId>org.camunda.bpm</groupId>
 			<artifactId>camunda-engine-plugin-spin</artifactId>
 		</dependency>

This error occurs: