Why do I get java.security.AccessControlException when using JMS MessageListeners from Java stored procedures inside Oracle8i JServer?
Answer / munnu
To use MessageListeners inside Oracle8i JServer, you can do one for the following
1. GRANT JAVASYSPRIV to <userid>
Call dbms_java.grant_permission ('JAVASYSPRIV', 'SYS:java.net.SocketPermission', '*', 'accept,connect,listen,resolve');
| Is This Answer Correct ? | 0 Yes | 0 No |
What is Producer and Consumer?
What is message listener?
Which messaging is generally used in cases where a message is published by a producer and consumed by multiple subscribers?
What is jms queue in java?
What is difference between queue and topic in jms?
What are the steps to send and receive JMS message ?
What is the difference between the P2P (Peer to Peer) model and subscribe model?
Can you use a foreign jms provider to drive an mdb transactionally?
Explain about message selector?
What is the use of jmstemplate in spring?
In which situations we are using jms? Can we send message from one server to another server using jms?
What is Point-to-Point Approach?