Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

schema attached to a word document unavilable on transport

Can anyone help me in solving the issue related to wordml transporting along with schema.Means when I open a wordml document which is attached to a schema in another system,it showing schema unavailable.
Pls help me to solve this issue.
Cheers
Robin
[268 byte] By [robinjoseph] at [2007-11-11 8:31:02]
# 1 Re: schema attached to a word document unavilable on transport
AFAIK, the only reliable URL for the WordprocessingML schemas is http://rep.oio.dk/microsoft.com/officeschemas/xsds/WordprocessingML_Schemas/office.xsd.

The following validates using MSXML 4.0:

<?xml version="1.0" encoding="UTF-8"?>
<?mso-application progid="Word.Document"?>
<w:wordDocument
xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml"
xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:w10="urn:schemas-microsoft-com:office:word"
xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core"
xmlns:aml="http://schemas.microsoft.com/aml/2001/core"
xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://rep.oio.dk/microsoft.com/officeschemas/xsds/WordprocessingML_Schemas/office.xsd">
<w:body>
<w:p>
<w:r>
<w:t></w:t>
</w:r>
</w:p>
</w:body>
</w:wordDocument>

Gerald
XML Copy Editor (http://xml-copy-editor.sourceforge.net)
geralds at 2007-11-11 23:28:39 >