Forgive the cross post. we're in a bit of a crunch here... We had an issue before where we used virtual mappings in a CFC (in our case it's a web service most of the time) and they didn't work by default.
<cfinclude template="/fooMapping/index.cfm"> For example, the above line won't work by default. You have to go into jrun-web.xml and add this: <virtual-mapping> <resource-path>/fooMapping</resource-path> <system-path>c:/someFolder</system-path> </virtual-mapping> ...and that solved the problem. Now, we're in a spot where we have some Virtual mappings that use UNC paths (\\someServer\folder1\). We got them to work in CF Admin as a regular Virtual Mapping, but of course the CFCs still cannot see this. I just went into jrun-web.xml and added the appropriate <virtual-mapping> settings: <virtual-mapping> <resource-path>/UNCinclude</resource-path> <system-path>\\someServer\include</system-path> </virtual-mapping> ....restarted CF, and no dice. I still get an error about "cannot find file". Is there a trick to using UNC paths like this? Is it even possible? This is on Windows 2000 if that makes any difference. Thanks in advance. Nolan ---------------------------------------------------------- You are subscribed to cfcdev. To unsubscribe, send an email to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev' in the message of the email. CFCDev is run by CFCZone (www.cfczone.org) and supported by Mindtool, Corporation (www.mindtool.com). An archive of the CFCDev list is available at www.mail-archive.com/[EMAIL PROTECTED]
