Click here to Skip to main content
15,922,512 members
Home / Discussions / C#
   

C#

 
GeneralRe: Synchronization via Locks Pin
SeMartens15-Jan-09 23:24
SeMartens15-Jan-09 23:24 
GeneralRe: Synchronization via Locks Pin
the_jat15-Jan-09 23:32
the_jat15-Jan-09 23:32 
QuestionCan I programmatic enumerate running processes? Pin
devvvy15-Jan-09 20:18
devvvy15-Jan-09 20:18 
AnswerRe: Can I programmatic enumerate running processes? Pin
J a a n s15-Jan-09 20:36
professionalJ a a n s15-Jan-09 20:36 
GeneralRe: Can I programmatic enumerate running processes? Pin
SeMartens15-Jan-09 21:08
SeMartens15-Jan-09 21:08 
GeneralRe: Can I programmatic enumerate running processes? Pin
devvvy16-Jan-09 4:08
devvvy16-Jan-09 4:08 
AnswerRe: Can I programmatic enumerate running processes? Pin
Bharat Jain15-Jan-09 21:13
Bharat Jain15-Jan-09 21:13 
QuestionTCP/IP programming in web Pin
kiran_kumar53815-Jan-09 20:11
kiran_kumar53815-Jan-09 20:11 
Hello all,
here i am facing some problem in implementing tcp/ip in my web space.
The application is like this.
In the web space, server program has to be executed which listens for the tcp clients. Once we connect to the corresponding server ip and port number from client, server has to accept the client and display the messages sent from the client.
Now the problem is
though i connect from the client by specifying approproiate server ip and port number, server is unable to accept it.
The code i have used in the server program is as follows.

Int32 port = pno;
IPAddress localAddr = IPAddress.Parse("<server ip>");
server = new TcpListener(localAddr, port);
// Start listening for client requests.
server.Start();
// Enter the listening loop.
while (true)
{					
	client = server.AcceptTcpClient();//execution is getting struck here.
}


Plese let me know if i am doing any thing wrong here.
I can provide any other information if required.
PS: the same thing in working in LAN

Thanks in advance.
AnswerRe: TCP/IP programming in web Pin
SeMartens16-Jan-09 3:37
SeMartens16-Jan-09 3:37 
QuestionAdding list of File names from Folder to a Dropdownlist in C# Pin
Vimalsoft(Pty) Ltd15-Jan-09 20:08
professionalVimalsoft(Pty) Ltd15-Jan-09 20:08 
AnswerRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Guffa15-Jan-09 20:21
Guffa15-Jan-09 20:21 
GeneralRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Vimalsoft(Pty) Ltd15-Jan-09 20:36
professionalVimalsoft(Pty) Ltd15-Jan-09 20:36 
GeneralRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Guffa15-Jan-09 20:53
Guffa15-Jan-09 20:53 
GeneralRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Vimalsoft(Pty) Ltd15-Jan-09 21:00
professionalVimalsoft(Pty) Ltd15-Jan-09 21:00 
GeneralRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Giorgi Dalakishvili15-Jan-09 22:18
mentorGiorgi Dalakishvili15-Jan-09 22:18 
GeneralRe: Adding list of File names from Folder to a Dropdownlist in C# Pin
Guffa16-Jan-09 1:20
Guffa16-Jan-09 1:20 
QuestionArrayList as member of another array list Pin
ptr_Electron15-Jan-09 19:49
ptr_Electron15-Jan-09 19:49 
AnswerRe: ArrayList as member of another array list Pin
Guffa15-Jan-09 20:25
Guffa15-Jan-09 20:25 
QuestionHow to Create MouseDoubleClick Event in C# Pin
raj23136215-Jan-09 19:32
raj23136215-Jan-09 19:32 
AnswerRe: How to Create MouseDoubleClick Event in C# Pin
dan!sh 15-Jan-09 21:11
professional dan!sh 15-Jan-09 21:11 
Questionhow to use the listviewitem... Pin
lincyang15-Jan-09 19:30
lincyang15-Jan-09 19:30 
AnswerRe: how to use the listviewitem... Pin
SeMartens15-Jan-09 21:15
SeMartens15-Jan-09 21:15 
GeneralRe: how to use the listviewitem... Pin
lincyang20-Jan-09 14:56
lincyang20-Jan-09 14:56 
QuestionImplementation of kerberos in web application without using WSE Pin
lachu00915-Jan-09 19:29
lachu00915-Jan-09 19:29 
QuestionAbout downloading file Pin
tauras8115-Jan-09 18:10
tauras8115-Jan-09 18:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.