I use VC build a ISAPI project and creat a static .dll file. This
file run correctly in windows XP,but cannot run in WinCE.net.
I have added all of the component in Web Server(httpd) when building
Core.
I have tried to do this with EVC,but EVC cannot build a ISAPI project
.Can someone give me some advice?
yours
xuhao

Re: how to use ISAPI programming by ctacke/>

ctacke/>
Sun Jun 18 07:17:30 CDT 2006

eVC can build isapi projects, but there's no wizard for it. Create a DLL
project and add new code files as needed. Export the required interfaces
and it will work. There are a few samples in PB such as the sysadmin
filter.

%WINCEROOT%\PUBLIC\SERVERS\SDK\SAMPLES\HTTP\SYSADMIN

-Chris


"xuhao" <xuhao800310@163.com> wrote in message
news:1150622024.126983.178540@h76g2000cwa.googlegroups.com...
> I use VC build a ISAPI project and creat a static .dll file. This
> file run correctly in windows XP,but cannot run in WinCE.net.
> I have added all of the component in Web Server(httpd) when building
> Core.
> I have tried to do this with EVC,but EVC cannot build a ISAPI project
> .Can someone give me some advice?
> yours
> xuhao
>



which dll do I choose? by xuhao

xuhao
Thu Jul 06 20:55:58 CDT 2006


I see that :

> eVC can build isapi projects, but there's no wizard for it. Create a DLL
> project and add new code files as needed. Export the required interfaces
> and it will work.
But there are two wizard for creat a DLL project:WCE Dynamic-Link
Library and WCE
MFC wizard(dll).Which one should I use?
your.