Every time a song is played through the web playlist provider a 404 error is generated and a fault log is written. This happens even when a file is successfully getting returned to a user.
The error in the fault xml file is "The filename, directory name, or volume label syntax is incorrect."
The files are coming from a share on another computer. This is the path that is showing up in the fault:
\\?\UNC\WLGSQL01\music$\Ween\-Shinola- Vol. 1\03 - I Fell In Love Today.wma
The error itself seems to be thrown from GetFileInfo:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>6</Opcode>
<Keywords>0x200</Keywords>
<TimeCreated SystemTime="2008-08-01T06:43:00.557Z"/>
<Correlation ActivityID="{00000000-0000-0000-4F09-0080000000F6}"/>
<Execution ProcessID="5044" ThreadID="3532"/>
<Computer>WLGWEB01</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-4F09-0080000000F6}</Data>
<Data Name="ModuleName">PlaylistHandler</Data>
<Data Name="Data1">GetFileInfo for playlist: returned 8007007b</Data>
<Data Name="Data2"></Data>
<Data Name="ErrorCode">2147942523</Data>
</EventData>
<RenderingInfo Culture="en-NZ">
<Opcode>MODULE_INFORMATION</Opcode>
<Keywords>
<Keyword>Module</Keyword>
</Keywords>
<freb:Description Data="ErrorCode">The filename, directory name, or volume label syntax is incorrect.
(0x8007007b)</freb:Description>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D79A948E-95F1-417B-A731-B7A79DEC7AE5}</EventGuid>
</ExtendedTracingInfo>
</Event>
How do I fix this? It is making tracking down actual errors very hard.