IDEMPIERE-5429 Rest API Web Service for composite not support JSON (#1497)
* IDEMPIERE-5429 Rest API Web Service for composite not support JSON
This commit is contained in:
parent
aef93fb113
commit
f706d884a7
|
@ -14,8 +14,8 @@ import org.idempiere.adInterface.x10.CompositeRequestDocument;
|
||||||
import org.idempiere.adInterface.x10.CompositeResponsesDocument;
|
import org.idempiere.adInterface.x10.CompositeResponsesDocument;
|
||||||
|
|
||||||
@Path("/composite_service/")
|
@Path("/composite_service/")
|
||||||
@Consumes("application/xml")
|
@Consumes({"application/xml", "application/json"})
|
||||||
@Produces("application/xml")
|
@Produces({"application/xml", "application/json"})
|
||||||
@WebService(targetNamespace="http://idempiere.org/ADInterface/1_0")
|
@WebService(targetNamespace="http://idempiere.org/ADInterface/1_0")
|
||||||
@SOAPBinding(style=Style.RPC,use=Use.LITERAL,parameterStyle=ParameterStyle.WRAPPED)
|
@SOAPBinding(style=Style.RPC,use=Use.LITERAL,parameterStyle=ParameterStyle.WRAPPED)
|
||||||
public interface CompositeService {
|
public interface CompositeService {
|
||||||
|
|
Loading…
Reference in New Issue