Subject: WinRT Project Help
Hi,
I have just started development of a new winRT app in Visual Studio 2012 using VB.NET.
This is my first experience of winRT apps AND Matrix, so bear with me.
I created a new project based on the splitpage template.
I added the Matrix library DLL to the projects references.
In the sampledatasource.vb file I imported Matrix.Xmpp.Client
I'm adding a new private member (Private WithEvents _myMatrix As XmppClient) to the SampleDataSource object.
In SampleDataSource's New constructor I am running the following code (to connect to google talk):
As soon as this code runs I get an unhandled exception: 'The I/O operation has been aborted because of either a thread exit or an application request. (Exception from HRESULT: 0x800703E3)'
Any ideas why?
Thanks
Chris
I have just started development of a new winRT app in Visual Studio 2012 using VB.NET.
This is my first experience of winRT apps AND Matrix, so bear with me.
I created a new project based on the splitpage template.
I added the Matrix library DLL to the projects references.
In the sampledatasource.vb file I imported Matrix.Xmpp.Client
I'm adding a new private member (Private WithEvents _myMatrix As XmppClient) to the SampleDataSource object.
In SampleDataSource's New constructor I am running the following code (to connect to google talk):
- Dim lic As String = "xxxxxxx"
- Matrix.License.LicenseManager.SetLicense(lic)
- _myMatrix = New XmppClient()
- _myMatrix.Username = "xxxxxx"
- _myMatrix.Password = "xxxxxx"
- _myMatrix.XmppDomain = "xxxxx.com"
- _myMatrix.Hostname = "talk.google.com"
- _myMatrix.Port = 5222
- _myMatrix.Show = Matrix.Xmpp.Show.chat
- _myMatrix.Status = "Testing on Windows 8"
- _myMatrix.Open()
As soon as this code runs I get an unhandled exception: 'The I/O operation has been aborted because of either a thread exit or an application request. (Exception from HRESULT: 0x800703E3)'
Any ideas why?
Thanks
Chris