0 Replies Latest reply on Aug 13, 2009 5:42 PM by acci

    Seam Remoting with multiple data sources

    acci

      I have 2 data sources. Does the current implementation of Seam Remoting support this ?
      I get an error when trying to access the 'Job' entity, defined in the 'coredb' persistence unit:
         


      <s:remote include="JobManager,Job" />
      
      [Interface Generator] Component not found: [Job]
      [Remoting] Error
      




      The same code worked perfectly fine when using only one data source.
      I was able to access entities from the data source using:



        @PersistenceContext(unitName = "coredb", type=PersistenceContextType.EXTENDED)
        private EntityManager em;
      




      in the JobManager SFSB.