Here's a script that I used to configure a Shared Library in WebSphere 6.1 using Jython. [sourcecode language="python"] from string import whitespace sharedLibName = "APPLICATION_SHARED_LIB" # See if library already exists. cellId = AdminConfig.list("Cell") sharedLibraryId = AdminConfig.list("Library") if (sharedLibraryId.find(sharedLibName) < 0): # Library does not exist. print "Creating Shared Library" params = []; params.append(["name", sharedLibName]); …
Continue reading How to configure a Shared Library in WebSphere with Jython