views:

31

answers:

0

I have a little problem implementing in this company that I work in, We have 3 .NET developers (me included) and a Delphi (pascal) guy that we have a lot of big programs/applications and I need to pass 2 of them to a Web Application.

My idea is to divide the core functionality of the already existing windows applications so, using ASP.NET, so I can use that functionality instead of creating everything again.

What will be the best solution to create this Core?

I thought of Service (WCF) that we can run as a Windows Service, but everything is written in Delphi and that will mean to convert almost everything (except the UI stuff)

I thought about creating a Library (DLL), but because it's Delphi, I will need to load it (in the ASP.NET project) as a COM and I will have problems in 64 bit servers.

I would love to hear (read) your thoughts about this, because this is merely theory, I have no idea if this will actual work, and what (besides the 64 bit servers and the COM stuff) I will find out along the road.