On 10/20/06, Jeff Butler <[EMAIL PROTECTED]> wrote:
I agree with Larry - this is silly.
However, it should work. I think the issue is all the session stuff.
openSession starts a different session - so you're doing transactional work
in one session, and executing queries in another session. Remove the the
call to openSession, then just do the transactional calls on the sqlMap
itself. There is hardly ever a reason to do openSession (which starts a
DIFFERENT session than the one used by the other SqlMapClient calls).
Also - you don't need the CDATA tags. It's not causing the problem, but
it's a bad habit to get into.
Jeff
I did changes you told me and it´s working ok.
Thanks a lot.
J