Click here to Skip to main content
15,896,727 members
Articles / Database Development / SQL Server / SQL Server 2008

Event-Driven Architecture in the Clouds with Windows Azure

,
Rate me:
Please Sign up or sign in to vote.
4.95/5 (23 votes)
5 Feb 2010CPOL14 min read 71.1K   577   58  
To demonstrate Azure and EDA, this article will show you how to build a flight delay management system for all US airports in clouds with Windows Azure.
<?xml version="1.0" encoding="utf-8"?>
<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Name="AirportIcon2" Width="500" Height="500" Clip="F1 M 0,0L 500,0L 500,500L 0,500L 0,0" UseLayoutRounding="False">
	<Canvas x:Name="Layer_1" Width="500" Height="500" Canvas.Left="0" Canvas.Top="0">
		<Ellipse x:Name="Ellipse" Width="464.477" Height="464.477" Canvas.Left="19.0147" Canvas.Top="18.428" Stretch="Fill" StrokeThickness="7" StrokeLineJoin="Round">
			<Ellipse.Stroke>
				<LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
					<LinearGradientBrush.GradientStops>
						<GradientStop Color="#FF171717" Offset="0.595349"/>
						<GradientStop Color="#FF8B8B8B" Offset="0.930233"/>
						<GradientStop Color="#FFFFFFFF" Offset="1"/>
					</LinearGradientBrush.GradientStops>
				</LinearGradientBrush>
			</Ellipse.Stroke>
			<Ellipse.Fill>
				<LinearGradientBrush StartPoint="-0.00765066,0.5" EndPoint="1.00765,0.5">
					<LinearGradientBrush.GradientStops>
						<GradientStop Color="#FF000000" Offset="0"/>
						<GradientStop Color="#FFFFFFFF" Offset="0.748837"/>
					</LinearGradientBrush.GradientStops>
				</LinearGradientBrush>
			</Ellipse.Fill>
		</Ellipse>
		<Path x:Name="Path" Width="290.023" Height="291.155" Canvas.Left="98.8333" Canvas.Top="111.095" Stretch="Fill" StrokeLineJoin="Round" Stroke="#FF000000" Data="F1 M 380.667,147.75L 326,203.083L 326.667,387.083L 310,401.75L 262,259.75L 216.667,302.417L 216.667,357.75L 199.333,372.417L 190,332.417L 161.245,341.412L 169.333,311.083L 129.333,303.083L 142.667,285.083L 198.667,283.75L 238.667,237.75L 99.3333,191.75L 113.333,174.417L 298,173.75L 338,131.083C 344.222,123.972 350.444,116.861 357.444,113.639C 364.444,110.417 372.222,111.083 378.111,115.083C 384,119.083 388,126.417 388.333,132.306C 388.667,138.194 385.333,142.639 383.111,145.306C 380.889,147.972 379.778,148.861 378.667,149.75">
			<Path.Fill>
				<LinearGradientBrush StartPoint="-0.00172996,0.49682" EndPoint="1.01434,0.49682">
					<LinearGradientBrush.GradientStops>
						<GradientStop Color="#FF343434" Offset="0"/>
						<GradientStop Color="#FFFFFFFF" Offset="0.902326"/>
					</LinearGradientBrush.GradientStops>
				</LinearGradientBrush>
			</Path.Fill>
		</Path>
	</Canvas>
</Canvas>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Other
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions