Updating the BPEL Component preference value from JAVA – Oracle SOA 11g
Sometimes we may need to update the preference value for the BPEL component, the below java code will help us to update the preference value.
This update is not a cluster-aware,remember that you must repeat the same process for each managed server of your environment.
This update is not a cluster-aware,remember that you must repeat the same process for each managed server of your environment.
Before executing the code change the mbeanName accordingly.
import java.util.*;
import javax.management.*;
import javax.management.openmbean.CompositeDataSupport;
import javax.management.remote.*;
import javax.naming.Context;
public class UpdatePreferenceValue {
public static MBeanServerConnection getMbeanServerConnection(String host,
int port,
String userName,
String password) throws Exception {
String jndiroot = "/jndi/";
MBeanServerConnection m_connection = null;
try {
Hashtable jndiProps = new Hashtable();
jndiProps.put(Context.SECURITY_PRINCIPAL, userName);
jndiProps.put(Context.SECURITY_CREDENTIALS, password);
jndiProps.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,"weblogic.management.remote");
JMXServiceURL serviceURL =new JMXServiceURL("t3", host, port, jndiroot +"weblogic.management.mbeanservers.runtime");
JMXConnector m_connector =JMXConnectorFactory.newJMXConnector(serviceURL, jndiProps);
m_connector.connect();
m_connection = m_connector.getMBeanServerConnection();
} catch (Exception e) {
e.printStackTrace();
}
return m_connection;
}
private static CompositeDataSupport UpdatePreferenceData(CompositeDataSupport cds,String[] keys,String[] newValues) throws Exception {
Map<String, Object> items =new HashMap<String, Object>(cds.getCompositeType().keySet().size());
for (String key : cds.getCompositeType().keySet()) {
boolean matched = false;
int i = 0;
for (; i < keys.length; i++) {
String searchKey = keys[i];
if (searchKey.equalsIgnoreCase(key)) {
items.put(key, newValues[i]);
matched = true;
break;
}
}
if (!matched) {
items.put(key, cds.get(key));
}
}
return new CompositeDataSupport(cds.getCompositeType(), items);
}
public static void updatePreference(String host,String port,String userName,String password, String preferenceName,String value) {
String mBeanName ="*:*,j2eeType=SCAComposite.SCAComponent,revision=*,SCAComposite=\"Preference\",name=Preference";
MBeanServerConnection mbsc;
try {
mbsc =getMbeanServerConnection(host, Integer.parseInt(port),userName,password);
Set<ObjectName> mbeans=mbsc.queryNames(new ObjectName(mBeanName), null);
ObjectName mbean=(ObjectName)mbeans.iterator().next();
javax.management.openmbean.CompositeData[] properties =
(javax.management.openmbean.CompositeData[])mbsc.getAttribute(mbean,"Properties");
for (int i = 0; i < properties.length; i++) {
CompositeDataSupport cds = (CompositeDataSupport)properties[i];
if (preferenceName.equalsIgnoreCase((String)cds.get("name"))) {
properties[i] =UpdatePreferenceData((CompositeDataSupport)properties[i],new String[] { "value" },new String[] { value });
mbsc.setAttribute(mbean,new Attribute("Properties", properties));
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
updatePreference("localhost", "8000","weblogic", "password","preference.password","password");
}
}
Add the weblogic.jar file to the class.
No comments:
Post a Comment