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 readingAuthor: weblogicwonders
Python Scripting for Beginners
Download Jython Installer from the official websitehttp://www.python.org/download/ And start executing the programs below.You should get a feel of the Jython
Continue readingConfiguring SunOne ( iPlanet) Webserver with Weblogic
Step 1). Create a Webserver running on port 8081 using the Admin Console of SunOne. Step 2). Copy over the
Continue readingBasic Shell Scripting
While learning shell scripting I developed few scripts. Wanted to share it with everyone throughthis post. During our administration we
Continue readingAnalyzing Garbage Collection Log file using GC Viewer
This article is about analysing GC log using GC Viewer. We can download the software from this link http://www.tagtraum.com/gcviewer-download.html In
Continue readingInvestigating High CPU Usage with Weblogic on Solaris
1 )First determine the Weblogic Server Process id /usr/ucb/ps -auxwww | grep java faiz 8448 1.2 24.025954081965448 ? R Sep
Continue readingWeblogic Setup in Distributed Environment with Node Manager
On the Local Box (Test1) 1) Install Weblogic Server chmod a+x server923_solaris32.bin ./server923_solaris32.bin 2) Create a Domain with two Managed
Continue readingConfiguring IIS with Weblogic Server
This is a simple example of Configuring IIS(running on default port 80) on Weblogic Server. Create two Weblogic Servers running
Continue readingTroubleshooting too many open files issues
Servlet failed with IOExceptionjava.io.FileNotFoundException:(Too many open files)at java.io.FileInputStream.open(Native Method)at java.io.FileInputStream.(FileInputStream.java:106)at weblogic.utils.classloaders.FileSource.getInputStream(FileSource.java:31)at weblogic.servlet.internal.WarSource.getInputStream(WarSource.java:65)at weblogic.servlet.FileServlet.sendFile(FileServlet.java:400) In this post i’ll try to give
Continue readingConfiguring SSL on Weblogic Server – Custom Identity and Custom Trust
I have been getting a lot of request for creating a very simple document for configuring SSL on Weblogic Server.
Continue reading