Hi,
I am created a small test process where I defined a formkey and 2 string form properties to the user task.
Then published in an app and wanted to start the process, but got an Exception
————————————
27-Jun-2016 18:22:59.991 SEVERE [http-apr-8080-exec-10] org.apache.catalina.core.StandardWrapperValve.invoke Servlet.service() for servlet [appDispatcher] in context with path [/activiti-app] threw exception [Request processing failed; nested exception is com.google.common.util.concurrent.UncheckedExecutionException: java.lang.NumberFormatException: For input string: "hr"] with root cause
java.lang.NumberFormatException: For input string: "hr"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Long.parseLong(Long.java:441)
at java.lang.Long.valueOf(Long.java:540)
at com.activiti.service.runtime.FormStoreServiceImpl$1.load(FormStoreServiceImpl.java:74)
at com.activiti.service.runtime.FormStoreServiceImpl$1.load(FormStoreServiceImpl.java:71)
at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524)
at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317)
at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280)
at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195)
at com.google.common.cache.LocalCache.get(LocalCache.java:3934)
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938)
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821)
at com.activiti.service.runtime.FormStoreServiceImpl.getForm(FormStoreServiceImpl.java:85)
—————————————————–
So there is some NumberFormatException in the log, but both of my form properties are string.
Do I understand something wrong?
Thanx
Sandor