Sign in
Marcelo's WebLog
Improving the world one entity at a time (now tweeting on @mlrdev)
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Common Tasks
Blog Home
Email Blog Author
About
OK
RSS for comments
RSS for posts
Atom
November, 2008
Search
Tags
ADO.NET Data Services
Astoria
Azure
datajs
Design
Development
Entities
MIX10
MIX11
OData
Office
Pages
PDC05
Performance
Phone
Security
Silverlight
SQL
VBA
Velocity
WCF Data Services
Web
Windows
WPF
XML
Monthly Archives
Archives
April 2012
(2)
November 2011
(1)
September 2011
(1)
July 2011
(4)
June 2011
(7)
May 2011
(6)
April 2011
(10)
March 2011
(10)
February 2011
(9)
January 2011
(8)
December 2010
(2)
November 2010
(1)
October 2010
(1)
September 2010
(7)
August 2010
(2)
July 2010
(17)
June 2010
(11)
May 2010
(6)
April 2010
(28)
March 2010
(21)
February 2010
(14)
January 2010
(1)
December 2009
(11)
November 2009
(4)
October 2009
(2)
September 2009
(1)
August 2009
(2)
July 2009
(1)
June 2009
(11)
May 2009
(3)
April 2009
(10)
March 2009
(17)
February 2009
(9)
January 2009
(1)
December 2008
(3)
November 2008
(19)
October 2008
(14)
September 2008
(11)
August 2008
(18)
July 2008
(8)
June 2008
(6)
May 2008
(5)
April 2008
(9)
March 2008
(5)
February 2008
(5)
January 2008
(11)
December 2007
(3)
October 2007
(7)
September 2007
(3)
August 2007
(1)
July 2007
(5)
June 2007
(2)
May 2007
(1)
April 2007
(2)
March 2007
(5)
February 2007
(4)
January 2007
(6)
December 2006
(3)
November 2006
(3)
October 2006
(3)
September 2006
(2)
July 2006
(2)
May 2006
(1)
March 2006
(9)
January 2006
(1)
November 2005
(1)
October 2005
(1)
September 2005
(10)
August 2005
(5)
July 2005
(6)
June 2005
(4)
May 2005
(4)
April 2005
(8)
March 2005
(2)
February 2005
(1)
January 2005
(3)
December 2004
(6)
November 2004
(1)
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Marcelo's WebLog
AtBroker.exe failed to initialize properly message
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
If you get this error message while logging in to a Windows Vista computer using Terminal Services, here is the magic sauce. http://blogs.msdn.com/spatdsg/archive/2007/03/14/atbroker-exe-application-error.aspx I don't know anything about the problem...
Marcelo's WebLog
Impact of text language on WPF
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
1
Comments
Finally, the examples I mentioned on my last post about text . Let's take the WPF text rendering engine as my example of a text processor that's sophisticated enough to handle this correctly. First off, as explained in xml:lang Handling in XAML...
Marcelo's WebLog
So long FolderShare - hello Windows Live Sync
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
2
Comments
In case you haven't heard, FolderShare will be going into retirement at some point, and Windows Live Sync, to be announced next month, will be the software you'll probable want to move to. For more details, the announcement is on the FolderShare site...
Marcelo's WebLog
MSXML 4.0 SP3 Beta Available
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
The release notes are available here . Some highlights include: No merge module - the .msi should be installed instead. More secure default values for max element depth; AllowXsltScript; improved security setting propagations. Some line...
Marcelo's WebLog
What ports are used on my machine?
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
If you do a lot of ADO.NET Data Services development, you might find yourself opening the services over different ports to host multiple services from a single machine, especially if you aren't just hosting it over IIS. This is a classic case where...
Marcelo's WebLog
MSXML heaps not being released
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
MSXML uses a garbage collection technique, which allows it to delay releasing resources. There is more informatoin about this on Understanding the MSXML garbage collection mechanism , which gives a nice introduction. As part of this mechanism, MSXML...
Marcelo's WebLog
Filter not working in ADO.NET Data Services?
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
1
Comments
I know this probably sounds kind of silly for a blog post, but: 9 times out of 10, if your ADO.NET filter isn't changing the results you get back, make sure you are using "path?$filter=f" rather than "path?filter=f". Turns out that without the ...
Marcelo's WebLog
Limiting how many entities are returned from an ADO.NET Data Service
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
1
Comments
If you want to limit the number of entities returned from a service, you have a few alternatives... If you're writing code for the client, the easiest way is to just use the '$top' clause to limit how many entities will be returned. Note that '$top...
Marcelo's WebLog
Text with no language is just not quite there
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
1
Comments
This is kind of a continuation of Working with text and bytes , by the way - you might find those interesting as well, although this is getting more abstract as we go. Let's consider this example: let's say I'm a rendering engine, and I want to display...
Marcelo's WebLog
Windows Performance Analysis Developer Center
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
1
Comments
Congratulations to the folks working on the Windows Performance Toolkit and friends! There's now a developer center you can use as a portal with pointers to resources, downloads, forums, FAQs, and guides to learning about the tools and getting started...
Marcelo's WebLog
Andy implements IUpdatable for LINQ to SQL
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
The post went up recently - find it over at http://blogs.msdn.com/aconrad/archive/2008/11/05/iupdateable-for-linq-to-sql.aspx . One of the things that I love about the interface is that, while it has a fair number of methods to implement (we wanted...
Marcelo's WebLog
Browser tricks: simple calculator at your fingertips
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
1
Comments
So my wife and I got a treadmill not too long ago, and one of the nifty things it has is support for heart rate monitors. The thing actually includes one, so I set out to learn how best to use it. I came across pages like this one , most of which have...
Marcelo's WebLog
Text, language and sorting
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
1
Comments
Here's a bit of coincidence (these byte / text / language posts were scheduled a while ago) - MSDN Magazine has an International Applications article that mentions the impact on language on other text processing operations, such as comparisons, sorting...
Marcelo's WebLog
MSXML 4.0 Service Pack 3 Beta on its way...
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
As announced on the XML team blog, MSXML 4.0 SP3 beta is coming ... This is of course a great opportunity to remind everyone that MSXML 6 is the version you probably want to be using, as it has the latest in security and performance... Enjoy!
Marcelo's WebLog
Bytes, encodings and text
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
Today's post revolves around a very simple equation and the .NET Framework support for the different parts. bytes + encoding = text Typically device resources such as files and network connections will work in terms of bytes. To represent bytes...
Marcelo's WebLog
Finding msxml versions in use (redux)
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
A rehash from a previous post, but I wanted to give the exact command line. \\live.sysinternals.com\tools\listdlls -d msxml That should list all processes that have an msxml library loaded in them, and indicate where the library is being loaded...
Marcelo's WebLog
Working with text and bytes
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
This post continues from the previous Bytes, encodings and text post. The reading and writing classes I mentioned before are abstract ( TextReader , TextWriter and Stream ). Depending on what the underlying source/target is, you'll use one subclass...
Marcelo's WebLog
Coincidences, assertions and code contracts
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
I ran into the language/sorting coincidence not too long ago, and now I read the Introduction to Code Contracts post, which look like a much more sophisticated, structured and toolable tool than the simple Debug.Assert calls we have these days. Code...
Marcelo's WebLog
XML Schema Explorer on Channel 9
Posted
over 5 years ago
by
Marcelo Lopez Ruiz - MSFT
0
Comments
Here I am, interrupting your regularly scheduled series about "stuff that has to do with text". As recently posted on the team blog , you now get the opportunity to appreciate that one of the very, very cool things about XML, love it or hate it, is...
Page 1 of 1 (19 items)