There is a bug in the BER and 1.2 of OpenBD that is causing this:

http://code.google.com/p/openbluedragon/issues/detail?id=205

Somehow there was a change of behavior from 1.1 of OpenBD. You can patch your copy of Mach-II temporarily until this issue is fixed in OpenBD by changing line 380:

<cfif pre.hashCode() NEQ post.hashCode()>

With:

<cfif post.equals(pre)>

In OpenBD 1.1 and lowever, the equals() method did not work and why we used the hashCode(). For some reason when equals() was implement (from a request of mine), the hashCode() was broken.

I'll be sure to post back here when I hear back about that issue.

Best,
.Peter

Derrick Jackson said the following on 03/03/10 09:15:
Folks,

I am trying to use the Mach-II caching strategy in the following way:

<cache>
<notify listener="questionListener" method="getQuestionsByApplicationUUID" resultArg="questionList"/> <notify listener="answerListener" method="getAnswersToQuestions" resultArg="questionAnswerList" /> <notify listener="answerListener" method="getAnswersByApplicationUUID" resultArg="constituentAnswers"/>
</cache>

However, I get this error when I do: Type: java.lang.NullPointerException || Message: || Detail: || Original Template: /Applications/Tomcat/apache-tomcat-6.0.20/webapps/oamanagev35/MachII/framework/CacheHandler.cfc at line 380

I thought this was strange so I thought I'd send it along.

BTW:  I've already restarted both Tomcat and Apache.
--
You received this message because you are subscribed to Mach-II for CFML list. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/mach-ii-for-coldfusion?hl=en
SVN: http://greatbiztoolsllc.svn.cvsdude.com/mach-ii/
Wiki / Documentation / Tickets: http://greatbiztoolsllc.trac.cvsdude.com/mach-ii/

--
You received this message because you are subscribed to Mach-II for CFML list.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/mach-ii-for-coldfusion?hl=en
SVN: http://greatbiztoolsllc.svn.cvsdude.com/mach-ii/
Wiki / Documentation / Tickets: 
http://greatbiztoolsllc.trac.cvsdude.com/mach-ii/

Reply via email to