Jboss-ejb-client.xml: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 10: Line 10:


jboss-ejb-client.xml is a deployment descriptor to be included with server deployment artifacts. Equivalent functionality for standalone EJB clients is provided by the [[Jboss-ejb-client.properties|jboss-ejb-client.properties]] configuration file.
jboss-ejb-client.xml is a deployment descriptor to be included with server deployment artifacts. Equivalent functionality for standalone EJB clients is provided by the [[Jboss-ejb-client.properties|jboss-ejb-client.properties]] configuration file.
=Location=


=Example=
=Example=

Revision as of 17:14, 23 March 2017

Internal

Overview

jboss-ejb-client.xml is a JBoss-specific deployment descriptor to be included within artifacts deployed on JBoss server instances, which contains configuration that will be used to setup an EJB client context for that deployment. For more details about the EJB client context see:

EJB Client Context

jboss-ejb-client.xml is a deployment descriptor to be included with server deployment artifacts. Equivalent functionality for standalone EJB clients is provided by the jboss-ejb-client.properties configuration file.

Location

Example

<jboss-ejb-client xmlns:xsi="urn:jboss:ejb-client:1.2" xsi:noNamespaceSchemaLocation="jboss-ejb-client_1_2.xsd">
  <client-context>
    <ejb-receivers>
      <remoting-ejb-receiver outbound-connection-ref="remote-ejb-connection-1"/>
      <remoting-ejb-receiver outbound-connection-ref="remote-ejb-connection-2"/>
    </ejb-receivers>
  </client-context>
</jboss-ejb-client>