Hi All,

I found a post on this forum that had a solution that I could have sworn I
tried yesterday (on different machine). I trried this and now it works:

  IUnmarshallingContext ucontext = factory.createUnmarshallingContext();
  ucontext.setDocument(bis, "UTF-8");
  ucontext.setUserContext(obj);
  ucontext.unmarshallElement();

instead of:

  IUnmarshallingContext ucontext = factory.createUnmarshallingContext();
  ucontext.setUserContext(obj);
  ucontext.unmarshallDocument(bis, "UTF-8");

Thanks
Jorge



Quecas wrote:
> 
> Hi Everyone,
> 
> I am experincing, which I tyhink is odd behaviour in a pre-set method
> (collection element). The IMarshallingContext passed the method is always
> null.
> 
> Before unmarshalling a document I call setUserContext(obj) and I have
> verified that "obj" is NOT null.
> 
> The class where I am trying to retrieve "obj" is a "fake" container for a
> very large collection which does not have a name property since it is a
> repeating sequence - does this make any difference?
> 
> It seems that somewhere, context.reset() is being called and I have
> verified that it is not in my code.
> 
> P.S.
> what are best practices for passing around non-static data?
> 
> Thanks
> Jorge
> 

-- 
View this message in context: 
http://www.nabble.com/Null-IMarshallingContext-in-pre-set-method-tp19720296p19720546.html
Sent from the jibx-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
jibx-users mailing list
jibx-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jibx-users

Reply via email to