|
strXML - XML String, representing the Blog Entry record to be added, updated or deleted. To view the
validating XSD Schema, please click here (opens in a new
window). An example is provided here (opens in a new window) or below:
<Entry Entry_ID="14" Date_Created="2004-05-15T010:29:00">
<Title>The Title would go here.</Title>
<URL>http://www.xwebservices.com/announcement.aspx?
aid=14</URL>
<Author>Justin Williams</Author>
<Body>The body would go here.</Body>
</Entry>
To create a new Weblog Entry record, please provide a unique identifier as the value of the
Entry_ID attribute. The easiest way of obtaining a unique identifier
is by calling the GetNewEntryID SOAP method.
If an existing Entry record's identifier is provided as the value of the
Entry_ID attribute, an update of that record will be performed by the system,
as long as any of the child elements are also included in the XML string.
To delete an Entry record from the system, the XML string must consist of only the root element and the
Entry_ID attribute, with the identifier of the record to be deleted as the
attribute's value. Do not provide any of the root node's child elements. An example is provided
below:
<Entry Entry_ID="10" />
|