[JBoss JIRA] (ELY-1301) Pem.parsePemX509Certificate() hangs on IBM JDK
by Peter Palaga (JIRA)
[ https://issues.jboss.org/browse/ELY-1301?page=com.atlassian.jira.plugin.s... ]
Peter Palaga reassigned ELY-1301:
---------------------------------
Assignee: Peter Palaga
> Pem.parsePemX509Certificate() hangs on IBM JDK
> ----------------------------------------------
>
> Key: ELY-1301
> URL: https://issues.jboss.org/browse/ELY-1301
> Project: WildFly Elytron
> Issue Type: Bug
> Reporter: Peter Palaga
> Assignee: Peter Palaga
>
> Add a test like this to `PemTest`:
> {code}
> @Test
> public void testParsePemX509CertificateCacert() throws Exception {
> URL url = PemTest.class.getResource("/ca/cacert.pem");
> byte[] bytes = Files.readAllBytes(Paths.get(url.toURI()));
> assertNotNull(Pem.parsePemX509Certificate(CodePointIterator.ofUtf8Bytes(bytes)));
> }
> {code}
> Run the test with IBM JDK
> {code}
> export JAVA_HOME=path/to/ibm/java8
>
> $JAVA_HOME/bin/java -version
> java version "1.8.0"
> Java(TM) SE Runtime Environment (build pxa6480sr3fp12-20160919_01(SR3 FP12))
> IBM J9 VM (build 2.8, JRE 1.8.0 Linux amd64-64 Compressed References 20160915_318796 (JIT enabled, AOT enabled)
> J9VM - R28_Java8_SR3_20160915_0912_B318796
> JIT - tr.r14.java.green_20160818_122998
> GC - R28_Java8_SR3_20160915_0912_B318796_CMPRSS
> J9CL - 20160915_318796)
> JCL - 20160914_01 based on Oracle jdk8u101-b13
> mvn clean test -Dtest=PemTest#testParsePemX509CertificateCacert
> {code}
> Expected: The test should pass on IBM JDK just as it passes on Oracle/OpenJDK
> Actual: The test hangs on IBM JDK
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 8 months
[JBoss JIRA] (WFLY-9251) Security context is not thread safe
by charles ghislain (JIRA)
charles ghislain created WFLY-9251:
--------------------------------------
Summary: Security context is not thread safe
Key: WFLY-9251
URL: https://issues.jboss.org/browse/WFLY-9251
Project: WildFly
Issue Type: Bug
Components: Security
Affects Versions: 10.1.0.Final
Environment: Windows, LInux
Reporter: charles ghislain
Assignee: Darran Lofthouse
Attachments: wildflytestauthcontext.zip
Using a custom JAAS login module, we sometimes fail to obtain the authenticated subject from the 'javax.security.auth.Subject.container' policy context. This appear to be related to the worker threads.
See the reproduction steps below. When a wildfly instance attempts to authenticate 500 requests coming simultaneously, a bunch of them fail. If you configure wildfly to only use a single worker thread and a single task thread, this issue disappears.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 8 months
[JBoss JIRA] (WFCORE-3203) WildFlyTestRunner throws NullPointerException during stop intermittently
by Josef Cacek (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3203?page=com.atlassian.jira.plugi... ]
Josef Cacek edited comment on WFCORE-3203 at 8/23/17 8:33 AM:
--------------------------------------------------------------
I was hunting another issue so I did:
{code:bash}
cd testsuite/elytron
i=1; while mvn clean test -Dipv6 -Dcheckstyle.skip -Denforcer.skip -DtestLogToFile=false > /tmp/core-test.log; do echo "Run $((i++)) finished with success"; done;
{code}
And the output was:
{noformat}
Run 1 finished with success
Run 2 finished with success
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
Run 3 finished with success
Run 4 finished with success
Run 5 finished with success
Run 6 finished with success
Run 7 finished with success
Run 8 finished with success
Run 9 finished with success
Run 10 finished with success
Run 11 finished with success
Run 12 finished with success
Run 13 finished with success
Run 14 finished with success
Run 15 finished with success
Run 16 finished with success
Run 17 finished with success
Run 18 finished with success
Run 19 finished with success
Run 20 finished with success
Run 21 finished with success
Run 22 finished with success
Run 23 finished with success
Run 24 finished with success
Run 25 finished with success
Run 26 finished with success
Run 27 finished with success
Run 28 finished with success
Run 29 finished with success
Run 30 finished with success
Run 31 finished with success
Run 32 finished with success
Run 33 finished with success
Run 34 finished with success
Run 35 finished with success
Run 36 finished with success
Run 37 finished with success
Run 38 finished with success
Run 39 finished with success
Run 40 finished with success
Run 41 finished with success
Run 42 finished with success
Run 43 finished with success
Run 44 finished with success
Run 45 finished with success
Run 46 finished with success
Run 47 finished with success
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
Run 48 finished with success
Run 49 finished with success
Run 50 finished with success
Run 51 finished with success
Run 52 finished with success
Run 53 finished with success
Run 54 finished with success
Run 55 finished with success
Run 56 finished with success
Run 57 finished with success
Run 58 finished with success
Fail
{noformat}
Updated: in my original command was {{-Dipv6}} used.
was (Author: jcacek):
I was hunting another issue so I did:
{code:bash}
cd testsuite/elytron
i=1; while mvn clean test -Dcheckstyle.skip -Denforcer.skip -DtestLogToFile=false > /tmp/core-test.log; do echo "Run $((i++)) finished with success"; done;
{code}
And the output was:
{noformat}
Run 1 finished with success
Run 2 finished with success
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
Run 3 finished with success
Run 4 finished with success
Run 5 finished with success
Run 6 finished with success
Run 7 finished with success
Run 8 finished with success
Run 9 finished with success
Run 10 finished with success
Run 11 finished with success
Run 12 finished with success
Run 13 finished with success
Run 14 finished with success
Run 15 finished with success
Run 16 finished with success
Run 17 finished with success
Run 18 finished with success
Run 19 finished with success
Run 20 finished with success
Run 21 finished with success
Run 22 finished with success
Run 23 finished with success
Run 24 finished with success
Run 25 finished with success
Run 26 finished with success
Run 27 finished with success
Run 28 finished with success
Run 29 finished with success
Run 30 finished with success
Run 31 finished with success
Run 32 finished with success
Run 33 finished with success
Run 34 finished with success
Run 35 finished with success
Run 36 finished with success
Run 37 finished with success
Run 38 finished with success
Run 39 finished with success
Run 40 finished with success
Run 41 finished with success
Run 42 finished with success
Run 43 finished with success
Run 44 finished with success
Run 45 finished with success
Run 46 finished with success
Run 47 finished with success
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
Run 48 finished with success
Run 49 finished with success
Run 50 finished with success
Run 51 finished with success
Run 52 finished with success
Run 53 finished with success
Run 54 finished with success
Run 55 finished with success
Run 56 finished with success
Run 57 finished with success
Run 58 finished with success
Fail
{noformat}
> WildFlyTestRunner throws NullPointerException during stop intermittently
> ------------------------------------------------------------------------
>
> Key: WFCORE-3203
> URL: https://issues.jboss.org/browse/WFCORE-3203
> Project: WildFly Core
> Issue Type: Bug
> Components: Test Suite
> Reporter: Josef Cacek
> Assignee: Tomaz Cerar
>
> There seems to be a synchronization issue in the WildFly TestRunner ({{Server}} class) in the wildfly-core testuite.
> I'm getting a {{NullPointerException}} intermittently during server stop:
> {noformat}
> Exception in thread "Thread-5" java.lang.NullPointerException
> at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
> at java.lang.Thread.run(Thread.java:748)
> {noformat}
> This is a testsuite issue which doesn't affect the test results themselves. Nevertheless it would be better to have clean runs without NPEs.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 8 months
[JBoss JIRA] (WFCORE-3203) WildFlyTestRunner throws NullPointerException during stop intermittently
by Josef Cacek (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3203?page=com.atlassian.jira.plugi... ]
Josef Cacek commented on WFCORE-3203:
-------------------------------------
I was hunting another issue so I did:
{code:bash}
cd testsuite/elytron
i=1; while mvn clean test -Dcheckstyle.skip -Denforcer.skip -DtestLogToFile=false > /tmp/core-test.log; do echo "Run $((i++)) finished with success"; done;
{code}
And the output was:
{noformat}
Run 1 finished with success
Run 2 finished with success
Run 3 finished with success
Run 4 finished with success
^Cjcacek@jcacek:~/projects/wildfly/wildfly-core/testsuite/elytron$ i=1; while wfly-test -Dipv6 > /tmp/core-test.log; do echo "Run $((i++)) finished with success"; done; echo Fail;
Run 1 finished with success
Run 2 finished with success
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
Run 3 finished with success
Run 4 finished with success
Run 5 finished with success
Run 6 finished with success
Run 7 finished with success
Run 8 finished with success
Run 9 finished with success
Run 10 finished with success
Run 11 finished with success
Run 12 finished with success
Run 13 finished with success
Run 14 finished with success
Run 15 finished with success
Run 16 finished with success
Run 17 finished with success
Run 18 finished with success
Run 19 finished with success
Run 20 finished with success
Run 21 finished with success
Run 22 finished with success
Run 23 finished with success
Run 24 finished with success
Run 25 finished with success
Run 26 finished with success
Run 27 finished with success
Run 28 finished with success
Run 29 finished with success
Run 30 finished with success
Run 31 finished with success
Run 32 finished with success
Run 33 finished with success
Run 34 finished with success
Run 35 finished with success
Run 36 finished with success
Run 37 finished with success
Run 38 finished with success
Run 39 finished with success
Run 40 finished with success
Run 41 finished with success
Run 42 finished with success
Run 43 finished with success
Run 44 finished with success
Run 45 finished with success
Run 46 finished with success
Run 47 finished with success
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
Run 48 finished with success
Run 49 finished with success
Run 50 finished with success
Run 51 finished with success
Run 52 finished with success
Run 53 finished with success
Run 54 finished with success
Run 55 finished with success
Run 56 finished with success
Run 57 finished with success
Run 58 finished with success
Fail
{noformat}
> WildFlyTestRunner throws NullPointerException during stop intermittently
> ------------------------------------------------------------------------
>
> Key: WFCORE-3203
> URL: https://issues.jboss.org/browse/WFCORE-3203
> Project: WildFly Core
> Issue Type: Bug
> Components: Test Suite
> Reporter: Josef Cacek
> Assignee: Tomaz Cerar
>
> There seems to be a synchronization issue in the WildFly TestRunner ({{Server}} class) in the wildfly-core testuite.
> I'm getting a {{NullPointerException}} intermittently during server stop:
> {noformat}
> Exception in thread "Thread-5" java.lang.NullPointerException
> at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
> at java.lang.Thread.run(Thread.java:748)
> {noformat}
> This is a testsuite issue which doesn't affect the test results themselves. Nevertheless it would be better to have clean runs without NPEs.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 8 months
[JBoss JIRA] (WFCORE-3203) WildFlyTestRunner throws NullPointerException during stop intermittently
by Josef Cacek (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3203?page=com.atlassian.jira.plugi... ]
Josef Cacek edited comment on WFCORE-3203 at 8/23/17 8:08 AM:
--------------------------------------------------------------
I was hunting another issue so I did:
{code:bash}
cd testsuite/elytron
i=1; while mvn clean test -Dcheckstyle.skip -Denforcer.skip -DtestLogToFile=false > /tmp/core-test.log; do echo "Run $((i++)) finished with success"; done;
{code}
And the output was:
{noformat}
Run 1 finished with success
Run 2 finished with success
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
Run 3 finished with success
Run 4 finished with success
Run 5 finished with success
Run 6 finished with success
Run 7 finished with success
Run 8 finished with success
Run 9 finished with success
Run 10 finished with success
Run 11 finished with success
Run 12 finished with success
Run 13 finished with success
Run 14 finished with success
Run 15 finished with success
Run 16 finished with success
Run 17 finished with success
Run 18 finished with success
Run 19 finished with success
Run 20 finished with success
Run 21 finished with success
Run 22 finished with success
Run 23 finished with success
Run 24 finished with success
Run 25 finished with success
Run 26 finished with success
Run 27 finished with success
Run 28 finished with success
Run 29 finished with success
Run 30 finished with success
Run 31 finished with success
Run 32 finished with success
Run 33 finished with success
Run 34 finished with success
Run 35 finished with success
Run 36 finished with success
Run 37 finished with success
Run 38 finished with success
Run 39 finished with success
Run 40 finished with success
Run 41 finished with success
Run 42 finished with success
Run 43 finished with success
Run 44 finished with success
Run 45 finished with success
Run 46 finished with success
Run 47 finished with success
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
Run 48 finished with success
Run 49 finished with success
Run 50 finished with success
Run 51 finished with success
Run 52 finished with success
Run 53 finished with success
Run 54 finished with success
Run 55 finished with success
Run 56 finished with success
Run 57 finished with success
Run 58 finished with success
Fail
{noformat}
was (Author: jcacek):
I was hunting another issue so I did:
{code:bash}
cd testsuite/elytron
i=1; while mvn clean test -Dcheckstyle.skip -Denforcer.skip -DtestLogToFile=false > /tmp/core-test.log; do echo "Run $((i++)) finished with success"; done;
{code}
And the output was:
{noformat}
Run 1 finished with success
Run 2 finished with success
Run 3 finished with success
Run 4 finished with success
^Cjcacek@jcacek:~/projects/wildfly/wildfly-core/testsuite/elytron$ i=1; while wfly-test -Dipv6 > /tmp/core-test.log; do echo "Run $((i++)) finished with success"; done; echo Fail;
Run 1 finished with success
Run 2 finished with success
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
Run 3 finished with success
Run 4 finished with success
Run 5 finished with success
Run 6 finished with success
Run 7 finished with success
Run 8 finished with success
Run 9 finished with success
Run 10 finished with success
Run 11 finished with success
Run 12 finished with success
Run 13 finished with success
Run 14 finished with success
Run 15 finished with success
Run 16 finished with success
Run 17 finished with success
Run 18 finished with success
Run 19 finished with success
Run 20 finished with success
Run 21 finished with success
Run 22 finished with success
Run 23 finished with success
Run 24 finished with success
Run 25 finished with success
Run 26 finished with success
Run 27 finished with success
Run 28 finished with success
Run 29 finished with success
Run 30 finished with success
Run 31 finished with success
Run 32 finished with success
Run 33 finished with success
Run 34 finished with success
Run 35 finished with success
Run 36 finished with success
Run 37 finished with success
Run 38 finished with success
Run 39 finished with success
Run 40 finished with success
Run 41 finished with success
Run 42 finished with success
Run 43 finished with success
Run 44 finished with success
Run 45 finished with success
Run 46 finished with success
Run 47 finished with success
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
Run 48 finished with success
Run 49 finished with success
Run 50 finished with success
Run 51 finished with success
Run 52 finished with success
Run 53 finished with success
Run 54 finished with success
Run 55 finished with success
Run 56 finished with success
Run 57 finished with success
Run 58 finished with success
Fail
{noformat}
> WildFlyTestRunner throws NullPointerException during stop intermittently
> ------------------------------------------------------------------------
>
> Key: WFCORE-3203
> URL: https://issues.jboss.org/browse/WFCORE-3203
> Project: WildFly Core
> Issue Type: Bug
> Components: Test Suite
> Reporter: Josef Cacek
> Assignee: Tomaz Cerar
>
> There seems to be a synchronization issue in the WildFly TestRunner ({{Server}} class) in the wildfly-core testuite.
> I'm getting a {{NullPointerException}} intermittently during server stop:
> {noformat}
> Exception in thread "Thread-5" java.lang.NullPointerException
> at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
> at java.lang.Thread.run(Thread.java:748)
> {noformat}
> This is a testsuite issue which doesn't affect the test results themselves. Nevertheless it would be better to have clean runs without NPEs.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 8 months
[JBoss JIRA] (WFCORE-3203) WildFlyTestRunner throws NullPointerException during stop intermittently
by Tomaz Cerar (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3203?page=com.atlassian.jira.plugi... ]
Tomaz Cerar commented on WFCORE-3203:
-------------------------------------
how do I reproduce it? does it happen for some specific test or all tests in general?
> WildFlyTestRunner throws NullPointerException during stop intermittently
> ------------------------------------------------------------------------
>
> Key: WFCORE-3203
> URL: https://issues.jboss.org/browse/WFCORE-3203
> Project: WildFly Core
> Issue Type: Bug
> Components: Test Suite
> Reporter: Josef Cacek
> Assignee: Tomaz Cerar
>
> There seems to be a synchronization issue in the WildFly TestRunner ({{Server}} class) in the wildfly-core testuite.
> I'm getting a {{NullPointerException}} intermittently during server stop:
> {noformat}
> Exception in thread "Thread-5" java.lang.NullPointerException
> at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
> at java.lang.Thread.run(Thread.java:748)
> {noformat}
> This is a testsuite issue which doesn't affect the test results themselves. Nevertheless it would be better to have clean runs without NPEs.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 8 months
[JBoss JIRA] (WFCORE-3203) WildFlyTestRunner throws NullPointerException during stop intermittently
by Josef Cacek (JIRA)
Josef Cacek created WFCORE-3203:
-----------------------------------
Summary: WildFlyTestRunner throws NullPointerException during stop intermittently
Key: WFCORE-3203
URL: https://issues.jboss.org/browse/WFCORE-3203
Project: WildFly Core
Issue Type: Bug
Components: Test Suite
Reporter: Josef Cacek
Assignee: Tomaz Cerar
There seems to be a synchronization issue in the WildFly TestRunner ({{Server}} class) in the wildfly-core testuite.
I'm getting a {{NullPointerException}} intermittently during server stop:
{noformat}
Exception in thread "Thread-5" java.lang.NullPointerException
at org.wildfly.core.testrunner.Server.lambda$stop$0(Server.java:205)
at java.lang.Thread.run(Thread.java:748)
{noformat}
This is a testsuite issue which doesn't affect the test results themselves. Nevertheless it would be better to have clean runs without NPEs.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 8 months
[JBoss JIRA] (DROOLS-1709) KieServicesException: Error while deserializing data received from server!
by Nicolae Turcan (JIRA)
Nicolae Turcan created DROOLS-1709:
--------------------------------------
Summary: KieServicesException: Error while deserializing data received from server!
Key: DROOLS-1709
URL: https://issues.jboss.org/browse/DROOLS-1709
Project: Drools
Issue Type: Bug
Components: kie server
Affects Versions: 7.1.0.Final
Environment: - Wildfly 10.0.0.Final.
- Kie-server and kie-workbench 7.1.0 FINAL.
- Drools 7.1.0 FINAL.
- Java 8.
- joda-time 2.9.9.
- Oracle Linux.
Reporter: Nicolae Turcan
Assignee: Edson Tirelli
Hello,
I'm trying to make working drools 7.1.0 FINAL but I'm getting *unmarshalling input error* when I'm sending an object with a *joda DateTime* attribute to kie-server. Seems like a bug while serializing/deserializing datetime object to json.
Can someone help me please?
org.kie.server.api.exception.KieServicesException: Error while deserializing data received from server!
at org.kie.server.client.impl.AbstractKieServicesClientImpl.deserialize(AbstractKieServicesClientImpl.java:592)
at org.kie.server.client.impl.AbstractKieServicesClientImpl.makeHttpPostRequestAndCreateServiceResponse(AbstractKieServicesClientImpl.java:286)
at org.kie.server.client.impl.AbstractKieServicesClientImpl.makeHttpPostRequestAndCreateServiceResponse(AbstractKieServicesClientImpl.java:264)
at org.kie.server.client.impl.RuleServicesClientImpl.executeCommandsWithResults(RuleServicesClientImpl.java:66)
at kettle.resources.KieServerClient.fireKettleRules(KieServerClient.java:135)
at kettle.application.NegocioBean.aplicarReglas(NegocioBean.java:102)
at kettle.services.KettleService.recieveDataJson(KettleService.java:72)
at KettleTester.main(KettleTester.java:37)
Caused by: org.kie.server.api.marshalling.MarshallingException: Error unmarshalling input
at org.kie.server.api.marshalling.json.JSONMarshaller.unmarshall(JSONMarshaller.java:279)
at org.kie.server.client.impl.AbstractKieServicesClientImpl.deserialize(AbstractKieServicesClientImpl.java:590)
... 7 more
Caused by: com.fasterxml.jackson.databind.JsonMappingException: Can not construct instance of org.joda.time.Chronology, problem: abstract types either need to be mapped to concrete types, have custom deserializer, or be instantiated with additional type information
at [Source: {
"type" : "SUCCESS",
"msg" : "Container DEV successfully called.",
"result" : {
"execution-results" : {
"results" : [ {
"value" : [{
"kettle.model.MensajesError" : {
"tipoError" : null
}
},{
"tws.hibernate.mappings.TmOt" : {
"id" : 150078,
"finishedAt" : {
"dayOfMonth" : 19,
"year" : 2017,
"era" : 1,
"dayOfYear" : 231,
"dayOfWeek" : 6,
"millisOfDay" : 46800000,
"monthOfYear" : 8,
"hourOfDay" : 13,
"minuteOfHour" : 0,
"secondOfMinute" : 0,
"millisOfSecond" : 0,
"weekOfWeekyear" : 33,
"weekyear" : 2017,
"yearOfEra" : 2017,
"yearOfCentury" : 17,
"centuryOfEra" : 20,
"secondOfDay" : 46800,
"minuteOfDay" : 780,
"millis" : 1503140400000,
"zone" : {
"fixed" : false,
"uncachedZone" : {
"fixed" : false,
"cachable" : true,
"id" : "Europe/Madrid"
},
"id" : "Europe/Madrid"
},
"chronology" : {
"zone" : {
"fixed" : false,
"uncachedZone" : {
"fixed" : false,
"cachable" : true,
"id" : "Europe/Madrid"
},
"id" : "Europe/Madrid"
}
},
"afterNow" : false,
"beforeNow" : true,
"equalNow" : false
},
"startedAt" : {
"dayOfMonth" : 19,
"year" : 2017,
"era" : 1,
"dayOfYear" : 231,
"dayOfWeek" : 6,
"millisOfDay" : 34200000,
"monthOfYear" : 8,
"hourOfDay" : 9,
"minuteOfHour" : 30,
"secondOfMinute" : 0,
"millisOfSecond" : 0,
"weekOfWeekyear" : 33,
"weekyear" : 2017,
"yearOfEra" : 2017,
"yearOfCentury" : 17,
"centuryOfEra" : 20,
"secondOfDay" : 34200,
"minuteOfDay" : 570,
"millis" : 1503127800000,
"zone" : {
"fixed" : false,
"uncachedZone" : {
"fixed" : false,
"cachable" : true,
"id" : "Europe/Madrid"
},
"id" : "Europe/Madrid"
},
"chronology" : {
"zone" : {
"fixed" : false,
"uncachedZone" : {
"fixed" : false,
"cachable" : true,
"id" : "Europe/Madrid"
},
"id" : "Europe/Madrid"
}
},
"afterNow" : false,
"beforeNow" : true,
"equalNow" : false
}
}},
"key" : "orden"
}, {
"value" : {"kettle.model.MensajesError" : {
"tipoError" : null
}},
"key" : "mensaje"
} ],
"facts" : [ {
"value" : {"org.drools.core.common.DefaultFactHandle":{
"external-form" : "0:1:242655221:1872950214:1:DEFAULT:NON_TRAIT:java.util.LinkedHashMap"
}},
"key" : "orden"
}, {
"value" : {"org.drools.core.common.DefaultFactHandle":{
"external-form" : "0:2:1104605608:-2037841024:2:DEFAULT:NON_TRAIT:java.util.LinkedHashMap"
}},
"key" : "mensaje"
} ]
}
}
}; line: 88, column: 8] (through reference chain: org.kie.server.api.model.ServiceResponse["result"]->org.drools.core.runtime.impl.ExecutionResultImpl["results"]->Object[][0]->org.drools.core.xml.jaxb.util.JaxbStringObjectPair["value"]->tws.hibernate.mappings.TmOt["finishedAt"]->org.joda.time.DateTime["chronology"])
at com.fasterxml.jackson.databind.JsonMappingException.from(JsonMappingException.java:148)
at com.fasterxml.jackson.databind.DeserializationContext.instantiationException(DeserializationContext.java:889)
at com.fasterxml.jackson.databind.deser.AbstractDeserializer.deserialize(AbstractDeserializer.java:139)
at com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:520)
at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:95)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:256)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:125)
at com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:520)
at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:95)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:256)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:125)
at com.fasterxml.jackson.databind.ObjectMapper._readValue(ObjectMapper.java:3703)
at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2006)
at org.kie.server.api.marshalling.json.JSONMarshaller$CustomObjectDeserializer.mapObject(JSONMarshaller.java:667)
at com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.deserialize(UntypedObjectDeserializer.java:222)
at com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.mapArray(UntypedObjectDeserializer.java:356)
at com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.deserialize(UntypedObjectDeserializer.java:230)
at com.fasterxml.jackson.databind.deser.std.StdDelegatingDeserializer.deserialize(StdDelegatingDeserializer.java:160)
at com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:520)
at com.fasterxml.jackson.databind.deser.impl.FieldProperty.deserializeAndSet(FieldProperty.java:101)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:256)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:125)
at com.fasterxml.jackson.databind.deser.std.ObjectArrayDeserializer.deserialize(ObjectArrayDeserializer.java:156)
at com.fasterxml.jackson.databind.deser.std.ObjectArrayDeserializer.deserialize(ObjectArrayDeserializer.java:17)
at com.fasterxml.jackson.databind.deser.std.StdDelegatingDeserializer.deserialize(StdDelegatingDeserializer.java:160)
at com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:520)
at com.fasterxml.jackson.databind.deser.impl.FieldProperty.deserializeAndSet(FieldProperty.java:101)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:256)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:125)
at com.fasterxml.jackson.databind.jsontype.impl.AsWrapperTypeDeserializer._deserialize(AsWrapperTypeDeserializer.java:114)
at com.fasterxml.jackson.databind.jsontype.impl.AsWrapperTypeDeserializer.deserializeTypedFromAny(AsWrapperTypeDeserializer.java:64)
at com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.deserializeWithType(UntypedObjectDeserializer.java:289)
at com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:518)
at com.fasterxml.jackson.databind.deser.impl.FieldProperty.deserializeAndSet(FieldProperty.java:101)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:256)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:125)
at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:3731)
at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2724)
at org.kie.server.api.marshalling.json.JSONMarshaller.unmarshall(JSONMarshaller.java:277)
... 8 more
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 8 months