Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Update 2024/3/11:

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

...

Info

Here is the Service Contract:

Code Block
[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);
}

Info

Below are the URL where service hosted on AWS.

Here is the current version of Tester. It could check if the endpoint is active or not.

View file
nameERecordServiceTester.zip

...

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.