
- Codecall
- → Viewing Profile: Posts: yoda174
Check out our Community Blogs
Community Stats
- Group Just Joined
- Active Posts 22
- Profile Views 4171
- Member Title CC Newcomer
- Age Age Unknown
- Birthday Birthday Unknown
-
Gender
Not Telling
-
Location
Hungary
-
Interests
Programing,Internet
Posts I've Made
In Topic: c# Tutorial : How write a password protected application.
18 May 2011 - 11:58 AM
Ok. I work on the project and if it will be completted i will publicate it

In Topic: TCP Port stops responding after running for a few hours
09 July 2010 - 11:10 AM
And what kind of game do you work about?
I want to know more about game servers with c#. Please let me know : harsanyi.david1993@gmail.com
Thanx and sory for my englosh

Thanx and sory for my englosh
In Topic: c# Tutorial : How write a password protected application.
28 June 2010 - 01:29 AM
In my opinion it is possible... I try implement and if work i send you a pm.

In Topic: Error in Client Socket Program, plz help!!!
28 June 2010 - 01:16 AM
Hy. Create a label whit name "label1", a textbox with name "textbox1' and rebuild. If dont work please send me e-mail and i send you the working files 
My e-mail : harsanyi.david1993@gmail.com

My e-mail : harsanyi.david1993@gmail.com
In Topic: Error in Client Socket Program, plz help!!!
24 June 2010 - 12:02 PM
Please try this
I dont know IAX/IAX2...
Client
using System; using System.Net.Sockets; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { TcpListener serverSocket = new TcpListener(8888); int requestCount = 0; TcpClient clientSocket = default(TcpClient); serverSocket.Start(); Console.WriteLine(" >> Server Started"); clientSocket = serverSocket.AcceptTcpClient(); Console.WriteLine(" >> Accept connection from client"); requestCount = 0; while ((true)) { try { requestCount = requestCount + 1; NetworkStream networkStream = clientSocket.GetStream(); byte[] bytesFrom = new byte[10025]; networkStream.Read(bytesFrom, 0, (int)clientSocket.ReceiveBufferSize); string dataFromClient = System.Text.Encoding.ASCII.GetString(bytesFrom); dataFromClient = dataFromClient.Substring(0, dataFromClient.IndexOf("$")); Console.WriteLine(" >> Data from client - " + dataFromClient); string serverResponse = "Server response " + Convert.ToString(requestCount); Byte[] sendBytes = Encoding.ASCII.GetBytes(serverResponse); networkStream.Write(sendBytes, 0, sendBytes.Length); networkStream.Flush(); Console.WriteLine(" >> " + serverResponse); } catch (Exception ex) { Console.WriteLine(ex.ToString()); } } clientSocket.Close(); serverSocket.Stop(); Console.WriteLine(" >> exit"); Console.ReadLine(); } } }
I dont know IAX/IAX2...
Client
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Net; using System.Net.Sockets; namespace WindowsFormsApplication1 { public partial class Form1 : Form { System.Net.Sockets.TcpClient clientSocket = new System.Net.Sockets.TcpClient(); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { msg("Client Started"); clientSocket.Connect("127.0.0.1", 8888); label1.Text = "Client Socket Program - Server Connected ..."; NetworkStream serverStream = clientSocket.GetStream(); byte[] outStream = System.Text.Encoding.ASCII.GetBytes("Message from Client$"); serverStream.Write(outStream, 0, outStream.Length); serverStream.Flush(); byte[] inStream = new byte[10025]; serverStream.Read(inStream, 0, (int)clientSocket.ReceiveBufferSize); string returndata = System.Text.Encoding.ASCII.GetString(inStream); msg("Data from Server : " + returndata); } public void msg(string mesg) { textBox1.Text = textBox1.Text + Environment.NewLine + " >> " + mesg; } } }
Recommended from our users: Dynamic Network Monitoring from WhatsUp Gold from IPSwitch. Free Download
- Codecall
- → Viewing Profile: Posts: yoda174
- Privacy Policy
- Guidelines ·