On Mon 2008-08-11 at 09:28h, Lewis, Eric wrote on ivy-user: : > Using an URL with > > <ivy:settings url="file://C:/jp/build/global/ivysettings.xml" />
Technically this is not correct, as the "C:" here is the host part of the URL (the general form of a file URL being "file://host/path"). You might have better luck with "file:///C:/...", which basically means "file://localhost/C:/...". It might be that in the above the ":" in "C:" is taken as a user/password separator, which somehow is taken to mean FTP (as in "ftp://user:[EMAIL PROTECTED]/path"). -- Niklas Matthies
