Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipselink-users] Null fields from Remote EJB

Hi John,

Off the top of my head, when data come from @Remote ejbs it is serialized and de-serialized, thus loosing its persistence context. So if you had anything lazy-loaded, it will work with @Local but would fail with @Remote.

--Michael

On Tue, Sep 15, 2009 at 12:56 AM, John Arevalo <johnarevalo@xxxxxxxxx> wrote:
Hi list,

some days ago I was working with @Local EJB and use it from same ear without problems.

Creating a @Remote EJB interface and invoking myFacade Methods entity is created in "find"[1] method, but in return value all its attributes has null values. My Entity class is serializable, what can I do to solve this issue?

this is my piece of code.
[1]http://pastebin.com/m27dc24d2

Thanks for your replies.


--
John Arévalo
GNU/Linux User #443701
http://counter.li.org/

_______________________________________________
eclipselink-users mailing list
eclipselink-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/eclipselink-users



Back to the top