• 0

C++ over ASP?


Question

i'm aware of a way to run a C++ program over PHP, but unfortunately, it only supports applications that have been built using a UNIX compiler. however, i don't want to leave my wonderful visual studio .NET environment for c++ development, and i've heard of a possibility to run C++ applications over ASP. how exactly is this done, and what are the requirements? are there any online tutorials avaiable on this topic?

thanks for your support.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Not sure, but you might want to try making your C++ app COM compliant.

  • In visual studio, create a simple ATL COM project (create as a DLL). An interface should have been created for you.
  • Give your interface some properties and/or methods.
  • Compile this project. Visual Studio will register your component

After your component is registered, you should be able to access that component via ASP using Server.CreateObject().

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.