4 Replies Latest reply on Apr 18, 2013 5:38 AM by sudipsand

    @Connector Definition and Metadata

    sudipsand

      When adding the following @Connector specification with the ResourceAdapter class, getting an error "IJ010075: The resource adapter metadata must contain either an outbound or inbound configuration". But if we add only @Connector without any metadata, if works fine.

       

      This gives the above highlighted error:

      ===============================

      @Connector(

                 description = "Sample Inbound Diameter RA",

                 displayName = "InboundResourceAdapter",

                 vendorName = "sample",

                 eisType = "Diameter Signal",

                 version = "1.0",

                 reauthenticationSupport = false,

                 transactionSupport = TransactionSupport.TransactionSupportLevel.NoTransaction)

       

      public class DiameterResourceAdapter implements ResourceAdapter

      { ... }

       

      But the following works:

      ===============================

      @Connector

      public class DiameterResourceAdapter implements ResourceAdapter

      { ... }

       

      Please help me to understand the issue.