Skip to main content

Posts

Featured

Jms Sender code that sends message to JMS topic ( Weblogic ) + Linux

TopicSender.java : import javax.jms.*; import javax.naming.*; public class TopicPublisher {     public static void main(String[] args) throws Exception {         // Obtain a JNDI connection using the WebLogic JNDI provider         InitialContext context = new InitialContext();         // Look up the JMS topic         Topic topic = (Topic) context.lookup("jms/demoTopic");         // Look up a JMS connection factory         ConnectionFactory connectionFactory =                 (ConnectionFactory) context.lookup("jms/DemoTopicConnectionFactory");         // Create a JMS connection         Connection connection = connectionFactory.createConnection();         // Create a JMS session         Session session = connection.createSession(false, Sessi...

Latest Posts

JVM Troubleshooting -

Learning Linux (A2Z)

Inconsistent security configuration Cannot Convert Identity Certificate

Encrypt/Decrypt Weblogic Server Password..

Steps to create a new domain on Weblogic Server 12.1.2.0.0...

Steps to DeInstall Oracle Weblogic Server 12.1.2.0.0.

PATH and CLASSPATH

Apache Derby DataSource configuration in Weblogic Server