How to Develop A Web Service And Client In Java (Using Eclipse- Apache Axis 2 Bottom Up Sevice)

Introduction :

The Purpose of this tutorial is to Demonstrate the New introduced Web Axis2 Web service Tool using WTP 2.0 Driver .This tutorial will show how to develop a simple Web Service and Web Service Client Using JAVA . We Create A simple Web Service Containing Java Class Which Concatenate two Input String Value .

Pre-requisites :

  • JDK (1.6 or above )
  • Eclipse WTP 2.0
  • Apache Tomcat Server (5.5 or above )
  • Axis 2

Downloads :

  • Download Jdk From Here (download) .
  • Download Eclipse From Here (download) .
  • Download Axis 2 From Here (download) .
  • Download Apache Tomcat From Here (download) .

Read more

Adding New Area and Iteration in Microsoft Visual Studio Team Foundation Server 2008

Adding new area and iteration in Microsoft visual studio team foundation server 2008 is very easy but sometime it can go wild and leave you in the middle of nowhere except searching the internet and Googling around for hours. All this can happen if you have recently taken the backup and the system has created temporary files during the backup. The problem you will face at this time is the population of the newly created areas and iteration won’t appear in the bugs and tasks pane where you have to select the appropriate area and iteration at the time of creation.

How to add a new area and iteration is given as under:

  • Open the visual studio team explorer and right click on the respective project where you have to create the area or iteration (Area and Iterations are dependant on the project).
  • Go to Team Project settings

area_iteration_tfs_2008

Read more

How to Run JBOSS as a Service on Windows 2003 Server?

If you are working with java based web application then you definitely have good idea  about JBOSS web server. JBOSS web server is a best web server available to cater the JAVA web enabled web applications. JBOSS web server by default comes in zipped form and can be placed anywhere on system. A simple batch …

Read more

Unknown Error of Outlook 2007(0x80040201)

One of my remote client was having this issue with her outlook. Outlook was working fine with the email one day ago and now it suddenly stopped working. After searching a little bit and Googling around I got the solution. First I would like to discuss the reason of this error, why this thing happen …

Read more

Copy, Cut and Paste Are Not Working In Excel 2007

Excel 2007 is no doubt, the best product of Microsoft and the features are out of this box. This marvelous application can do a lot of things for you, It can create documentation and proposals along with the calculations. Today I just came across this very strange and annoying problem in Excel 2007. Despite of …

Read more

Store Your Files Online For Free Up To 4TB

Online storage is available on the internet and couple of services are very good but your have open a web browser locate the path to store the files and most of them are offering limited space. Speedy Drive is giving another innovative idea to store a huge amount of data online for free and you …

Read more

Microsoft Project Server Publish Job 0% Complete Expected Wait Time 0s

Microsoft project server publish job 0% complete, expected wait time is zero seconds, if you are facing this error while publishing any project on Microsoft Project Server, the solution is given as under: There is no need to search here and there and check for the new names and entering everything again and again. Just …

Read more

How To Know When Trigger Was Updated

In SQL server we often interested in knowing that when last time a specific trigger on a table was updated . It Requireid especially when a trigger is  being update on regular bases or multiple users are allowed to update that trigger.Here comes the power of System tables in SQL SERVER to track such changes …

Read more

How to Shrinking Log File to a Specified Size in Microsoft SQL Server

USE Database_Name; (Replace the Database_Name with your actual database name) GO — Truncate the log by changing the database recovery model to SIMPLE. ALTER DATABASE Database_Name SET RECOVERY SIMPLE; GO — Shrink the truncated log file to 1 MB. DBCC SHRINKFILE (Database_Name_log, 10000); GO — Reset the database recovery model. ALTER DATABASE Database_Name SET RECOVERY …

Read more