Hello
I'm trying to consume a .net webserivce from a classic asp page. I followed this guide:
http://www.codeproject.com/KB/dotnet/dotnetcomponentandasp.aspx
I have a .net class which is a proxy class generated from the webservice's wdsl, I marked the assembly to be COM-visible and registered it on my IIS server with regasm.
So far, so good - I can create the object on the asp page like this:
Dim Obj
Set Obj = Server.CreateObject("Namespace.testClass")
the testClass looks like this:
public partial class testClass { ... }
Now this was just for testing, now I want to create an object, whose class looks like this:
public partial class testClass2 : Microsoft.Web.Services3.WebServicesClientProtocol { ... }
And then I get an asp error ('ASP 0177 : 80131509'), obviously because Microsoft.Web.Services3.WebServicesClientProtocol (which is contained in Microsoft.Web.Services3.dll) cannot be found/referenced/whatever the correct term is.
Microsoft.Web.Services3.dll is referenced correctly in the Visual Studio project and it is also in the GAC of the server. Now how do I make that library available to asp?
I'd be grateful for any help. Thanks!