How could make this WCF service endpoint to accept both JSON and XML requests?
As per client, the request to the WCF service endpoint may be either JSON or XML, but the operation to handle that request is the same.
void UpdateTask(string externalTicketId, string externalTaskId, string lastEditedByUser, string taskAction, string taskPrivateNote, string taskResult, string workTimeMinutes);