Click here to Skip to main content
15,881,898 members
Articles / Productivity Apps and Services / SAP

How To Access SAP Business Data From Silverlight 4 Clients Using WCF RIA Services And LINQ to SAP

Rate me:
Please Sign up or sign in to vote.
4.92/5 (13 votes)
17 Nov 2010CPOL5 min read 54.4K   582   19  
This article describes how to access and integrate SAP customer data in Silverlight using WCF RIA Services and LINQ to SAP.

This article appears in the Third Party Products and Tools section. Articles in this section are for the members only and must not be used to promote or advertise products in any way, shape or form. Please report any spam or advertising.

using System;
using System.Windows;
using System.Windows.Controls;

namespace SAP2Silverlight
{
	public partial class ErrorWindow : ChildWindow
	{
		public ErrorWindow(Exception e)
		{
			InitializeComponent();
			if(e != null)
			{
				ErrorTextBox.Text = e.Message + Environment.NewLine + Environment.NewLine + e.StackTrace;
			}
		}

		public ErrorWindow(Uri uri)
		{
			InitializeComponent();
			if(uri != null)
			{
				ErrorTextBox.Text = "Page not found: \"" + uri.ToString() + "\"";
			}
		}

		public ErrorWindow(string message, string details)
		{
			InitializeComponent();
			ErrorTextBox.Text = message + Environment.NewLine + Environment.NewLine + details;
		}

		 void OKButton_Click(object sender, RoutedEventArgs e)
		{
			this.DialogResult = true;
		}
	}
}

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
Software Developer (Senior)
Germany Germany
I’m a software developer based in Germany.

Homepage

Comments and Discussions