コード例 #1
0
ファイル: Logowanie.cs プロジェクト: skrzypol/Projekt-SR
        private void button2_Click(object sender, EventArgs e)
        {
            HttpChannel d = new HttpChannel();
            try
            {

                ChannelServices.RegisterChannel(d);

                mm = (Wiadomosci)Activator.GetObject(typeof(SimpleConection.Wiadomosci),
                    "http://" + textBox3.Text + ":" + (textBox8.Text.Length == 0 ? "3000" : textBox8.Text) + "/Polaczenie");
                login = textBox1.Text;
                string haslo = maskedTextBox1.Text;
                if (mm.logowanie(login, haslo))
                {
                    zatw = true;
                    DialogResult = DialogResult.OK;
                }
                else MessageBox.Show("błedny login lub haslo");
                //backgroundWorker1.RunWorkerAsync();
            }
            catch {
                MessageBox.Show("błedny adres lub port serwera");
                //ChannelServices.UnregisterChannel(d);
            }
        }
コード例 #2
0
ファイル: Logowanie.cs プロジェクト: skrzypol/Projekt-SR
        private void button3_Click(object sender, EventArgs e)
        {
            HttpChannel d = new HttpChannel();
            try
            {

                ChannelServices.RegisterChannel(d);

                mm = (Wiadomosci)Activator.GetObject(typeof(SimpleConection.Wiadomosci),
                    "http://" + textBox5.Text + ":" + (textBox9.Text.Length == 0 ? "3000" : textBox9.Text) + "/Polaczenie");
                login = textBox7.Text;
                string haslo = maskedTextBox2.Text;
                if (maskedTextBox2.Text == maskedTextBox3.Text)
                    if (mm.rejestracja(login, haslo))
                    {
                        zatw = true;
                        DialogResult = DialogResult.OK;
                        mm.logowanie(login, haslo);
                    }
                    else { MessageBox.Show("login juz istnije"); throw new Exception(); }
                else{ MessageBox.Show("zle hasla"); throw new Exception(); }
                //backgroundWorker1.RunWorkerAsync();
            }
            catch
            {
                //MessageBox.Show("błedny adres lub port serwera");
                ChannelServices.UnregisterChannel(d);
            }
        }
コード例 #3
0
ファイル: Form1.cs プロジェクト: skrzypol/Projekt-SR
        private void button6_Click(object sender, EventArgs e)
        {
            HttpChannel d = new HttpChannel();
            ChannelServices.RegisterChannel(d);

            mm = (Wiadomosci)Activator.GetObject(typeof(SimpleConection.Wiadomosci),
                                                "http://"+textBox2.Text+":3000/Polaczenie");
            login = textBox5.Text;

            mm.logowanie(login, "lala");
            backgroundWorker1.RunWorkerAsync();
        }