uCosminexus Application Server, Web Service Development Guide

[Contents][Glossary][Index][Back][Next]

post(Class<T> c) method

Description

This method invokes the HTTP POST method. The post(Class<T> c) method does not include any entity in the request, but receives a response entity.

Syntax

public <T> T post(Class<T> c)

throws UniformInterfaceException

Parameter

c
This is the type of an HTTP response entity.

Return value

The post(Class<T> c) method returns the object of the specified type.

Exception

UniformInterfaceException
This exception is thrown if any of the following conditions is fulfilled. The error message KDJJ18888-E is output to the log.
  • If the status code of the HTTP response is 204
  • If the status code of the HTTP response is 300 or more and the c parameter is not of the ClientResponse type

Notes