webservices
Difference between RPC Style and Document Style SOAP web Services
Learn difference between RPC Style and Document style SOAP web Services in Java. RPC style vs document style, its similarities and differences in SOAP web services.
Differences between SOAP and REST Web services
Learn various aspects and differences between SOAP and REST API Web services. SOAP API vs Rest API. Interview questions in the java web services in SOAP and REST.
JAX-RS : Get Cookie value using @CookieParam in Jersey
JAX-RS cookie example using @CookieParam annotation in Jersey rest API, for retrieving cookie parameter in Jersey rest API. Server can store state information in cookies on the client, and the same can be retrieved that information when the client makes its next request. Many web applications use cookies to set up a session between the …
JAX-RS : Get Cookie value using @CookieParam in Jersey Read More ยป
JAX-RS : Binding of Request header using @HeaderParam in Jersey
JAX-RS headerparam used for binding of request header values and retrieving of header param values in the controller.
JAX-RS: How to Get Values from @PathParam in Jersey
JAX-RS path parameter using @PathParam annotation for retrieving path param variables.
JAX-RS : Binding of Html Form Fields Using @FormParam annotation in Jersey
In JAX-RS, mapping of formParam in the controller/service method is very easy by using @FormParam annotation.
JAX-RS : Mapping of URL Using @Path Annotation in Jersey
JAXRS path param will be used for mapping of path variables by using @Path annotation.
JAX-RS : How to Get Values from @QueryParam in Jersey
JAX-RS queryparam example retrieving query parameter value from the query string in Jersey rest API
Spring Restful Webservice example with Maven and Tomcat
Spring restful web services example in java maven and tomcat. In this rest API example I tried to explain how to develop Spring rest API.