<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="https://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    jBPM Persistence: Object unmarshalling with Drools accumulate
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/jasonjho">Jason J</a> in <i>jBPM</i> - <a href="https://community.jboss.org/message/773261#773261">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Environment: Drools 5.3.1 + jBPM5.2</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I am using a custom ObjectMarshallingStrategy when using jBPM persistence b/c I am unable to serialize the Facts that are inserted into the working memory.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>To do this, I am plugging in a custom strategy on the persistence environment as such:</p><pre class="jive-pre"><code class="jive-code">
env.set(EnvironmentName.OBJECT_MARSHALLING_STRATEGIES, new ObjectMarshallingStrategy[] {
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; new MyResolverStrategy(...),
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; new JPAPlaceholderResolverStrategy(persistenceEnv),
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; new SerializablePlaceholderResolverStrategy(ClassObjectMarshallingStrategyAcceptor.DEFAULT)
&#160;&#160;&#160;&#160;&#160;&#160;&#160; });
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I also have a rule in the ksession that is used to trigger some events in the jBPM workflow.&#160; This rule uses the "collect" feature of Drools and it accumulates Facts until a condition is met.</p><pre class="jive-pre"><code class="jive-code">
$currentApprovals: List(size &gt;= 3) from collect(Approval() from $document.getCurrentApprovals())
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I am getting the following exception</p><pre class="jive-pre"><code class="jive-code">
java.io.OptionalDataException: null
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1282) ~[na:1.6.0_31]
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350) ~[na:1.6.0_31]
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.drools.marshalling.impl.InputMarshaller.readLeftTuple(InputMarshaller.java:714) ~[drools-core-5.3.1.Final-csi.jar:5.3.1.Final]
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.drools.marshalling.impl.InputMarshaller.readLeftTuple(InputMarshaller.java:619) ~[drools-core-5.3.1.Final-csi.jar:5.3.1.Final]
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.drools.marshalling.impl.InputMarshaller.readLeftTuples(InputMarshaller.java:584) ~[drools-core-5.3.1.Final-csi.jar:5.3.1.Final]
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.drools.marshalling.impl.InputMarshaller.readFactHandles(InputMarshaller.java:433) ~[drools-core-5.3.1.Final-csi.jar:5.3.1.Final]
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.drools.marshalling.impl.InputMarshaller.readSession(InputMarshaller.java:266) ~[drools-core-5.3.1.Final-csi.jar:5.3.1.Final]
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.drools.marshalling.impl.InputMarshaller.readSession(InputMarshaller.java:196) ~[drools-core-5.3.1.Final-csi.jar:5.3.1.Final]
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.drools.marshalling.impl.DefaultMarshaller.unmarshall(DefaultMarshaller.java:93) ~[drools-core-5.3.1.Final-csi.jar:5.3.1.Final]
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.drools.persistence.SessionMarshallingHelper.loadSnapshot(SessionMarshallingHelper.java:91) ~[drools-jbpm-persistence-jpa-5.3.1.Final-csi.jar:5.3.1.Final]
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;... 26 common frames omitted
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Looking at this code, I see</p><pre class="jive-pre"><code class="jive-code">
case NodeTypeEnums.AccumulateNode: {
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; // accumulate nodes generate new facts on-demand and need special procedures when de-serializing from persistent storage
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; AccumulateMemory memory = (AccumulateMemory) context.wm.getNodeMemory( (BetaNode) sink );
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; memory.betaMemory.getLeftTupleMemory().add( parentLeftTuple );

&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; readBehaviors( (BetaNode) sink,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; memory.betaMemory,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; context );

&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; AccumulateContext accctx = new AccumulateContext();
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; parentLeftTuple.setObject( accctx );

&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; // first we de-serialize the generated fact handle
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; InternalFactHandle handle = readFactHandle( context );
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; accctx.result = new RightTuple( handle,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; (RightTupleSink) sink );

&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; // then we de-serialize the associated accumulation context
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; accctx.context = (Serializable[]) stream.readObject();
... 
...
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>It looks like the last line above is doing some deserializing.&#160; I am not familiar with this lower level code, but shouldn't this be using the ObjectMarshallingStrategy?&#160; How will the objects be able to deserialize correctly if I am relying on my own strategy to resolve facts?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Any help would be appreciated!!</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/773261#773261">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in jBPM at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>