Debugging a Domino / Notes DSAPI filter

I have built a DLL for Domino Server 8.5 for Windows and installed it as a DSAPI filter, but every time I restart Domino I get "HTTP Server: Could not load DSAPI module C: \ path_to_filter \ filter.dll"

Is there a way to determine why this is not loading?

I built a DLL from a C ++ project in Visual Studio 2008 and used Libraries and includes the Lotus API for Notes / Domino 8.5. I copied most of the code from the DSAPI filter sample, but removed most of the actual functionality so I can fill it in with my own. This doesn't seem like a bug with the code as I haven't been able to find the actual exception at this point.

+2


source to share


2 answers


Get depends.exe and run it in your DLL. It will show you what other dlls it is loading and errors when it cannot find one of them.



+3


source


Try to set debug_dsapi = 10 on your ini server and parse its output about what errors might be thrown



0


source







All Articles