Interstage Application Server/Interstage Web Server J2EE ユーザーズガイド
目次 索引 前ページ次ページ

第6部 JMS編> 第24章 JMSアプリケーションの開発> 24.2 作成方法> 24.2.1 Publish/SubscribeメッセージングモデルとPoint-To-Point メッセージングモデル

24.2.1.1 MessageProducerの作成

 MessageProducerは、イベントチャネルにメッセージを送信します。MessageProducerがイベントチャネルにメッセージを送信する手続き例と処理の流れを以下に説明します。

[MessageProducer]

import javax.jms.*;
import javax.naming.*;

public class Producer {
  public static void main( String[] args) {
    Connection connection = null;
    ...
    try {
      java.util.Hashtable env = new java.util.Hashtable( );
      env.put ( javax.naming.Context.INITIAL_CONTEXT_FACTORY ,
             "com.fujitsu.interstage.j2ee.jndi.InitialContextFactoryForClient" );
      InitialContext initialContext = new InitialContext(env);                     /* 1 */
      ConnectionFactory connectionFactory = (ConnectionFactory)
          initialContext.lookup("java:comp/env/jms/ConnectionFactory");            /* 2 */
      Destination destination = (Destination)
          initialContext.lookup("java:comp/env/jms/Destinaiton");                  /* 3 */
      connection = connectionFactory.createConnection();                           /* 4 */
      Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); /* 5 */
      MessageProducer messageProducer = session.createProducer(destination);       /* 6 */
      TextMessage Message = session.createTextMessage( );
      Message.setText( "Message" );
      messageProducer.send(Message);                                               /* 7 */
    } catch( Exception e ) {
        ...
    }
    finally {
      if( null != connection ) {
        try {
          connection.close();                                                      /* 8 */
        }
        catch( Exception e ) {
          ...
        }
      }
    }
  }
}

  1. JNDIの開始コンテキストを構築します。
  2. ConnectionFactoryオブジェクトを取得します(JNDI名が“ConnectionFactory”の場合)。
  3. Destinationオブジェクトを取得します(JNDI名が“Destination”の場合)。
  4. Connectionを作成します。
  5. Sessionを作成します。
  6. MessageProducerを作成します。
  7. メッセージを送信します(MessageタイプがTextMessageで送信メッセージが“Message”の場合)。
  8. Connectionをクローズします。


 JNDIの開始コンテキスト構築時の環境プロパティの指定については、“J2EEアプリケーションクライアント”を参照してください。


目次 索引 前ページ次ページ

Copyright 2008 FUJITSU LIMITED