SOAP Envelope Example


The following example illustrates a SOAP request that can be submitted to Microsoft Provisioning Framework (MPF) via SOAP ISAPI.

Synchronous SOAP Request

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
  <SOAP-ENV:Header SOAP-ENV:encodingStyle="">
	<provisioning SOAP-ENV:encodingStyle="" SOAP-ENV:mustUnderstand="1">
	<namespace>Test Namespace</namespace>
	<procedure>Write Request</procedure>
	</provisioning>
  </SOAP-ENV:Header>
  <SOAP-ENV:Body SOAP-ENV:encodingStyle="">
	<organizations>
	<organization name="tailspintoys.com"></organization>
	</organizations>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

See Also

SOAP Envelope Schema


Up Top of Page
© 1999-2002 Microsoft Corporation. All rights reserved.