/*************************************************************************
*
* ADOBE CONFIDENTIAL
* __________________
*
* [2002] - [2007] Adobe Systems Incorporated
* All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any. The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated
* and its suppliers and may be covered by U.S. and Foreign Patents,
* patents in process, and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
*************************************************************************/
package runtimeconfig.components;
/*
* The purpose of this class is create a JMS destination without a connection factory.
* It is used in the qa-manual messaging\simpleJMSMessagingNoConnFactoryTest.
*/
import flex.messaging.MessageDestination;
import flex.messaging.config.ConfigMap;
import flex.messaging.config.NetworkSettings;
import flex.messaging.config.ServerSettings;
import flex.messaging.config.ThrottleSettings;
import flex.messaging.services.AbstractBootstrapService;
import flex.messaging.services.MessageService;
import flex.messaging.services.messaging.adapters.JMSAdapter;
import flex.messaging.services.messaging.adapters.JMSSettings;
public class RuntimeJMSDestinationNoConnFact extends AbstractBootstrapService
{
// Create destination during server startup
public void initialize(String id, ConfigMap properties)
{
MessageService service = (MessageService) getMessageBroker().getService("message-service");
String dest = "JMSDestNoConnFact_startup";
createDestination(dest, service);
}
/*
* The following static properties are implemented below for the
* JMSDestNoConnFact_startup and runtime destinations.
*
<properties>
<network>
<!-- idle time in minutes before a subscriber will be unsubscribed -->
<!-- '0' means don't force subscribers to unsubscribe automatically -->
<session-timeout>0</session-timeout>
<!-- throttling can be set up destination-wide as well as -->
<!-- per-client: the inbound policy may be ERROR or IGNORE -->
<!-- and the outbound policy may be ERROR, IGNORE, or REPLACE -->
<!-- all throttle frequency values are considered the maximum -->
<!-- allowed messages per second -->
<throttle-inbound max-frequency="0" policy="ERROR"></throttle-inbound>
<throttle-outbound max-frequency="0" policy="REPLACE"></throttle-outbound>
</network>
<server>
<durable>false</durable>
</server>
<jms>
<!-- whether the adapter is performing topic (pub/sub) or queue (point-to-point) messaging -->
<!-- optional element, defaults to Topic -->
<destination-type>Topic</destination-type>
<!-- the javax.jms.Message type which the adapter should use for this destination -->
<message-type>javax.jms.TextMessage</message-type>
<!-- name of the JMS connection factory in JNDI -->
<connection-factory>jms/flex/TopicConnectionFactory</connection-factory>
<!-- name of the destination in JNDI -->
<destination-jndi-name>jms/topic/flex/simpletopic</destination-jndi-name>
<!-- name of the destination in JMS -->
<!-- optional element, defaults to the destination id -->
<destination-name>FlexTopic</destination-name>
<!-- the JMS DeliveryMode for producers -->
<delivery-mode>NON_PERSISTENT</delivery-mode>
<!-- JMS priority for messages sent by Flash producers -->
<message-priority>DEFAULT_PRIORITY</message-priority>
<!-- the JMS message acknowledgement mode -->
<acknowledge-mode>AUTO_ACKNOWLEDGE</acknowledge-mode>
<!-- the JMS session transaction mode -->
<transacted-sessions>false</transacted-sessions>
</jms>
</properties>
<channels>
<channel ref="qa-rtmp-ac"></channel>
<channel ref="qa-polling-amf"></channel>
</channels>
<adapter ref="jms"></adapter>
*/
private MessageDestination createDestination(String id, MessageService messageService)
{
MessageDestination msgDest;
msgDest = (MessageDestination)messageService.createDestination(id);
// <network>
NetworkSettings ns = new NetworkSettings();
ns.setSubscriptionTimeoutMinutes(0);
ThrottleSettings ts = new ThrottleSettings();
ts.setIncomingClientFrequency(0);
ts.setInboundPolicy(ThrottleSettings.Policy.ERROR);
ts.setOutgoingClientFrequency(0);
ts.setOutboundPolicy(ThrottleSettings.Policy.IGNORE);
ns.setThrottleSettings(ts);
msgDest.setNetworkSettings(ns);
// <server>
ServerSettings ss = new ServerSettings();
ss.setDurable(false);
msgDest.setServerSettings(ss);
// <channels>
msgDest.addChannel("qa-polling-amf");
//Properties that appear in the destination above must "really" be set in a JMS adapter
JMSAdapter adapter = new JMSAdapter();
adapter.setId("jms");
// Use JMSSettings object for the <jms> properties above
JMSSettings js = new JMSSettings();
js.setDestinationType("Topic");
js.setMessageType("javax.jms.TextMessage");
//js.setConnectionFactory("java:comp/env/jms/flex/TopicConnectionFactory");
js.setDestinationJNDIName("java:comp/env/jms/topic/flex/simpletopic");
js.setDeliveryMode("NON_PERSISTENT");
js.setMessagePriority(javax.jms.Message.DEFAULT_PRIORITY);
js.setAcknowledgeMode("AUTO_ACKNOWLEDGE");
adapter.setJMSSettings(js);
adapter.getJMSSettings();
adapter.setDestination(msgDest);
return msgDest;
}
// Create another destination after server startup: notice that it must be explicitly started
public void start()
{
MessageService service = (MessageService) getMessageBroker().getService("message-service");
String id = "JMSDestNoConnFact_runtime";
MessageDestination destination = createDestination(id, service);
destination.start();
}
// No-op.
public void stop()
{
}
}