/
ERecordWCFService

Here is the Service Contract:

1[ServiceContract(Name = "IERecordWCFService")] 2public interface IERecordWCFService 3{ 4 [OperationContract(Name = "TestService")] 5 [FaultContract(typeof(ServiceError))] 6 string TestService(string tenantId); 7 8 [OperationContract(Name = "RetrievePackage")] 9 [FaultContract(typeof(ServiceError))] 10 string RetrievePackage(string tenantId, string crossref); 11 12 [OperationContract(Name = "GetPackageStatus")] 13 [FaultContract(typeof(ServiceError))] 14 string GetRecordingStatus(string tenantId, string crossref); 15 16 [OperationContract(Name = "SubmitPackage")] 17 [FaultContract(typeof(ServiceError))] 18 string SubmitPackage(string tenantId, string priaPackage); 19}


Below are the URL where service hosted on AWS.


Update logs:

  • Update 2024/06/24:

    • Add ClientToken for Multi-Tenant flow.

  • Update 2024/6/10:

    • Update Service’s interface:

      Remove AgentKey and AgentPassword.

  • Update 2024/3/11:

    • Changed the Service’s binding type to “WSHttpBinding” for supporting Soap1.2.

      Changed the buffersize for support xml file uploading.