Title: [c++] Special characters in file names

    I have difficulties when using special characters in file names (like "#"). Those letters are valid Windows filenames, but XSec libraries doesn't know how to handle it (Xerces works fine with them). This is an error message:

"An error occured in XSECURIREsolver when opening an URLInputStream"

This is code example that doesn't work:

sig->createReference(MAKE_UNICODE_STRING("file:///invoice#10.xml"));

This is code example that works fine:

sig->createReference(MAKE_UNICODE_STRING("file:///invoice10.xml"));

Best regards,
Milan

Reply via email to