Posts Tagged ‘wlst’

Old WLST tools

Wednesday, December 2nd, 2009

As you might know after the acquisition of BEA Systems by Oracle, Dev2Dev site has been discontinued. Unfortunately I don’t see a replacement for that, not only we lost some rich information, but a number of good tools. (more…)

No WLST cachedir with python.cachedir.skip

Friday, September 11th, 2009

In one of my previous post I have talked about python.cachedir and how it may cause some errors during WLST/Jython initialization.
With WebLogic 11g Oracle has upgraded the Jython Version from 2.1 to 2.2 (see my post here), which opens up yet another way of getting rid of these errors. In fact you can get rid of the cachedir entirely by starting WLST with -Dpython.cachedir.skip=true, this will instruct Jython not to create the CacheDir.
I haven’t done extensive testing with this option but so far I haven’t seen any issues by not creating this cachedir.

How are python.cachedir and the error "*sys-package-mgr*: can't create package cache dir" are related

Tuesday, August 4th, 2009

While starting WLST or for that matter Jython, you might have seen this annoying error message,

*sys-package-mgr*: can’t create package cache dir, ‘/tmp/cachedir/packages’
Traceback (innermost last):
File “<iostream>”, line 12, in ?
ImportError: no module named java

(more…)

Default protocol in WebLogic and why is it important

Sunday, July 26th, 2009

If your WebLogic Server makes outbound connections to other systems it is wise to know what a DefaultProtocol is. Generally, when you create a WebLogic domain and haven’t configured SSL you will not have to do anything. (more…)