Post SOAP request from command line
| Oct 11, 2013Sometimes you may need to post a SOAP request from command line. This article shows how to do this using the curl command on UNIX systems.
Read More →
Sometimes you may need to post a SOAP request from command line. This article shows how to do this using the curl command on UNIX systems.
Read More →
SOAP runtimes like CXF allows to interact with the inbound/outbound messages with interceptors. Interceptors are the fundamental processing unit inside CXF. When a service is invoked, an InterceptorChain is created and invoked. Each interceptor gets a chance to do what they want with the message. This can include reading it, transforming it, processing headers, validating […]
Read More →
They are of course in many ways comparable; of necessity web services frameworks must fill in all the same blanks, but since both projects are very young, each has certain areas that are more well-developed than others. The chief differences are as follows: CXF has support for WS-Addressing, WS-Policy, WS-RM, WS-Security, and WS-I BasicProfile. Axis2 […]
Read More →
In this article we will see some useful terminology used in SOAP Web Services like Databinding or Web service runtime. Let’s start with databindings. Databindings The most common types of databindings are ADB and XMLBeans. ADB ADB is a data-binding extension for Axis2. Unlike the other data-binding frameworks, ADB code is usable only for Axis2 web services. […]
Read More →
In this article we will see how to implement a REST services with Spring with a classic example…the Employees!! We’ll see a simple application that manages a list of employees and exposes three web services: GetEmployes GetEmployees AddEmployee
Read More →