I'm trying to deserialize XML from an external service, so I have no control over the output XML I receive.
The service's XML is a little strange. It doesn't specify a schema, it references itself. For example:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE response>
<response>
// blah blah
</response>
I can use VS's built in tools to create an XSD file for it, but when deserializing, is it possible to specify a local XSD file? Instead of using the non-existent one in the DOCTYPE tag?