/
ERecordWCFService
Here is the Service Contract:
[ServiceContract(Name = "IERecordWCFService")]
public interface IERecordWCFService
{
[OperationContract(Name = "TestService")]
[FaultContract(typeof(ServiceError))]
string TestService(string tenantId);
[OperationContract(Name = "RetrievePackage")]
[FaultContract(typeof(ServiceError))]
string RetrievePackage(string tenantId, string crossref);
[OperationContract(Name = "GetPackageStatus")]
[FaultContract(typeof(ServiceError))]
string GetRecordingStatus(string tenantId, string crossref);
[OperationContract(Name = "SubmitPackage")]
[FaultContract(typeof(ServiceError))]
string SubmitPackage(string tenantId, string priaPackage);
}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.