Exemple #1
0
        /// <summary>
        /// Checks whether a connection can be made to the PID/CPR web service by means of calling
        /// the test method on the web service
        /// </summary>
        /// <returns><code>true</code> if a connection can be made</returns>
        public static bool MakeTestConnectionToPidcprService(string pidWsUrl)
        {
            var serviceProviderClient = new PidService(pidWsUrl);

            serviceProviderClient.Test();
            return(true);
        }
Exemple #2
0
        static void Ping(string serviceUrl)
        {
            var wsClient = new PidService(serviceUrl);

            wsClient.Test();
        }