Exemplo n.º 1
0
        private void DoScreenPop(IInteraction interaction)
        {
            var url = String.Format("http://localhost:{0}/?{1}", SAPPort, CreateQueryString(interaction));

            _traceService.Status("Screen pop to " + url);

            WebRequest request = WebRequest.Create(url);

            request.Method = HttpMethod.Get.Method;
            request.GetResponse();
        }