Newbie: Question about communication over the internet

  • Thread starter Thread starter Bart
  • Start date Start date
B

Bart

Hi all,

First of all I am complete new to C# and .net but I learning.

I like to know if it is possible to create an application which can
communicate over the internet with another application. What I mean is
this. Suppose I and a friend are connected to the internet. I like to give
my friend a slide show of my pictures. So both of us are running the
application and he should be able to see the pictures I am sending to him in
some sort of slide show. Is this possible ?

Can someone give me some hints where to start. Any ideas are greatly
appreciated.

Thanks in advance,

Bart Janisse
 
Hello Bart,

Start from the WebServices.
See MSDN for more information

---
WBR,
Michael Nemtsev [C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

B> I like to know if it is possible to create an application which can
B> communicate over the internet with another application.
B>
 
Bart,

Just search on Google in this newsgroup you find tons of samples.
This is a topic thousand times done and therefore not so interesting for
those who real know it to help with.

Cor
 
Bart said:
Can I create a peer to peer application with this technique ?

A "web-service" is a set of functions that one of your computers makes
available to the other computer over the web. That is, opne computer is the
servcer, the other the client.
The nice thing about making web-services using c# and Visual Studio is that
all the low-level communication stuff is done for you by .net and Visual
Studio's "wizards".

/Peter
 
Thanks for the extra explanation Peter. I google for it and hopefully I find
the right information.

Bart
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top