<%@ taglib uri="http://jakarta.apache.org/taglibs/jms-1.0" prefix="jms" %> Send Message Tool <% String connection = request.getParameter( "connection" ); if ( connection == null ) { connection = "topic"; } String destination = request.getParameter( "destination" ); if ( destination == null ) { destination = ""; } String text = request.getParameter( "text" ); if ( text == null ) { text = ""; } %>

Send JMS Message

Enter a text message to send

Connection name:
Destination:
Message text:

<% if (connection.length() > 0 && destination.length() > 0 ) { %>

Sent message on connection <%= connection %> and destination <%= destination %> with the following contents

<%= text %>

<% } %>