1 Reply Latest reply on Mar 11, 2005 3:24 PM by adrian.brock

    JCA : How to call getWorkManager method

      Hi,

      I read the JCA specification and I test the example (chapter 7) from the JBoss Documentation. I don't understand how start a Work because I don't find the way to call the getWorkManager method.


      I think, there is something that I don't understand ?

      Can you help me?


      Mano.

        • 1. Re: JCA : How to call getWorkManager method

          I think you guys need to understand that this is the JBossJCA forum,
          where is your *JBOSS* issue?

          It is not the I don't understand (can't be bothered reading) the spec forum.
          Go fill up Sun's j2ee forums if you think the spec is unclear.

          This is the only time I'm going to answer this, so I'm going to help the
          search function:

          RESOURCEADAPTER
          WORKMANGER
          DOWORK
          BOOTSTRAPCONTEXT
          WORK

          public class TestResourceAdapter implements ResourceAdapter
          {
           public void start(BootstrapContext ctx) throws ResourceAdapterInternalException
           {
           WorkManager wm = ctx.getWorkManager();
           wm.doWork(new MyWork());
          etc.