Up until recently, we were creating webservices (ISAPI DLLs) with RO SDK for Delphi. Currently, we are trying to do the same with RO SDK for .NET. However, at creating a new project in Visual Studio, there is no template for ISAPI DLLs. Only WinForms, Windows Services and Console apps are listed…
Is it in any way possible to create an ISAPI DLL with RO SDK for .NET?
.NET cannot do ISAPI .dlls, afaik, but you can do RTO services hosted in ASP.NET with the “WebHandler” template, which creates a .ashx file to expose your services.
Could you perhaps elaborate a bit more on your answer? I’m afraid I’m not familiar with the term ‘RTO services’. Do you maybe mean RO services? Besides that, I cannot find a ‘WebHandler’ template in VS2010, so some extra hints are very welcome. Thanks in advance!
This is an ASP.NET Web Site (or an ASP.NET Web Application in the upcoming release) that contains a Web Handler definition. This Web Handler provides access to a SDK-based service defined in separate Class Library.
Note that this class library contains .RODL file, service implementation and interface files, but doesn’t contain any network communication code. All network communications are handled by a Web Handler defined in the Handler.ashx file