This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 11327 - empty.xml not found during mounting FS
Summary: empty.xml not found during mounting FS
Status: RESOLVED FIXED
Alias: None
Product: www
Classification: Unclassified
Component: Builds & Repositories (show other bugs)
Version: 3.x
Hardware: PC Windows ME/2000
: P2 blocker (vote)
Assignee: nbbuild-issues@ide
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-04-11 20:02 UTC by Jan Pokorsky
Modified: 2001-05-06 14:15 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
exception stacktrace (4.58 KB, text/plain)
2001-04-11 20:06 UTC, Jan Pokorsky
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jan Pokorsky 2001-04-11 20:02:44 UTC
[RC1] SystemFileSystem/vcs/config/empty.xml not found during mounting FS.

Steps to reproduce the bug:
1. File->Mount Filesystem
2. Select Add (other file system type)
3. Exception is shown.
Comment 1 Jan Pokorsky 2001-04-11 20:06:06 UTC
Created attachment 1091 [details]
exception stacktrace
Comment 2 Martin Entlicher 2001-04-11 20:17:05 UTC
Can you please attach the build number ?
I was not able to reproduce it. Do you have a clean build, or did you import
some projects from older builds ?
Comment 3 Jan Pokorsky 2001-04-11 20:30:05 UTC
I attached build number [RC1] == release candidate 1 ;-) I guess it is 
release32-27. I and David Struple have reproduced this bug also with own today 
build. I do not think projects has any impact on this behavior. One build had 
imported projects but the other not.
Comment 4 Jiri Kovalsky 2001-04-12 09:14:28 UTC
I have to confirm that I wasn't successful to reproduce it as well on fresh RC1 
of NetBeans 3.2 build #28.
Comment 5 Martin Entlicher 2001-04-12 12:49:52 UTC
This bug can be reproduced ONY in builds produced on non-Unix platform.
The reason is, that in vcsgen/build.xml is a makelayer task, that put files on a
XML layer. This task create URL to these files with system-dependent file
separator. However the XMLFileSystem needs '/' as a separator to be able to
locate that file in a JAR. Therefore all java.io.File.separatorChar occurences
should be replaced by '/' in this task.
Changing product to nbbuild.
Comment 6 Michal Zlamal 2001-04-12 14:30:10 UTC
I fixed it for maintrunk by hard replacement of \ chars with / in
org.netbeans.nbbuild.MakeLayer ant task.
Comment 7 Michal Zlamal 2001-04-19 13:44:56 UTC
Fixed for release32, too, with same patch as for dev.