-
Posted to
Extensibility
by
SimonKing
on
05-11-2009, 11:04 AM
OK finally got to the problem, as pointed out the methods weren't being marked as exported. The def file was not being used for the 64 bit build yet was for the 32 bit build. Probably a noob style error as I'm not so hot on VC++. I tracked it down using the depends tool from the platform SDK, which showed me that the methods were ...
-
Posted to
Extensibility
by
SimonKing
on
05-10-2009, 5:42 PM
I have managed to work this one out, if the request is for a url of just / then allow the request to fall through as there is a site at / it will deal with the inital requests which may have a method of options or search. WebDave sends that request first before interrogating the actual folder so when the folder is included in the url we can prefix ...
-
Posted to
Extensibility
by
SimonKing
on
05-10-2009, 8:32 AM
Thanks for that but how do I Identify what's missing or not being exposed? As I said the exact same code works on intel 32 bit windows 2003 (SP2) but not on AMD 64 bit windows 2003 (SP2). Sadly I can't run the code or iis in 32 bit mode as the application being run is 64 bit and fails if I try to set everything to 32 bit.
I'm ...
-
Posted to
Extensibility
by
SimonKing
on
05-09-2009, 6:33 PM
Hi
I have created an ISAPI filter using the mfc classes and it works fine on my developemnt environment which is an intel 32 bit system. However, when I load the same filter onto a 64 bit AMD system I get an error when the filter is loaded. I have built the filter in AMD64bit mode but I get a message "The HTTP Filter DLL *****.dll failed to ...
-
Posted to
Extensibility
by
SimonKing
on
04-27-2009, 7:02 AM
Hi
I need to add an ISAPI filter which allows for WebDav requests to either be redirected or the Url to be modified. We have a site that currently has urls similar to:
http://site.domain.com/sitename/ this is a WSS 2.0 site. We are moving to WSS 3.0 and are moving the sites in the hierachy to allow for a better distribution of sites ...