Tagged Questions
2
votes
3answers
2k views
Display contents of Oracle AQ SYS.AQ$_JMS_TEXT_MESSAGE
I have an application that uses JMS op top of Oracle advanced queuing. I would like to do a query on the queue table that shows the content of the message (which in my case is XML). So when I do a ...
1
vote
2answers
300 views
Oracle: problem with constructing JMS message
After some struggle with Oracle Advanced Queuing and dbms_aq package
I encountered another issue. I copied code from Oracle tutorials
but when I compile this code:
create or replace
procedure ...
0
votes
2answers
62 views
MessageListener not listening to messages in Oracle Queue
I've Oracle Advanced Queue implemented & I'm writing a listener program. Below is my sample:
package com.myprog;
import java.io.File;
import java.io.FileInputStream;
import java.io.StringWriter;
...
0
votes
1answer
1k views
PL/SQL function in Oracle cannot see DBMS_AQ
I have problem with Oracle 9.2 and JMS.
I created PL/SQL routine to send XML text (from file or CLOB) to queue,
but this routine do not compile.
My code looks like (filling message omitted):
create ...