Web-server

Hello
I’ve done a search of this forum, but I’m not sure what I should be searching for to find a solution.

I’m implementing a small web-server on an RCM using DC10.64.
The web pages run fine using a PC browser, but I’m having a little trouble understanding how to get all of the pages into my Digi code.

I’ve done an #ximport for all of the pages, and I understand that each needs to be associated with the web server using SSPEC_RESOURCE_XMEMFILE.

If I have

SSPEC_RESOURCETABLE_START
	SSPEC_RESOURCE_XMEMFILE("/index.zhtml", front_page),
	SSPEC_RESOURCE_XMEMFILE("/admin/index.zhtml", admin_zhtml),
	SSPEC_RESOURCE_XMEMFILE("/admin/update.zhtml", update_zhtml),
	SSPEC_RESOURCE_XMEMFILE("/admin/lighting.zhtml", lighting_zhtml)
SSPEC_RESOURCETABLE_END

then I get a compilation error (string is too long).
What do I not understand?
Thanks.

Ok, in reply to my own post.
The string in question (too large) is the “/admin/lighting.zhtml” bit. If I reduce the length of this to “/admin/light.zhtml” then it all compiles without errors. So, does anyone know how to inform DC that I want to use longer names?