Link to home
Start Free TrialLog in
Avatar of dinoltan
dinoltan

asked on

Visual C++ Web-based application

I've created a Visual C++ dialog-based application with normal Windows controls. Is it possible to put this application on the web? How? If not, what are the alternatives?
Avatar of jhattingh
jhattingh

What do you mean by "put it on the web?"
> Is it possible to put this application on the web? How?

Yep. Completely rewrite and rearchitect the application as an ISAPI extension, or as an ASP script.  I'm sorry, but there's no magic tool to do the conversion for you.

..B ekiM
Avatar of dinoltan

ASKER

What do you mean by an ISAPI extension?
Do you mean using the ISAPI Wizard available in VC++ and how is it going to communicate with the Web documents?
> What do you mean by an ISAPI extension?

I mean, an ISAPI Extension. It's a DLL that loads on the webserver and can be used to provide dynamic content from that website.

 > Do you mean using the ISAPI Wizard available in VC++

You could use that, sure. Or, you could write one from scratch.

 > and how is it going to communicate with the Web documents?

What "web documents" are you talking about?  Seems like you're about to change the scope of your original question.

..B ekiM
I'm developing a WEB-based application, so of course the web server has to communicate with web documents such as HTML files.
ASKER CERTIFIED SOLUTION
Avatar of mikeblas
mikeblas

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial