Can a VC++ application be converted to the web?
-
Lets say you have a simple project in VC++. Is there an easy way (or a way) to compile that project so that the program can be run as a web application? If so, we visual studio compiler do you need to do this. Please, any response any one can give me will be greatly appreciated.
-
Lets say you have a simple project in VC++. Is there an easy way (or a way) to compile that project so that the program can be run as a web application? If so, we visual studio compiler do you need to do this. Please, any response any one can give me will be greatly appreciated.
No there isn't an easy way to do it. You must redesign the application as a Web one (that is, roughly speaking, a client/server one). :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
No there isn't an easy way to do it. You must redesign the application as a Web one (that is, roughly speaking, a client/server one). :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]With that said, why not try Windows Azure.. The Windows Azure Platform is a Microsoft cloud platform used to build, host and scale web applications through Microsoft datacenters. The Azure Services Platform can currently run .NET Framework applications compiled for the CLR, while supporting the ASP.NET application framework and associated deployment methods to deploy the applications onto the cloud platform. Azure Tutorial; Be in cloud Azure Tutorial; Be in cloud (Part 3) [Web Role][^] Windows Azure Storage Windows Azure Storage[^] Get started now with the Windows Azure platform http://www.microsoft.com/windowsazure/learn/get-started/?campaign=getstarted[^] Windows Azure SDK http://www.microsoft.com/windowsazure/sdk/[^] Windows Azure SDK and Windows Azure Tools for Microsoft Visual Studio http://www.microsoft.com/download/en/details.aspx?id=15658[^] Windows Azure Platform http://msdn.microsoft.com/en-us/magazine/ee309870.aspx[^]
-
Lets say you have a simple project in VC++. Is there an easy way (or a way) to compile that project so that the program can be run as a web application? If so, we visual studio compiler do you need to do this. Please, any response any one can give me will be greatly appreciated.
This is of course going to depend on what the C++ applicaiton is doing, and how (of if) it is communicating with other modules. If it is talking to Hardware, doing DCOM, and generally being very much part of a PC, then no. It is impossible. If it isnt, then how about just importing the code into a C# project? (And doing the necessary syntax changes)
============================== Nothing to say.
-
This is of course going to depend on what the C++ applicaiton is doing, and how (of if) it is communicating with other modules. If it is talking to Hardware, doing DCOM, and generally being very much part of a PC, then no. It is impossible. If it isnt, then how about just importing the code into a C# project? (And doing the necessary syntax changes)
============================== Nothing to say.
I was going to say "it depends", but you were more eloquent about it! :thumbsup: :-D
-
With that said, why not try Windows Azure.. The Windows Azure Platform is a Microsoft cloud platform used to build, host and scale web applications through Microsoft datacenters. The Azure Services Platform can currently run .NET Framework applications compiled for the CLR, while supporting the ASP.NET application framework and associated deployment methods to deploy the applications onto the cloud platform. Azure Tutorial; Be in cloud Azure Tutorial; Be in cloud (Part 3) [Web Role][^] Windows Azure Storage Windows Azure Storage[^] Get started now with the Windows Azure platform http://www.microsoft.com/windowsazure/learn/get-started/?campaign=getstarted[^] Windows Azure SDK http://www.microsoft.com/windowsazure/sdk/[^] Windows Azure SDK and Windows Azure Tools for Microsoft Visual Studio http://www.microsoft.com/download/en/details.aspx?id=15658[^] Windows Azure Platform http://msdn.microsoft.com/en-us/magazine/ee309870.aspx[^]
With that said, why not reply directly to the OP, because he won't otherwise receive any email notification of your post (which might actually be of benefit).
"Real men drive manual transmission" - Rajesh.
-
Lets say you have a simple project in VC++. Is there an easy way (or a way) to compile that project so that the program can be run as a web application? If so, we visual studio compiler do you need to do this. Please, any response any one can give me will be greatly appreciated.
As others have said, no, not in any universal way. However, Google's browser Chrome can now run plugins written in C or C++ through their Native Client. You'd have to use their modified GCC compiler, and it would only work in Chrome, but would let you re-compile to a web app.