When there is a distributed transaction involved in message processing, it is very important that all the resources involved in
Continue readingCategory: Uncategorized
Delete Messages From JMS Queue Using WLST
Connect to the server using WLST by entering the command java weblogic.WLST Enter the command connect() Enter the username, password,
Continue readingCreate JMS Resources Using WLST
connect(’system’,’weblogic’, ‘t3://localhost:7001′) # Creating a JMS Server edit()startEdit()cd(‘/’)print ‘Creating JMS Server.’cmo.createJMSServer(‘JMSServer0′)cd(‘/JMSServers/JMSServer0′)cmo.addTarget(getMBean(‘/Servers/AdminServer’))activate() # Creating a Module startEdit()cd(‘/’)cmo.createJMSSystemResource(‘JMSSystemResource0′)cd(‘/JMSSystemResources/JMSSystemResource0′)cmo.addTarget(getMBean(‘/Servers/AdminServer’))cmo.createSubDeployment(’subdeployment0′)activate() # Creating Queue startEdit()print
Continue readingcom.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte
com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte The above exception is encountered during server startup. This happens when SerializedSystemIni.dat
Continue readingConfiguring Distributed Topic on Weblogic Server
A distributed topic is a set of physical JMS topic members. As such, a distributed topic can be used to
Continue readingKerberos in a Proxy/Load Balancer/ Weblogic Cluster
Recently one of my colleague pointed out that I did not cover few aspects of Kerberos configurations in an earlier
Continue readingSSL Vulnerabilites
SSL Server allows Anonymous Authentication Vulnerability This basically means that the client will be able to connect to the Server
Continue readingJMS Resources using JMX
import java.io.IOException; import java.net.MalformedURLException; import java.util.ArrayList; import java.util.HashMap; import java.util.Hashtable; import java.util.Iterator; import javax.management.MBeanServerConnection; import javax.management.MalformedObjectNameException; import javax.management.ObjectName; import javax.management.remote.JMXConnector;
Continue reading