1
Answer

Solution - help please

Rune Lisether

Rune Lisether

15y
3.3k
1
I am going to make an application for a school in Norway. In Norway every student have laptops an the teachers need to control the students some times (msn, game etc). Here is my way to approach the problem. First of all the students need to install a windows service that sending external ip, username and computer name to a MSSQL server trough a WEB service (windows service connecting to the web service). In front I have a table with school name and ip-address. Only ip-addersses that match this table will be registered. (Every school has fix ip) Later the teachers can then group their students by class etc. Only teachers and student with same ip are able to communicate. When everything are registered and grouped a new service on student’s computer are going to start. This service is to be monitored by the teachers in some way over a specific port. The teachers have a small desktop application with their groups and in some way sending a message trough webservice to the student groups windows service. This service open an application that block the students desktop. Anyone have ideas about my way to solve the problem or are the other ways to do it that may be better. Is this the “right” way to solve this case. Thankful for any answer. Regards Rune Lisether, Norway
Answers (1)
0
Abdur Rafay

Abdur Rafay

NA 8 1.2k 9y
To Dipankar Biswas: I did that with Console.ReadLine(); By the way thanks a lot for the help.
0
Abdur Rafay

Abdur Rafay

NA 8 1.2k 9y
Hi,
I am pasting my server code. it is just accepting and receiving data from one client and keep connected to that only client. I want to receive data from different client after one another.
Below is my server code. Please help me.

Server Code:
using System;
using System.IO;
using System.Text;
using System.Net;
using System.Net.Sockets;

public class serv
{
    public static void Main()
    {
        try
        {
            IPAddress ipAd = IPAddress.Parse("115.167.97.145");
            // use local m/c IP address, and 
            // use the same in the client
            while (true)
            {
                /* Initializes the Listener */
                TcpListener myList = new TcpListener(ipAd, 1063);

                /* Start Listeneting at the specified port */
                myList.Start();

                Console.WriteLine("\nListening Port of The Server is 1063...");
                Console.WriteLine("Local Connection:" +  myList.LocalEndpoint);
                Console.WriteLine("Waiting for a connection.....");
                
                Socket s = myList.AcceptSocket();
                Console.WriteLine("Remote Connection " + s.RemoteEndPoint);

                byte[] b = new byte[225];
                int k = s.Receive(b);
                Console.WriteLine("Recieving Data from Client...");
                for (int i = 0; i < k; i++)
                    Console.Write(Convert.ToChar(b[i]));

                ASCIIEncoding asen = new ASCIIEncoding();
                s.Send(asen.GetBytes("The string was recieved by the server." + "\nStream Acknowledged\n\n"));
                //s.Send(asen.GetBytes("\nStream Acknowledged"));
                Console.WriteLine("\nAcknowledgement has been sent to the Client\n");
                /* clean up */
                s.Close();
                myList.Stop();
            }
        }
        catch (Exception e)
        {
            Console.WriteLine("Error..... " + e.StackTrace);
        }
    }
0
Dipankar Biswas

Dipankar Biswas

NA 3k 125.6k 9y
hi 

 I don't no clearly..  but try to change here
  s.close();
  myList.stop();


 Thanks..
0
Abdur Rafay

Abdur Rafay

NA 8 1.2k 9y
Both programs are running but after receiving/sending data windows close and received data could not be viewed easily.
0
Dipankar Biswas

Dipankar Biswas

NA 3k 125.6k 9y