"Steven E. Harris" <[EMAIL PROTECTED]> writes:

> I set Windows back to use "Simple File Sharing" -- something I had
> been toying with yesterday -- and now it works.

Actually, no it doesn't. The problem is spaces in path names. I ran
Sysinternals Process Monitor to catch the problematic file access
operations. iPOJO is using URL syntax as a file name, with spaces
replaced by "%20" and such. Windows fails to allow such a file to be
created if, say, it can't find

  C:\Documents%20and%20Settings\...

On my computer at work, my "My Documents" directory is actually the
root of a mapped drive, so there are no spaces in the path names.

Perhaps rather than calling "new File(url.getFile())" on line 114 in
Manipulator.java, we should reuse the String "path" created on line
75, or the File wrapped around it on line 76, as these paths
apparently contain the non-URL-munged syntax.

-- 
Steven E. Harris

Reply via email to