Thursday, July 28, 2011

Using Jarscan

Did you know there’s a tool that can help you search through JAR files to find Java classes or packages? I’ve been using it for years and I am often surprised that so few Java developers have it in their toolbox. Of course, it’s very handy for resolving those pesky NoClassDefFoundError and ClassNotFoundExceptions, but my favorite use case is to find the location of a class and JAR file on my hard-drive so I can decompile it to understand what some vendor’s proprietary code is actually doing behind the scenes. I know vendors frown on this, but whatever; I’ve got a job to do.

The tool is called jarscan and you can read more about it or download it here.

It’s just a little jar file that executes as a command-line program. On my Windows virtual machines, I put the jar file in C:\JarScanner\

If you’d like to find a Java class called “SystemProperty” somewhere in the “C:\IBM\WebSphere\PortalServer” directory. You would execute the following command:

java -jar C:\JarScanner\jarscan.jar -dir c:\IBM\WebSphere\PortalServer -class SystemProperty

That command would then search through every jar file that it can find in the PortalServer directory, including sub-directories. If it finds the specified class file, it reports the location and name of the Jar file containing the class. You can also search for packages, not just class files.

For Help, type the following command:

java -jar C:\JarScanner\jarscan.jar -help

How to change port numbers in freeradius

The port numbers for freeradius is configured in the file radiusd.conf. Leaving it as 0 will pick the ports for auth and acct from /etc/services. I guess the values would be 1645/1646. You can manually set the values to 1812 and 1813 as shown in the below screenshots and restart the freeradius server. It just works!!


2011-07-22_11-56-02.png


2011-07-22_11-56-10.png


From /etc/services


2011-07-22_11-57-06.png

How to increase the log level in weblogic 11g

To increase the log level just login to the weblogic console and select the server from the environment and goto the logging tab. Here you can find options to increase the log level.

I have set the log level to debug- the most talkative



Disable plugins in Google chrome

I tried to disable the unnecessary plugins filling up my system memory and came across this site which tells you on how to do it
How To Disable Individual Plug-ins in Google Chrome
Disabling the plugins in chrome is not as straight forward as in firefox.

Tuesday, July 19, 2011

Find out the weblogic version from domain


To find out the weblogic version you can just open the config.xml from the domain folder and see the weblogic version