Omar Abid
Omar Abid

Reputation: 15976

Remote Dot net application

I have heard of remote dot net application. What I have understood that the application works on the client side, while it's on the server. This mean client can't access code and also need to connect to server to access application. I'm not sure of that, is that the purpose. Also does it have a relation with Windows Azure? some clarifications and links appreciated and thanks :)

Upvotes: 1

Views: 570

Answers (3)

Tim Matthews
Tim Matthews

Reputation: 5121

Azure is cloud computing which is a step up from smart thin clients. Also I'd like to point out that smart thin clients don't have to run in the browser like is very commonly misunderstood.

Upvotes: 0

eglasius
eglasius

Reputation: 36037

Here are some forms of remote applications (not sure which you are referring to):

  • You can build/run .net applications from network shares (with restrictions)
  • click-once, allows you to provide a simple installer link on a web page, with auto-update capabilities
  • silverlight - flash like interface in the browser (not quite, but simplest way I found to say it)
  • Azzure: you can host .net applications on the net, but that is more around exposing/consuming a variety of services and exposing it on the web (no relation to actually running it remotely like the network share case)

Upvotes: 0

abhilash
abhilash

Reputation: 5651

I'm not quite sure what your question is. But, you might want to look at .NET Remoting, read an article from code project here

Windows Azure is a cloud based operating systems & offers various .NET Services on the cloud, read Windows Azure - Breaking It Down by Justin Etheredge

Upvotes: 2

Related Questions