Click here to Skip to main content
Licence CPOL
First Posted 20 May 2010
Views 19,837
Downloads 470
Bookmarked 15 times

Communication between C++ Silverlight Host and Silverlight Application

By | 20 May 2010 | Article
It explains how we can call a method defined in Silverlight from Silverlight C++ host.

Introduction

I would like you to take a look at my previous article Host_Silverlight_In_ATL before continuing with this one. In this article, we will talk about communication between C++ Silverlight host and Silverlight application which means we can call a method of Silverlight app from C++ Silverlight host.

C__ToSilverlightCommunication.PNG

Things to Do in a Silverlight Application

 using System.Windows.Browser;

Use the above mentioned namespace for communication. We will use HTML communication bridge to communicate with the C++ host.

Use the following statement to register the Communicator object. We will get this communicator object in C++ Silverlight host using IDispath.

HtmlPage.RegisterScriptableObject("Communicator", this);

Write another function in Silverlight application which we will call from C++ Silverlight host.

[ScriptableMember]
public void SetDataInTextBox(string strData)
{
	txtData.Text = strData;
}

The complete code for the Silverlight page is as follows:

using System.Windows.Browser;
namespace SilverlightTestApp
{
	public partial class MainPage : UserControl
	{
		public MainPage()
		{
			HtmlPage.RegisterScriptableObject("Communicator", this);
			InitializeComponent();
		}
		private void ClickMe_Click(object sender, RoutedEventArgs e)
		{	
			MessageBox.Show("Button click handler is in Silverlight :)", 
			"SilverlightTestApp", MessageBoxButton.OK);
		}
		[ScriptableMember]
		public void SetDataInTextBox(string strData)
		{
			txtData.Text = strData;
		}
	}
}

I am not trying to explain Silverlight development issues here but I would like to say the same things we do for Silverlight and JavaScript interaction. If someone is not familiar with the above code, Google Silverlight and JavaScript interaction. Almost every Silverlight book covers this topic.

C++ Silverlight Host

Add an edit box and a button in your dialog box in ATL application. We will enter some test in the edit box and write some code in the click handler of the button we just added.

Handler function for button click. Getting the user input in strData...

LRESULT CCMainDlg::OnBnClickedBtnSendDataToSilverlight
	(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
{
 	CAtlStringW strData;
 	GetDlgItem(IDC_EDIT_DATA).GetWindowTextW(strData);

Now coming to the main point - getting DISPID of Communicator object we just registered in Silverlight app.

IDispatch *pContent;
HRESULT hr = CXcpControlHost::GetXcpControlPtr()->get_Content(&pContent);
CComBSTR bstrMember(L"Communicator");
DISPID dispIDCommunicator = NULL;
hr = pContent->GetIDsOfNames(IID_NULL, &bstrMember, 1, 
	LOCALE_SYSTEM_DEFAULT, &dispIDCommunicator); 
if(FAILED(hr))
{
	::MessageBox(NULL, L"Failed to get the DISPID for Communicator", 
		L"Error :(", 0);
	return 0;
}

Once we have a valid dispID for Communicator object, we are ready to get the IDispatch* for Communicator object. It's a bit tricky here, we will make an invoke call with DISPATCH_PROPERTYGET.

VARIANT pVarResult;
DISPPARAMS dispparams; 
memset(&dispparams, 0, sizeof dispparams);
dispparams.cArgs = 0;
dispparams.rgvarg = NULL;
dispparams.cNamedArgs = 0;
// Getting IDispatch from for Scriptable object exposed by Silverlight Application. 
// Passing dispid for "Communicator" to get its IDispatch* using DISPATCH_PROPERTYGET.
hr = pContent->Invoke(dispIDCommunicator,
IID_NULL,
LOCALE_USER_DEFAULT,
DISPATCH_PROPERTYGET,
&dispparams, &pVarResult, NULL, NULL);
if(FAILED(hr))
{
	::MessageBox(NULL, L"Failed to get the IDsipatch* of Communicator", 
		L"Error :(", 0);
	return 0;
}

IDispatch* pCommunicatorDispatch = pVarResult.pdispVal;

We stored IDispatch* for Communicator in pCommunicatorDispatch. Now we have to play with this pCommunicatorDispatch. This is our key player now, with pCommunicatorDispatch, we will get the DISPID for our exposed method (SetDataInEditBox) from a Silverlight app and then make an Invoke() call to call SetDataInEditBox() by passing that string into that function.

bstrMember = L"SetDataInTextBox";
DISPID dispIDSetDataInTextBox = NULL;
hr = pCommunicatorDispatch->GetIDsOfNames(IID_NULL,&bstrMember,1, 
	LOCALE_SYSTEM_DEFAULT,&dispIDSetDataInTextBox); 
EXCEPINFO pexcepinfo ;
if(SUCCEEDED(hr))
{
	dispparams.cArgs = 1;
	dispparams.cNamedArgs = 1;
	dispparams.rgvarg = new VARIANT[1];
	dispparams.rgvarg[0].vt = VT_BSTR;
	dispparams.rgvarg[0].bstrVal = SysAllocString(strData.GetString());
	hr = pCommunicatorDispatch->Invoke(dispIDSetDataInTextBox, 
		IID_NULL, LOCALE_SYSTEM_DEFAULT, DISPATCH_METHOD, 
		&dispparams, &pVarResult,&pexcepinfo,NULL);
	delete [] dispparams.rgvarg;

	if (hr != S_OK)
	{
		::MessageBox(NULL, L"Failed to Invoke Silverlight function", 
			L"Error :(", 0);
		return 0;
	}
}
else
{
	::MessageBox(NULL, L"Failed to get the DISPID for SetDataInTextBox 
		function defined in Silverlight.", L"Error :(", 0);
}

Conclusion

In this article, I've shown you how to call a function defined in a Silverlight application from C++ Silverlight host.

Hopefully, this article will help you a little bit for Silverlight and C++ interaction.

For questions, comments and remarks, please use the commenting section at the bottom of this article.

History

  • 20th May, 2010: Initial post

License

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

About the Author

Syed Aftab Naqvi

Software Developer (Senior)

United States United States

Member

Syed Aftab Hassan Naqvi

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionquestion about drag and drop Pinmembericexile19:08 1 Dec '11  
QuestionAnd the keyboard ? Pinmembersergiobuonanno5:07 4 Nov '11  
GeneralMy vote of 5 PinmemberMember 34007477:32 23 Oct '11  
Questionunable to load xap file if i use smoothstreaming api to implement the sliverlight application. Pinmemberstevensxiong14:55 22 Feb '11  
Generalwindowless and OleDraw PinmemberKnives8914:27 22 Jan '11  
GeneralRe: windowless and OleDraw PinmemberSyed Aftab Naqvi16:21 22 Jan '11  
GeneralRe: windowless and OleDraw [modified] PinmemberKnives8921:50 22 Jan '11  
GeneralNeed code to send data from silverlight to c++ PinmemberMember 184635810:55 23 Dec '10  
GeneralRe: Need code to send data from silverlight to c++ PinmemberSyed Aftab Naqvi9:23 2 Jun '11  
GeneralOnly works within the context of the UI thread Pinmemberdriverscience7:30 16 Dec '10  
GeneralRe: Only works within the context of the UI thread PinmemberSyed Aftab Naqvi16:23 22 Jan '11  
QuestionC# Version? Pinmembertomaten8:29 6 Nov '10  
Generalhelp Pinmemberliuliu17:26 27 Jun '10  
GeneralRe: help PinmemberSyed Aftab Naqvi13:11 28 Jun '10  
GeneralRe: help Pinmemberliuliu16:44 29 Jun '10  
GeneralRe: help PinmemberSyed Aftab Naqvi5:57 30 Jun '10  
GeneralRe: help Pinmemberliuliu21:39 30 Jun '10  
GeneralRe: help PinmemberSyed Aftab Naqvi10:45 1 Jul '10  
GeneralRe: help Pinmemberliuliu16:35 1 Jul '10  
GeneralRe: help PinmemberSyed Aftab Naqvi9:54 2 Jul '10  
GeneralSilverlight 4 - COM integration PinmemberErnest Laurentin10:07 24 May '10  
GeneralRe: Silverlight 4 - COM integration PinmemberSyed Aftab Naqvi10:26 24 May '10  
GeneralRe: Silverlight 4 - COM integration [modified] PinmemberErnest Laurentin19:21 24 May '10  
GeneralRe: Silverlight 4 - COM integration PinmemberSyed Aftab Naqvi10:32 25 May '10  
GeneralRe: Silverlight 4 - COM integration PinmemberErnest Laurentin12:07 25 May '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 20 May 2010
Article Copyright 2010 by Syed Aftab Naqvi
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid