Ad

Friday 2 April 2010

Privacy Policy

If you require any more information or have any questions about our privacy policy, please feel free to contact us by email at magesh.varalakshmi@gmail.com.

At http://letslearnjavaj2ee.blogspot.in/, the privacy of our visitors is of extreme importance to us. This privacy policy document outlines the types of personal information is received and collected by http://letslearnjavaj2ee.blogspot.in/ and how it is used.

Log Files
Like many other Web sites, http://letslearnjavaj2ee.blogspot.in/ makes use of log files. The information inside the log files includes internet protocol ( IP ) addresses, type of browser, Internet Service Provider ( ISP ), date/time stamp, referring/exit pages, and number of clicks to analyze trends, administer the site, track user’s movement around the site, and gather demographic information. IP addresses, and other such information are not linked to any information that is personally identifiable.

Cookies and Web Beacons
http://letslearnjavaj2ee.blogspot.in/ does use cookies to store information about visitors preferences, record user-specific information on which pages the user access or visit, customize Web page content based on visitors browser type or other information that the visitor sends via their browser

To Pause/Start the Queue programattically in weblogic(using JMSDestinationRuntimeMBean)

one can puase or start the queue deployed in weblogic by using the admin console.But sometimes we may require to do this programmatically.Weblogic provides the API JMSDestinationRuntimeMBean for doing this.


Destination queue = (Destination) context.lookup("queue JNDI name");
weblogic.management.runtime.JMSDestinationRuntimeMBean destBean = weblogic.jms.extensions.JMSRuntimeHelper.getJMSDestinationRuntimeMBean(
context, queue);
destBean.pauseConsumption();   //Will pause the queue
destBean.resumeConsumption();   //Will start the paused queue again