Tuesday, 16 September 2014

Basic web services part 2

Recap :- We have seen why we are using web services and how to make WSDL which is the most important part in communication.

Implementation part :-  You can create web services in two ways Top down approach and Bottom up approach but finally we will get WSDL that should be our focus.

Bottom up approach :- We will write java classes and then using tools we can generate WSDL file from it. Will discuss later in tool how to do it. Just have bird view of it.

Top down approach :- We will make WSDL file as shown in tutorial 1 please refer to it. Once WSDL is done we can generate classes. We will discuss this in near feature.

How to choose top down or bottom up approach :-   To learn it better choose top down approach else for easy approach do bottom up approach


No comments:

Post a Comment

Custom single threaded java server

 package com.diffengine.csv; import java.io.*; import java.net.*; import java.util.Date; public class Server { public static void main(Str...