Download Axis2 from http://axis.apache.org/axis2/java/core/download.cgi Unzip the Axis2 Standard Binary Distribution into “C:\DevTools\axis2-1.3″ NOTE: Substitute the appropriate path to the current version of Axis2 Add the following system environment variables AXIS2_HOME=C:\DevTools\axis2-1.3 Add the following to the PATH %AXIS2_HOME%\bin; [NOTE: You are doing all this so that you have access to the command line utilities like wsdl2java etc.] [...]
Archive for the ‘installations’ Category
Apache Axis2 Installation
Posted in Found it useful, installations, tagged installations on April 18, 2012 | Leave a Comment »
Eclipse – Cannot create a server using the selected type
Posted in installations, Weird Errors on January 29, 2012 | Leave a Comment »
Go to Window/Preferences/Server/Runtime Environments, remove the broken reference. Click ‘Add’ to create a new reference, select the appropriate server version, click next and you’ll see the incorrect path reference. Fix it. All should be OK.
Eclipse – Server JBoss/Tomcat at localhost was unable to start within .. seconds. If the server requires more time, try increasing the timeout in the server editor
Posted in installations, Weird Errors on January 21, 2012 | Leave a Comment »
Server JBoss/Tomcat at localhost was unable to start within .. seconds. If the server requires more time, try increasing the timeout in the server editor If you find the above error; open eclipse and double click on the server in “server tab”. In the options screen edit the “Timeout field” to the required one.
Sqldeveloper – Unable to launch the Java Virtual Machine – windows 7 – 64 bit machine
Posted in installations, Weird Errors on January 15, 2012 | Leave a Comment »
I got the following error while trying sqldeveloper though I have the jvm.dll file in the required location. All I had to do was to install 32 bit jdk and all went well. Looks like sqldeveloper has issue with 64 bit jdk. ————————— Oracle SQL Developer ————————— Unable to launch the Java Virtual Machine Located [...]
Tomcat 6 – The request was rejected because its size exceeds the configured maximum (2097152)
Posted in installations, Tomcat, tagged installations, tomcat on January 6, 2012 | Leave a Comment »
Apache Tomcat by default sets a limit on the maximum size of HTTP POST requests it accepts. In Tomcat 6, this limit is set to 2097152 (2 Mb). When you try to upload files or post forms that are larger than 2 MB, this error can occur. The solution is to reconfigure Tomcat to accept [...]
Viewing CHM Files in Windows – Fix for “Navigation was cancelled”
Posted in Found it useful, installations on November 17, 2011 | Leave a Comment »
Right click on CHM file saved to your Computer in Windows Explorer select “Properties” on the General tab and click “Unblock” button. Sometimes unregistered HTML Help viewer component can also causes this problem, try to register it by running command in command prompt “regsvr32 hhctrl.ocx”. Weird and Funny, but works; When you [...]
How To Reduce Size of WinSXS in Vista and Windows 7
Posted in Found it useful, installations on November 16, 2011 | Leave a Comment »
Vista SP2 has a Service Pack Cleanup Tool in the C:\Windows\System32 directory called COMPCLN.exe. Incase of SP1 you can use, VSP1CLN.exe You can start the program by using the following instructions: Click Start > Run Type in CMD and press [enter] At the command prompt, type COMPCLN and press [enter] Press Y when prompted to [...]
[Dreamhost] Rails Migrations and ‘Can‘t connect to local MySQL
Posted in installations, Ruby on Rails on October 27, 2011 | Leave a Comment »
Try the following; rake environment RAILS_ENV=production db:migrate instead of just; rake db:migrate
Installing Ruby on Rails, Thin, Nginx, PHP, SVN, Nokogiri and Rmagick/Imagemagick on Ubuntu – Step by step
Posted in installations, Ruby on Rails, tagged Ruby on Rails on September 24, 2011 | Leave a Comment »
Package versions may not be the latest one. These are the steps which I followed to set up my environment. You may want to download the latest source from web and then build it instead of using the download links mentioned here. sudo apt-get install build-essential sudo apt-get install openssl libssl-dev libmysqlclient-dev sudo apt-get install [...]
[Windows] Starting MySQL from the Windows Command Line
Posted in installations, MySQL, tagged installations, MySQL on August 20, 2011 | Leave a Comment »
The MySQL server can be started manually from the command line. This can be done on any version of Windows. To start the mysqld server from the command line, you should start a console window (or “DOS window”) and enter this command: shell> “C:\Program Files\MySQL\MySQL Server 5.0\bin\mysqld” The path to mysqld may vary depending on [...]