unc path to related artifact fails if space in pathname
Accepted answer
RTC code uses the java lang URI API - http://docs.oracle.com/javase/1.5.0/docs/api/java/net/URI.html
that implements the URI spec - http://www.ietf.org/rfc/rfc2396.txt
You'll notice in this spec that white space have to be escaped (which is basically the workaround Susan found)
So this is working as designed.
that implements the URI spec - http://www.ietf.org/rfc/rfc2396.txt
You'll notice in this spec that white space have to be escaped (which is basically the workaround Susan found)
So this is working as designed.