ScribeStation Beta Testing Open
Link: http://www.scribestation.com
ScribeStation.com has open beta testing of the new Livescribe acquisition client which can take data off of your Livescribe Pulse pen and convert it to many usable formats. Go to http://www.scribestation.com for more information and become a beta tester today!
ASP .NET Session
Link: http://msdn.microsoft.com/en-us/magazine/cc300437.aspx
I deployed a multi-user web application today and for some reason the session was being SHARED between users. Not sure what is causing this. It was a simple application that only needed the session for some non-confidential data so I just threw them into a cookie for now. I am across this interesting link that has some good information so I figured I would post it:
General Acquisition Client
Link: http://www.scribestation.com
I have been getting a lot of requests with people looking to remove the stroke data (X&Y) from the pen. I am currently writing and releasing an acquisition client that will be available at www.scribestation.com and allow users of the LiveScribe Pulse to easily access their stroke and image data on their pen.
I also have plans to expose an API that will allow your applications to work with the XML data.
I plan to have this site released within a month.... so hang in there!
Thanks for all your support, comments and feedback!
-Anthony
Microsoft.Ink COM Error
I was working with Ink and deploying my assemblies all over the place. Eventually I deployed to a win2k3 server and it starting throwing:
Creating an instance of the COM component with CLSID {AAC46A37-9229-4FC0-8CCE-4497569BF4D1} from the IClassFactory failed due to the following error: 80040235
To resolve this, I went to:
And downloaded the Microsoft Windows XP Tablet PC Edition 2005 Recognizer Pack. Install that and you will no longer get that error.
Hope that helps, would have saved me 4 hours :-)
SQL 2005 and XML Data Type
I was just working with the new XML datatype for SQL 2005 and started getting this error when inserting the value:
XML parsing: line 1, character 45, unable to switch the encoding
I was simply sending a string to a stored proc thinking that would work (it was a string of valid XML)... I was wrong. I did some research and solved the problem by wrapping up the XML String into a SQL XML datatype.
System.Data.SqlTypes.SqlXml xmlSafe = new System.Data.SqlTypes.SqlXml(new System.Xml.XmlTextReader(xmlAsString, System.Xml.XmlNodeType.Document, null));
Sure, it's simple enough but I haven't used the XML type before.
02/12/10 05:24:14 pm,