Introduction to Web services technologies Web Services Introduction Before understanding why web services are popular or so important, you should first assess ‘What is Web Services, what’s its use and how does it work?’ The nature and functionality of web services have made it very popular. Nowadays, our business systems have matured, transparent and more logical and high tech, and all for these are because of web services. Definition Web services are the amalgamation of eXtensible Markup Language (XML) and HyperText Transfer Protocol HTTP that can convert your application into a Web-application, which publish its function or message to the rest of the world. In other words, we can say, web services are just Internet Application Programming Interfaces (API) that can be accessed over a network, such as Internet and intranet, and executed on a remote system hosting the requested services. Web-applications are simple applications that run on the web. Web services are b...
Popular posts from this blog
Polymorphism in Object oriented Programming
Polymorphism in Object oriented Programming The definition of Polymorphism as per the dictionary is 'The occurrence of something in different forms,in particular' . As per biology, the polymorphism is nothing but exhibiting different forms by a species. Poly means many . The same principle is applicable in Object oriented programming where the Objects at runtime decide what behavior will be invoked. Polymorphism is implemented in Java using method overloading and method overriding concepts. Polymorphism with example: Let us Consider Car example for discussing the polymorphism . Take any brand like Ford, Honda, Toyota, BMW, Benz etc., Everything is of type Car. But each have their own advanced features and more advanced technology involved in their move behavior. Now let us create a basic type Car Car.java public class Car { ...
The Agile System Development Life Cycle (SDLC)
This article covers: The scope of life cycles Iteration -1: Pre-project planning Iteration 0: Project inception Construction iterations Release iterations Production Retirement 1. The Scope of Life Cycles As we described in the book The Enterprise Unified Process (EUP) the scope of life cycles can vary dramatically. For example, Figure 1 depicts the Scrum construction life cycle whereas Figure 2 depicts an extended version of that diagram which covers the full system development life cycle (SDLC) and Figure 3 extends that further by addressing enterprise-level disciplines via the EUP life cycle . The points that I'm trying to make are: System development is complicated . Although it's comforting to think that development is as simple as Figure 1 makes it out to be, the fact is that we know that it's not. If you adopt a development process that doesn't actually...
Comments