Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "ALF/architecture/ALF Schemas/EventBaseExample M7.xml"

('''EventBaseExample_M7.xml''')
('''EventBaseExample_M7.xml''')
 
Line 1: Line 1:
 
== '''EventBaseExample_M7.xml''' ==
 
== '''EventBaseExample_M7.xml''' ==
 +
 +
WARNING: OBSOLETE DO NOT USE
 +
 +
 +
 
Below is an example document gnerated from the ALFEventBase_M7.xsd schema.  The SOAP event message uses the EventNotice element definition.  While the SOAP messge will look similar to this XML document its exact form may differ.
 
Below is an example document gnerated from the ALFEventBase_M7.xsd schema.  The SOAP event message uses the EventNotice element definition.  While the SOAP messge will look similar to this XML document its exact form may differ.
  

Latest revision as of 16:13, 26 January 2007

EventBaseExample_M7.xml

WARNING: OBSOLETE DO NOT USE


Below is an example document gnerated from the ALFEventBase_M7.xsd schema. The SOAP event message uses the EventNotice element definition. While the SOAP messge will look similar to this XML document its exact form may differ.

This example is a basic event with no "payload" data.


<?xml version="1.0" encoding="UTF-8"?>
<EventNotice 
	xmlns="http://www.eclipse.org/alf/schema/EventBase/M7" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xsi:schemaLocation="http://www.eclipse.org/alf/schema/EventBase/M7
	D:\PUBLIC\ALF\Schemas\ALFEventBase_M7.xsd" 
	version="1.0">
	<Base Version="1.0">
		<EventId>0fe13841-53b2-4d8b-853b-206fef16c7f9</EventId>
		<Timestamp>2001-12-17T09:30:47.0Z</Timestamp>
		<EventType>String</EventType>
		<ObjectType>String</ObjectType>
		<ObjectId>String</ObjectId>
		<Source>
			<Product>Builder</Product>
			<ProductVersion>6.0</ProductVersion>
			<ProductInstance>Production</ProductInstance>
			<ProductCallbackURI>http://ProductionBuilderServer/BuildertService</ProductCallbackURI>
		</Source>
		<User>
			<CommonName>Joe User</CommonName>
			<LoginID>JUser</LoginID>
			<Credentials/>
		</User>
		<EventControl>
			<EmEventId>89406cda-f8ef-4519-8965-4bf373f234e5</EmEventId>
			<EmTimestamp>2001-12-17T09:30:47.0Z</EmTimestamp>
			<PredecedingEmEventId>08a2334f-9cbf-46e9-a137-84bf9869971e</PredecedingEmEventId>
			<ApplicationName>CustomerServiceBuilder</ApplicationName>
			<ServiceFlowId>4622371c-641b-46d4-a44f-88b919fbc93e</ServiceFlowId>
			<Environment>Production</Environment>
			<EmUser>
				<CommonName>CustomerServiceBuilder</CommonName>
				<LoginID>CustomerServiceBuilder</LoginID>
				<Credentials/>
			</EmUser>
		</EventControl>
	</Base>
</EventNotice>

Back to the top