/// <summary>
        /// test test
        /// </summary>
        private void TestIiStr()
        {
            int    a, c = 0;
            string b, d, e, f = string.Empty;
            var    client = new IntermediaryInboundExternalECStreamedClient("ST01");

            client.SubmitAttachmentStreamedEC("test", "test", "test", "test", "test", 1, _pass, _user, null, out a, out b, out c, out d, out e, out f);
            client.Test();
        }
        private IntermediaryInboundExternalECStreamedClient GenerateProxy(string endpointName, X509Certificate2 selectedCertificate)
        {
            var proxy = new IntermediaryInboundExternalECStreamedClient(endpointName);

            proxy.ClientCredentials.ClientCertificate.Certificate = selectedCertificate;
            GetCredentialsForServiceCertificate(proxy.ClientCredentials.ServiceCertificate);

            SetInspectorBehavior(proxy.Endpoint.EndpointBehaviors);
            return(proxy);
        }