Click here to Skip to main content
15,884,099 members
Articles / Web Development

Multi-Language Programming: Simplifying Web Service Programming

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
1 Nov 2011CPOL1 min read 7.2K   2  
Multi-Language Programming: Simplifying web service programming

Let’s go deeper into common object environment. The environment manages interface objects of multiple different languages and provides interface to these languages to define object’s attributes, functions and events. It holds all information and parameters about the objects. Therefore, it can act as a proxy to other applications outside to complete some functions or function calls.

Web service is a popular method of remote call, which uses SOAP as interface standard. Common object environment can implement SOAP interface, and thus become a proxy for web service. This will simply be the development of web service. The applications, components or libraries developed based on the environment may not be aware of web service call. There are no differences between web service calls and normal calls. Let’s use a diagram to further illustrate.

In the above figure, a class object defined in Java language has a function “Add”. For its C/C++ instance, the application can call “Add” function through the environment as previously talked about. The “Add” function of C/C++ instance can also be used as a web service. In this case, the WSDL file can be generated automatically by environment proxy. Other application can get WSDL of the instance by http post request. Then, they can initiate web service call, and the proxy routing the call to the function of the class object. The class object does not know whether the call is a web service call or normal function call. It only needs to implement the “Add” function body using Java. Is it simple?

Common object environment holds all information of interface. Thus, it can act as a proxy and generate WSDL file to provide web service function to outside applications, which will simplify the development of web services.

This article was originally posted at http://blog.yahoo.com/srplab/articles/92563

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --