System Profile
System Full Name | CPSCS-APCIS Web Service |
Business Contact | Bill Henderson |
Business Owner | |
Tech Stack | Presentation Layer: Business Logic Layer: RDBMS: Reporting: |
Prod Source Location | https://dev.azure.com/DSD-Marine/MSS-Portfolio/_git/CPSCS-APCIS/commits?itemPath=%2F&itemVersion=GBmaster |
Dev Source Location | https://dev.azure.com/DSD-Marine/MSS-Portfolio/_git/CPSCS-APCIS/commits?itemPath=%2F&itemVersion=GBmaster |
Technology Assessment
Database Platform and Version | n/a |
Development Language and Framework | C# .NET Framework 4.0 |
Operating System and Version | Windows Server 2016 |
Environment Access Information
DEV
User (admin):
Pass:
Unc: http://wwwappsmssdev/saf-sec-sur/4/cpscs-apcis-ws/ApcisProxyWs.asmx
Url:
ACC
User (admin):
Pass:
Unc: http://wwwappstestx.tc.gc.ca/saf-sec-sur/4/cpscs-apcis-ws/ApcisProxyWs.asmx
Url:
PROD
User (admin):
Pass:
UNC: https://wwwappsx.tc.gc.ca/saf-sec-sur/4/cpscs-apcis-ws/ApcisProxyWs.asmx
Url:
System Overview
Good To Know
How-To and Fixes
Problem:
Production service down: The CPSCS-APCIS web service (https://wwwapps.tc.gc.ca/saf-sec-sur/4/cpscs-apcis-ws/ApcisProxyWs.asmx) is not functioning in production (i.e. web service unreachable, connection failed between CPSCS production web site and CPSCS-APCIS web service).
Solution:
For Production, the application MUST be compiled in release mode, in order to use the correct service reference file
// If in debug mode, use test apcis web service; otherwise, use prod (J. Green, v1.0.0, April 2014)
#if DEBUG
using TestProxyAPCIS.apcis_preprod_ws;
//using TestProxyAPCIS.apcis_test_ws;
#else
using TestProxyAPCIS.apcis_prod_ws;
#endifSee bug 4184 and related tasks for details.