示例#1
0
        protected void btnSearch_Click(object sender, EventArgs e)
        {
            string[] results;
            Services.ServiceClient proxy   = new Services.ServiceClient();
            StringBuilder          builder = new StringBuilder();

            txtResults.Text = String.Empty;
            string criteria = txtSearchBox.Text;

            //process array returned from service and print to UI
            if (!String.IsNullOrEmpty(criteria))
            {
                string displayText = null;
                results = proxy.WsdlDiscovery(criteria);
                foreach (string result in results)
                {
                    displayText = builder.Append(result + "\n").ToString();
                }
                txtResults.Text = displayText;

                if (String.IsNullOrEmpty(txtResults.Text))
                {
                    txtResults.Text = "No Results. Try adjusting your search.";
                }
            }
            else
            {
                txtResults.Text = "No Criteria...";
            }
        }
示例#2
0
        protected void btnReturnWords_Click(object sender, EventArgs e)
        {
            string[] answer      = null;
            string   displayText = null;

            Services.ServiceClient proxy   = new Services.ServiceClient();
            StringBuilder          builder = new StringBuilder();

            txtWordResults.Text = String.Empty;
            string url = txtUrl.Text;

            //print array returned from service
            if (!String.IsNullOrEmpty(url))
            {
                try
                {
                    answer = proxy.Top10Words(url);
                }
                catch (Exception)
                {
                    txtWordResults.Text = "There was an error with this url.";
                }
            }
            else
            {
                txtWordResults.Text = "No URL...";
            }

            foreach (string result in answer)
            {
                displayText = builder.Append(result + "\n").ToString();
            }
            txtWordResults.Text = displayText;
        }
示例#3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            Services.ServiceClient proxy = new Services.ServiceClient();
            string endPoint = proxy.Endpoint.Address.Uri.ToString();

            lblEndPoint.Text = endPoint;
        }