Posts

Moral Encompassed

Image

Open Source Performance Testing Tools

Few open source testing tools,     Pylot – Web Load Testing from Amazon Elastic Compute Cloud (EC2)     Grinder In The Cloud – A cloud based load testing environment     Load Testing From The Cloud (JMeter)

Characteristics of a software architect

Image
Good article on Software architect Characteristics,           Characteristics of a software architect  

Invoking IBM B2B Sterling Integrator WebServices with Security using Java Client

Web Services with Security 1) Generate self-sign certificate. 2) Assign certificate to Webservice and change protocol type to https while publishing webservice. 3) Import certificate into keytool using keytool of java. 4) Write a java client based on generated wsdl. Command to import certificate into keytool C:\>keytool -import -trustcacerts -alias HTTPSCertificateName -file D:\Projects\HTTPSCertificateName .cer -keystore "C:\Program Files\Java\jdk1.5.0_11\jre\lib\security\cacerts" password: changeit Note:      (1) About command will import certificate into C:\Program Files\Java\jdk1.5.0_11\jre\lib\security\cacerts.      (2) Make sure your C:\Program Files\Java\jdk1.5.0_11\jre\lib\security\cacerts file should update with latest date and time if it is successfuly   imported. System Properties to set in Java code     System.setProperty("javax.net.ssl.trustStore","C:\\Program Files\\Java\\jdk1.5.0_11\\jre\\lib...

Inspiring...

Stay hungry Stay foolish...

Cool Speech...

Searching for a Java Class file locatioin in bunch of jars (JAR Scanner)

A Cool open source software I found on internet it can search a .class file from a bunch of .jar files. Download jarscan.jar from below link... Usage: To display the help message type:   java -jar jarscan.jar -help OR java -jar jarscan.jar To find the class ArrayList starting from the root of your c: drive type:   java -jar jarscan.jar -dir c:\ -class ArrayList Here is the URL, http://www.inetfeedback.com/jarscan/

A picture speaks a thousand words

Image

Optimizing the JBoss-EAP Performance

http://www.theserverside.com/tip/13-Best-Practices-for-Optimizing-the-JBoss-EAP-Platform

Lead Without Title | Robin Sharma | Leadership Development, Personal Development

Lead Without Title | Robin Sharma | Leadership Development, Personal Development Shared via AddThis

create and share a folder with .bat file

Simple .bat file to create a folder and share that folder with full permission and give access to Everyone. Just put below four lines of code into any textpad save a .bat file. Md E:\ MyFolder Net Share MyShare =E:\ MyFolder Cacls E:\ MyFolder /e /r Everyone Cacls E:\ MyFolder /e /g Everyone:C

HOWTO:Setting up a Subversion Server on Windows Server 2003

Image
Recently we have migrated our repository from Serena PVCS to SVN . Here the configuration details I used to configure Subversion( SVN ) on windows 2003 server. SVN (Tigris.org) got pretty cool exe file ( Svn1ClickSetup-1.3.3.exe ) which will include all it's necessary software's in a single bundle namely the software's are Subversion, SVNService and Tortoise SVN client. We just need to keep on clicking next and verify the installation location by defualt it points to C:\Pr0gram Files\subversion. Things To Do: Download the latest version of Svn1ClickSetup-1.3.3.exe from http://svn1clicksetup.tigris.org/ . Double click on Svn1ClickSetup-1.3.3.exe and it initialize installation process just keep looking at installation window and keep hitting on next button all the way out to finish set up process. Svn1ClickSetup-1.3.3.exe will install Subversion command line tool in C:\Program File\ Subversion \ and say Next now subversion will automatically pickup Editor which is N...

Applets are not running on Internet Explorer 7.0

I think there was an issue with applets on Internet Explorer 7.0. When I tried to run some applets on my windows 2003 server (SP2) box with IE 7.0 and JDK 1.5 version I could not able to load applets on my browser. I tried in almost all known ways by enabling applets through browser setting Tools -->Advanced and from java console (control panel --> java console --> Advanced) but no luck finally I thought to uninstall the java and reinstall it again and did the same but still no luck so finally I have installed lower version of Internet Explorer version 6.0 and it started working... I think IE 7.0 has some issues still. But IE 7.0 has got some pros and cons as per my limited usage experience... Pros: Rich look and feel Tabbed browsing Implemented Add-on concept as Mozilla Firefox had. Cons: Though you enable Add-ons still browser through you message that you have not enabled add-on facility which really frustrates. As I told Applet issue. When we say Add-on user will easily se...