You need to remove the BOM from your WSDL file.
> --
> You received this message because you are subscribed to the Google Groups "Django users" group.
> To post to this group, send email to django...@googlegroups.com.
> To unsubscribe from this group, send email to django-users...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
>
>
Or, you could use python to read and rewrite that file without the BOM.
You need to check if the first character is actually the BOM. Open the
file in a hex editor and see what the first byte is. It might not be.
A quick Google tells me expat should be able to deal with the BOM, so
it might be some other character. In any case, the first character
needs to be the < character. There can't be any visible/invisible
characters preceding it, e.g. a newline.
If the first two bytes are FE FF then it is the BOM.