Link to home
Start Free TrialLog in
Avatar of NORTEKAS
NORTEKASFlag for Norway

asked on

Enabeling ASP on embedded device

I am trying to enable ASP with the webserver on my embedded device. Thus far I have successfully configured the webserver to work with static html pages. I do not succeed in enabling ASP on the device. When I try to fetch the ASP page I get:

This method is not implemented.

The ASP page is very simple:
<%
Response.write "This is my first response!"
%>

In the build I have enabled the following:
* ASP
* JScript
* VBScript
* Device Management ISAPI Extension

My registry settings are as follows:
[HKEY_LOCAL_MACHINE\COMM\HTTPD]
      "(default)"="\\windows"
      "IsEnabled"=dword:1
      "Basic"=dword:1
      "NTLM"=dword:0
      "DirBrowse"=dword:1
      "A"=dword:0

[HKEY_LOCAL_MACHINE\COMM\HTTPD\VROOTS\/www]
      "(default)"="\\windows"
      "A"=dword:0
Avatar of Mikal613
Mikal613
Flag of United States of America image

which device? what os 2003 or mobile 5?
Avatar of NORTEKAS

ASKER

Embedded, thus using Platformbuilder for MS Windows CE 5.0

Jardar
ASKER CERTIFIED SOLUTION
Avatar of Mikal613
Mikal613
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
No. That does not work, and that should be identical to the example above.
Made clean build and removed some registry settings. Now it is working fine. Thanks anyway.

Jardar