Poznámka
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
Níže najdete schéma požadavku Get a odpovídající definici schématu odpovědi a příklad každého z nich.
Schéma žádosti Get
Požadavek Get a odpověď slouží k dotazování tiskárny na jednu nebo více jejích aktuálních hodnot.
V tomto příkladu existují tři dotazy. První dotaz odkazuje na konkrétní hodnotu schématu obousměrné komunikace a druhý na vlastnost Bidirectional Communications Schema, která definuje podstrom. Třetí je úmyslná chyba: ve schématu obousměrné komunikace neexistuje žádná vlastnost <Foo>. (Odpověď na tento požadavek je v následující části Schéma získání odpovědi.)
<bidi:Get xmlns:bidi="https://schemas.microsoft.com/windows/2005/03/printing/bidi">
<Query schema='\Printer.Configuration.DuplexUnit:Installed'/>
<Query schema='\Printer.Configuration.HardDisk'/>
<Query schema='\Printer.Foo'/>
</bidi:Get>
Formální definice schématu GET požadavku
<?xml version='1.0'?>
<schema targetNamespace="https://schemas.microsoft.com/windows/2005/03/printing/bidi"
xmlns:bidi="https://schemas.microsoft.com/windows/2005/03/printing/bidi"
xmlns ='https://www.w3.org/2001/XMLSchema'>
<element name='Get'>
<complexType>
<sequence maxOccurs='unbounded'>
<element name='Query'>
<complexType>
<attribute name='schema' type='bidi:PARTIAL_SCHEMA_STRING' use='required'/>
<anyAttribute namespace='##other' processContents='skip'/>
</complexType>
</element>
</sequence>
<anyAttribute namespace='##other' processContents='skip'/>
</complexType>
</element>
<simpleType name='PARTIAL_SCHEMA_STRING'>
<restriction base='string'>
<pattern value='\(\w+(\.\w+)*(\:\w+)?)?'/>
</restriction>
</simpleType>
</schema>
Schéma získání odpovědi
Tento příklad je odpovědí na výše uvedený požadavek Get. U dotazů, které uspěly, je výsledkem hodnota konkrétního schématu. Třetí dotaz selhal, takže výsledkem je kód chyby. Všimněte si, že protože druhý dotaz požadoval vlastnost, která má děti, odpověď poskytuje název a hodnotu všech dětí.
<bidi:Get xmlns:bidi="https://schemas.microsoft.com/windows/2005/03/printing/bidi">
<Query schema='\Printer.Configuration.DuplexUnit:Installed'/>
<Schema name='\Printer.Configuration.DuplexUnit:Installed'>
<BIDI_BOOL>true</BIDI_BOOL>
</Schema>
</Query>
<Query schema='\Printer.HardDisk'>
<Schema name='\Printer.HardDisk:Installed'>
<BIDI_BOOL>true</BIDI_BOOL>
</Schema>
<Schema name='\Printer.HardDisk:Capacity'>
<BIDI_INT>20971520</BIDI_INT>
</Schema>
<Schema name='\Printer.HardDisk:FreeSpace'>
<BIDI_INT>10460419</BIDI_INT>
</Schema>
</Query>
<Query schema='\Printer.Foo'>
<Error>ERROR_BIDI_SCHEMA_NOT_SUPPORTED</Error>
</Query>
</bidi:Get>
Formální definice schématu získání odpovědi
<?xml version='1.0'?>
<schema targetNamespace="https://schemas.microsoft.com/windows/2005/03/printing/bidi"
xmlns:bidi="https://schemas.microsoft.com/windows/2005/03/printing/bidi"
xmlns ='https://www.w3.org/2001/XMLSchema'>
<element name='Get'>
<complexType>
<sequence maxOccurs='unbounded'>
<element name='Query'>
<complexType>
<choice>
<sequence maxOccurs='unbounded'>
<element name='Schema'>
<complexType>
<choice>
<element name='BIDI_STRING' type='string'/>
<element name='BIDI_TEXT' type='string'/>
<element name='BIDI_ENUM' type='string'/>
<element name='BIDI_INT' type='integer'/>
<element name='BIDI_FLOAT' type='float'/>
<element name='BIDI_BOOL' type='boolean'/>
<element name='BIDI_BLOB' type='base64Binary'/>
</choice>
<attribute name='name' type='bidi:SCHEMA_STRING' use='required'/>
</complexType>
</element>
</sequence>
<element name='Error' type='integer'/>
</choice>
<attribute name='schema' type='bidi:PARTIAL_SCHEMA_STRING' use='required'/>
</complexType>
</element>
</sequence>
</complexType>
</element>
<simpleType name='SCHEMA_STRING'>
<restriction base='string'>
<pattern value='\\\w+(\.\w+)*\:\w+'/>
</restriction>
</simpleType>
<simpleType name='PARTIAL_SCHEMA_STRING'>
<restriction base='string'>
<pattern value='\(\w+(\.\w+)*(\:\w+)?)?'/>
</restriction>
</simpleType>
</schema>