forked from oleksiivorobiov/oracle_oci_examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaqjmsdemo04.java
238 lines (207 loc) · 7.9 KB
/
aqjmsdemo04.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/* $Header: aqjmsdemo04.java 05-jun-2007.15:10:23 aatam Exp $ */
/* Copyright (c) 2000, 2007, Oracle. All rights reserved. */
/*
DESCRIPTION
<short description of component this file declares/defines>
PRIVATE CLASSES
<list of private classes defined - with one-line descriptions>
NOTES
<other useful comments, qualifications, etc.>
MODIFIED (MM/DD/YY)
aatam 06/05/07 - password need to be consistent
jleinawe 07/11/05 -
jleinawe 12/20/02 - update instructions
rbhyrava 03/01/02 - use ORAData
rbhyrava 01/09/01 - bug 1419924
rbhyrava 03/16/00 - AQ jms demos
rbhyrava 03/15/00 - AQ JMS demo - Object Type Payload
rbhyrava 03/15/00 - Creation
*/
/**
* @version $Header: aqjmsdemo04.java 05-jun-2007.15:10:23 aatam Exp $
* @author rbhyrava
* @since release specific (what release of product did this appear in)
*/
/***
* This is a sample java file which uses Oracle JMS - Java Messaging Service
* API to Publish/Receive messages to/from topic. The Oracle Type Payload is
* used. Dequeue is based on the Payload content
* This is an Oracle Extention to JMS.
* This demo does the following:
* -- Create a multi-consumer topic with Payload type as EMP
* Refer to aqjmsdemo.sql for definition of EMP and CARS Object Type
definitions
* -- Create a Topic Publisher
* -- Create two durable subscribers based on the Payload content
* -- Publish messages
* -- Receive the messages for both the subscribers
*
* Instructions for setting up and running this demo are found in
* aqjmsREADME.txt.
***/
/* import useful packages */
import oracle.AQ.*;
import oracle.jms.*;
import javax.jms.*;
import java.lang.*;
public class aqjmsdemo04
{
public static void main (String args [])
throws java.sql.SQLException, ClassNotFoundException, JMSException
{
TopicSession tsess = null;
TopicConnectionFactory tcfact=null;
TopicConnection tconn=null;
try
{
if (args.length < 4 )
System.out.println("Usage:java filename [SID] [HOST] [PORT] [DRIVER]");
else {
tcfact = AQjmsFactory.getTopicConnectionFactory(
args[1], args[0], Integer.parseInt(args[2]), args[3]);
tconn = tcfact.createTopicConnection( "jmsuser","JMSUSER");
/* Create a Topic Session */
tsess = tconn.createTopicSession(true, Session.CLIENT_ACKNOWLEDGE);
tconn.start() ;
setupTopic(tsess) ;
publishReceiveMessages(tsess);
tsess.close() ;
tconn.close() ;
System.out.println("End of Demo") ;
}
}
catch (Exception ex)
{
System.out.println("Exception-1: " + ex);
ex.printStackTrace();
}
}
public static void setupTopic(TopicSession tsess) throws Exception
{
AQQueueTableProperty qtprop ;
AQQueueTable qtable;
AQjmsDestinationProperty dprop;
Topic topic;
try {
/* Create Queue Tables */
System.out.println("Creating Queue Table...") ;
/* Drop the queue if already exists */
try {
qtable=((AQjmsSession)tsess).getQueueTable("jmsuser", "jmsadtqueue");
qtable.drop(true);
} catch (Exception e) {} ;
qtprop = new AQQueueTableProperty ("EMP") ;
qtprop.setComment("EMP queue") ;
qtprop.setMultiConsumer(true) ;
qtprop.setCompatible("8.1") ;
qtprop.setPayloadType("JMSUSER.EMP") ;
qtable = ((AQjmsSession)tsess).createQueueTable("JMSUSER",
"JMSADTQUEUE", qtprop) ;
System.out.println ("Creating Topic EMPCARS...");
dprop = new AQjmsDestinationProperty() ;
dprop.setComment("create topic") ;
topic= ((AQjmsSession)tsess).createTopic( qtable,"EMPCARS",dprop);
/* Start the topic */
((AQjmsDestination)topic).start(tsess, true, true);
System.out.println("Successfully setup Topic");
} catch (Exception ex) {
System.out.println("Error in setupTopic: " + ex);
throw ex;
}
}
public static void publishReceiveMessages(TopicSession tsess)
throws Exception
{
Topic topic =null;
TopicSubscriber[] subs;
TopicPublisher publisher;
StringBuffer txtbuf ;
AdtMessage adt_msg;
Emp empmsg, rmsg;
Cars c;
try
{
/* Get the topic */
System.out.println("Getting the Topic...") ;
topic = ((AQjmsSession)tsess).getTopic("JMSUSER", "EMPCARS");
System.out.println("Creating Topic Subscribers...") ;
subs = new TopicSubscriber[2] ;
subs[0] = ((AQjmsSession)tsess).createDurableSubscriber(topic,
"PROG1", "TAB.USER_DATA.CAROWN.COLOR = 'RED'",
false, Emp.getORADataFactory()) ;
subs[1] = ((AQjmsSession)tsess).createDurableSubscriber(topic,
"PROG2", "TAB.USER_DATA.RANK > 2",
false, Emp.getORADataFactory()) ;
System.out.println("Create a Publisher...") ;
publisher = tsess.createPublisher(topic);
adt_msg = ((AQjmsSession)tsess).createAdtMessage() ;
String[] names={"KING JOE","SCOTT RAY","ADITYA NELLORE","LORI MAXWELL" };
int[] rank={1,2,3,4} ;
String color[] = {"YELLOW", "RED", "BLUE","RED" } ;
String make[] = {"BMW", "ACURA", "MERCEDES","LEXUS" } ;
empmsg = new Emp() ;
c = new Cars() ;
System.out.println("Publish messages...") ;
for ( int i = 1 ; i < 4 ; i++)
{
java.math.BigDecimal id = new java.math.BigDecimal(i) ;
empmsg.setId(id) ;
empmsg.setName(names[i]) ;
empmsg.setRank(new java.math.BigDecimal(rank[i])) ;
c.setCarno(new java.math.BigDecimal(1000 + i)) ;
c.setMake(make[i] );
c.setColor(color[i] );
c.setPrice(new java.math.BigDecimal(10000 * i) );
empmsg.setCarown(c) ;
adt_msg.clearProperties() ;
//adt_msg.setJMSCorrelationID(new Integer(100+i) ) ;
adt_msg.setAdtPayload(empmsg) ;
adt_msg.setJMSPriority(1+(i%3)) ;
publisher.publish(topic,adt_msg, DeliveryMode.PERSISTENT,
1+(i%3),AQjmsConstants.EXPIRATION_NEVER);
System.out.print("Sent Message Pri: " +adt_msg.getJMSPriority()) ;
System.out.print(" Id: " +empmsg.getId()) ;
System.out.print(" Name: " +empmsg.getName()) ;
System.out.print(" Rank: " +empmsg.getRank()) ;
System.out.print(" Car: " +empmsg.getCarown().getColor()) ;
System.out.println(" " +empmsg.getCarown().getMake()) ;
}
System.out.println("Commit") ;
tsess.commit() ;
Thread.sleep(500);
System.out.println("Receive Messages...") ;
/* Receive messages for each subscriber */
for (int i=0; i< subs.length ; i++)
{
System.out.println ("Messages for subscriber : " +i) ;
boolean more = true;
while(more) {
try {
adt_msg = (AdtMessage)( subs[i].receiveNoWait() );
if (adt_msg != null)
{
rmsg = (Emp) (adt_msg.getAdtPayload());
System.out.print("Priority : " +adt_msg.getJMSPriority()) ;
System.out.print(" Id: " +rmsg.getId()) ;
System.out.print(" Name: " +rmsg.getName()) ;
System.out.print(" Rank: " +rmsg.getRank()) ;
System.out.print(" Car: " +rmsg.getCarown().getColor()) ;
System.out.println(" " +rmsg.getCarown().getMake()) ;
}
else {
System.out.println ("No more messages.") ;
more=false;
}
tsess.commit();
} catch (Exception e) {
System.out.println ("Error in Receive: " + e) ;
more=false;
}
} /* while loop*/
}
} catch (Exception e) {
System.out.println("Error in publish receive Messages: " + e) ;
throw e;
}
}
}