WINCE 6.0 / PXA300 : Error ASP or JScript or VBScript libraries were not properly installed on this device

Hello,

I want to activate ASP Jscript module in a custom generated WINCE6.0 image for a PXA300 Card. But unfortunately, calling a test.asp page returns :

Error in initialization of scripting engine:
The ASP or JScript or VBScript libraries were not properly installed on this device

Error = 0x800401f3

Seems there is a bug in the BSP to activate this functionnality…
Do you have an idea please ?

I have selected for the SYSGEN phase :

User selected the following SYSGEN variables :
SYSGEN_ASP=1
SYSGEN_ASP_JSCRIPT=1

So my module list has :

jscript.dll            .text    80b64000  659456  657408  657364 o32_rva=00001000
jscript.dll            .rsrc    80c05000   12288   11264   10916 o32_rva=000ad000
httpd.dll              .text    80c08000  135168  134144  133953 o32_rva=00001000
httpd.dll              .rsrc    80c29000    8192    5120    4784 o32_rva=00025000
asp.dll                .text    80c2b000   61440   58880   58450 o32_rva=00001000
asp.dll                .rsrc    80c3a000   12288   10752   10740 o32_rva=00012000
httpdadm.dll           .text    80c3d000   49152   46080   45806 o32_rva=00001000

Here is my ASP page

!DOCTYPE html>
<html>
	<HEAD>
		<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>

	</HEAD>

	<body>	


	<% 
 Dim dtmHour, strGreeting
 dtmHour = Hour(Now())

 If dtmHour < 12 Then
  strGreeting = "Good Morning!"
 Else 
  strGreeting = "Hello!"
 End If  
 Response.Write(strGreeting)
%> 

	</body>
</html>

Hi @ANSEL ,

Unfortunately i don’t have much experience with ASP… but i think it should work (as i heard from other customers)
Also i think your server side script looks more like VB than JScript, so i guess you have to include VBScript.dll in your image to make it work.