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:
Zuhri Utama 2022-09-25 19:00:40 +07:00 committed by GitHub
parent aef93fb113
commit f706d884a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@ import org.idempiere.adInterface.x10.CompositeRequestDocument;
import org.idempiere.adInterface.x10.CompositeResponsesDocument;
@Path("/composite_service/")
@Consumes("application/xml")
@Produces("application/xml")
@Consumes({"application/xml", "application/json"})
@Produces({"application/xml", "application/json"})
@WebService(targetNamespace="http://idempiere.org/ADInterface/1_0")
@SOAPBinding(style=Style.RPC,use=Use.LITERAL,parameterStyle=ParameterStyle.WRAPPED)
public interface CompositeService {