Author name: Manuel Bogner

EJB Standalone Client JBoss AS7.1.1

Creating a standalone EJB-client application works like the following. If you use maven, just include the following dependency: <dependency> <groupId>org.jboss.as</groupId> <artifactId>jboss-as-ejb-client-bom</artifactId> <type>pom</type> <version>7.1.1.Final</version> </dependency> Then you need a file jboss-ejb-client.properties in your classpath. Here an example: remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=false remote.connections=default remote.connection.default.connect.options.org.xnio.Options.SASL_POLICY_NOANONYMOUS=true remote.connection.default.host=localhost remote.connection.default.port=4447 remote.connection.default.username=username remote.connection.default.password=password If you haven’t changed default configuration the username+passwort are added with the

EJB Standalone Client JBoss AS7.1.1 Read More »