Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
4/8/2010

The following XML examples can be used as templates to configure settings for the LoaderRevocationConfiguration Service Provider.

Note:
To use this example, you must replace the values as appropriate, and add the node as a child of the SyncBody node in an OMA DM provisioning file. For more information about the syntax of the provisioning file, see OMA DM Provisioning Files.

Query, Add, and Delete Revocation Hashes Example

This example shows how to query, add, and delete revocation hashes

Copy Code
		<CmdID>1</CmdID>
		<!-- Query for hash that isn't there -->
		<Get>
			<CmdID>2</CmdID>
			<Item>
		
<Target><LocURI>./Vendor/MSFT/LoaderRevocation/{hash of
certificate or application}</LocURI></Target>
			</Item>
		</Get>

		<!-- Add Sample Hash -->
		<Add>
			<CmdID>3</CmdID>
			<Item>
		
<Target><LocURI>./Vendor/MSFT/LoaderRevocation/{hash of
certificate or application}</LocURI></Target>
				<Meta>
					<Format
xmlns="syncml:metinf">null</Format>
				</Meta>
				<Data />
			</Item>
		</Add>

		<!-- Query it again -->
		<Get>
			<CmdID>4</CmdID>
			<Item>
		
<Target><LocURI>./Vendor/MSFT/LoaderRevocation/{hash of
certificate or application}</LocURI></Target>
			</Item>
		</Get>

		<!-- Delete it to clean up -->
		<Delete>
			<CmdID>5</CmdID>
			<Item>
		
<Target><LocURI>./Vendor/MSFT/LoaderRevocation/{hash of
certificate or application}</LocURI></Target>
			</Item>
		</Delete>

See Also