Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This page walks you through the development of a complete sample application. It includes the following sections:

...

Now we want to enable JMS transport, since this service will communicate via JMS transport. To enable this, we need to add the following block to services.xml under /src/main/resources/META-INF.

Code Block
languagehtml/xml
<transports>
 

...

  

...

<transport>jms</transport>
</transports>

Now your services.xml will look like below.

New Server Runtime

...