Client -Server in Windows Applns...

  • Thread starter Thread starter Raj
  • Start date Start date
R

Raj

Hi All..,

I have a VB.Net Windows Application..

I need to Run this Exe From Some Other System(Client) and I need to
Upload some specified files to the Server System..

Now my doubts are..

1) Is client-Server concept is Possible in Windows Applications..

2) Can I pass some arguments to that exe.. from server..





Regards..,

Ramesh.R...
 
Hi,
Hi All..,

I have a VB.Net Windows Application..

I need to Run this Exe From Some Other System(Client) and I need to
Upload some specified files to the Server System..

Now my doubts are..

1) Is client-Server concept is Possible in Windows Applications..

2) Can I pass some arguments to that exe.. from server..

Regards..,

Ramesh.R...

You can use web services from a Windows application using the "add web
reference" dialog in Visual Studio 2005, very handy. You can also use
the System.Net namespace to send HttpWebRequests to any web server you want.

Additionally, you can use .NET remoting (old) or WCF to enable
networking in your Windows application. So yes, client-server is
possible in Windows applications too.

HTH,
Laurent
 
Back
Top