Showing posts with label jax-ws. Show all posts
Showing posts with label jax-ws. Show all posts

Monday, April 11, 2011

JAX-WS with JBoss 6 Day 11 : RESTful

Web services have become a standard way to achieve interoperability between systems. There are two main approaches for developing web services; one is by using the Simple Object Access Protocol (SOAP) and the other is by using the Representational State Transfer (REST) architecture style.

Sunday, April 10, 2011

JAX-WS with JBoss 6 Day 10 : Stateful

A service using a SOAP/HTTP binding can use the following three mechanisms for maintaining a session:
• Cookies
• URL Rewriting
• SSL Sessions

Friday, April 8, 2011

JAX-WS with JBoss 6 Day 9 : handler framework

The handler framework is implemented by a JAX-WS protocol binding in both client and server side runtimes.

Tuesday, April 5, 2011

JAX-WS with JBoss 6 Day 8 : SOAP Fault

In the SOAP Web services world, a fault flows from the server to the client in the form of SOAP fault.

Monday, April 4, 2011

JAX-WS with JBoss 6 Day 7 : Provider API

java.xml.ws.Provider interface offers an alternative to SEIs and may be implemented by services wishing to work at the XML message level.

Thursday, March 31, 2011

JAX-WS with JBoss 6 Day 6 : SOAP header

SOAP Header is a mechanism for exchanging contextual data like data related WS-Security, WS-Addressing, WS-AtomicTransaction etc.

Thursday, March 24, 2011

JAX-WS with JBoss 6 Day 5 : Asynchronous

An asynchronous invocation of a Web service sends a request to the service endpoint and then immediately returns control to the client program without waiting for the response to return from the service.

Wednesday, March 23, 2011

JAX-WS with JBoss 6 Day 4 : Dispatch API

The Java API for XML-Based Web Services (JAX-WS) Web service client programming model supports both the Dispatch client API and the Dynamic Proxy client API.

Monday, March 21, 2011

JAX-WS with JBoss 6 Day 3 : SOAP Binding

A typical WSDL document consists of the following elements: "types," "message," and "portType" for the abstract definitions; "binding" and "service" for the concrete specification.

Sunday, March 20, 2011

JAX-WS with JBoss 6 Day 2 : MTOM

With Java API for XML-Based Web Services (JAX-WS), you can send binary attachments such as images or files along with Web services requests. JAX-WS adds support for optimized transmission of binary data as specified by SOAP Message Transmission Optimization Mechanism (MTOM).

Wednesday, February 23, 2011

JAX-WS with JBoss 6 Day 1 : Hello World

JBoss 6 ships with JAXWS 2.2 , while Java SE 6 has JAXWS 2.0 itself, so you need to copy all jar files under %JBOSS_HOME%/lib/endorsed to %JAVA_HOME%/jre/lib/endorsed.