I'm developing a DLL in C++ that is accessed from an ASP page. When running the page this error is thrown:
Object doesn't support this property or method: 'ldap_obj.objectVersion'
The method objectVersion() does exist; as I browse component services I can see that method for my object. Plus, all other methods in the object work perfectly, so I assume it to be a problem with the C++ side of everything. I am at a loss as to what may be causing this error. Does anyone have any suggestions?
The C++ code:
STDMETHODIMP Cuserinfo:bjectVersion(long *versionNumber)
{
*versionNumber = 2;
return S_OK;
}
The line in the ASP file that is throwing the error:
versionNumber = ldap_obj.objectVersion()
Object doesn't support this property or method: 'ldap_obj.objectVersion'
The method objectVersion() does exist; as I browse component services I can see that method for my object. Plus, all other methods in the object work perfectly, so I assume it to be a problem with the C++ side of everything. I am at a loss as to what may be causing this error. Does anyone have any suggestions?
The C++ code:
STDMETHODIMP Cuserinfo:bjectVersion(long *versionNumber)
{
*versionNumber = 2;
return S_OK;
}
The line in the ASP file that is throwing the error:
versionNumber = ldap_obj.objectVersion()