Sign In
MSDN Blogs
Microsoft Blog Images
More ...
Common Tasks
Blog Home
Email Blog Author
About
RSS for comments
RSS for posts
Atom
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Relevant Links
Profiles
My LinkedIn profile
LinkedIn Profile for Phani Raj
My MSDN Forums profile
MSDN Forums profile for PhaniRaj
My Github profile
Github profile for PhaniRaj
My StackOverflow profile
StackOverflow profile for Phani Raj
Useful links for OData Server applications
Debugging WCF Data Services
HTTP 400 Bad Request on Posting Large Payloads to an astoria service
Adding custom elements to OData Feeds-EDM
Adding custom elements to OData Feeds-CLR
Adding custom elements to OData Feeds
Server Driven Paging
Error Handling
useful code snippets
Checklist for OData Feed publishers
Enabling Cross Domain access to your OData feeds
OData applications I built
OData Browser for Windows Phone
OData Desktop/web browser
Useful links for OData Client applications
Detect if there are pending changes in client
Working with 1 to many associations
Working with 1 to 1 associations
Customize serialization of entities
Working with Inheritance
Running Batched queries
Auto Paging enumerable
Sample Windows Phone application
T4 templates for client-side proxy generation
Server-side sorting/paging in Silverlight
OData client, Silverlight and Forms Authentication
Archives
Archives
November 2011
(1)
September 2011
(1)
August 2011
(1)
March 2011
(1)
February 2011
(1)
January 2011
(2)
September 2010
(1)
August 2010
(2)
July 2010
(1)
May 2010
(1)
April 2010
(4)
March 2010
(4)
January 2010
(1)
November 2009
(1)
September 2009
(4)
August 2009
(3)
June 2009
(2)
May 2009
(3)
March 2009
(6)
February 2009
(1)
December 2008
(3)
October 2008
(5)
September 2008
(3)
August 2008
(9)
July 2008
(6)
June 2008
(2)
January 2008
(1)
November 2007
(1)
October 2007
(3)
September 2007
(4)
August 2007
(1)
June 2007
(2)
May 2007
(3)
April 2007
(4)
March 2007
(6)
February 2007
(8)
January 2007
(2)
December 2006
(1)
MSDN Blogs
>
With Great Power comes Great Response.write('Ability')
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
With Great Power comes Great Response.write('Ability')
Updated Site navigation
Posted
2 months ago
by
Phani Raju MSFT
0
Comments
I've updated the site navigation to make it easier for my blog visitors to find useful links and quick answers to the questions they come here with. After analyzing the number of views on my blog posts, I've curated them into links in the left hand side under : Useful links for OData Server applications : a list of links for debugging/configuring your OData Server application. Useful links...
With Great Power comes Great Response.write('Ability')
Excel 2007 and consuming OData services
Posted
5 months ago
by
Phani Raju MSFT
0
Comments
Hi all, I'm running a short survey to guage interest in an Excel 2007 plugin that reads OData feeds. Please take this short survey so that I can figure out which scenarios you want to target with this plugin. Survey link
With Great Power comes Great Response.write('Ability')
T4 templates for WCF Data Services Part–II, Client Code-Gen
Posted
11 months ago
by
Phani Raju MSFT
0
Comments
Click here to download. GenerateDataServiceContext.tt generates a strongly-typed DataServiceContext type based on the service description. GenerateEntityTypes.tt generates the client-side proxies for entity types exposed by the OData service. GenerateViewModels.tt ( Silverlight Only ) generates viewmodels based on the entity type and provides some ease-of-use apis. More documentation coming soon.
With Great Power comes Great Response.write('Ability')
Lessons learnt building the Windows Phone OData browser
Posted
over 1 year ago
by
Phani Raju MSFT
1
Comments
One of the reasons for re-building the OData browser for Windows Phone was to experience first hand the issues our developers face when writing an app for the marketplace that uses the client library my team produces. This blog post describes what I learnt as a developer on the OData browser and what feedback the team received after this exercise. Disclaimer : I wrote a lot of the code for the browser...
With Great Power comes Great Response.write('Ability')
OData Browser for Windows Phone available now !
Posted
over 1 year ago
by
Phani Raju MSFT
4
Comments
Download it from the Zune marketplace by clicking this link Read inaugural blog post about it here
With Great Power comes Great Response.write('Ability')
OData Browser for Windows Phone 7
Posted
over 1 year ago
by
Phani Raju MSFT
2
Comments
Since the company got me a Windows Phone 7 device and also paid for my developer account, I feel obligated to put an application for the market place out there. Hence. we have the OData browser for Windows Phone 7 . I am currently testing with a couple of brave beta testers and will be uploading this app to the market place at the End of this week, i.e. the 22nd of January 2011. Here are some screens...
With Great Power comes Great Response.write('Ability')
Update on the Windows Phone 7 OData Client Libirary
Posted
over 2 years ago
by
Phani Raju MSFT
0
Comments
Team blog post here : WCF Data Services Client Library and Windows Phone 7 – Next Steps And some sample code for more context. With the Linq pattern, here is what the code for downloading the first 10 customers would look like : DataServiceCollection < Customer > customerCollection = new DataServiceCollection < Customer >(Context); customerCollection.Load(Context.CreateQuery< Customer...
With Great Power comes Great Response.write('Ability')
Implementing Server-side Sorting/Paging for OData feeds in Silverlight Controls ( DataGrid, DataPager, DataForm )
Posted
over 2 years ago
by
Phani Raju MSFT
0
Comments
Download sample application and source here This blog post was written almost a year ago, but lethargy and constant revision has made me realize that good blog posts are hard to write. Background Nuts and Bolts Using this in your applications: Vote to get these features in the DataServiceCollection<TEntity> type Background When the DataGrid shipped...
With Great Power comes Great Response.write('Ability')
T4 templates for WCF Data Services, Part -I
Posted
over 2 years ago
by
Phani Raju MSFT
2
Comments
Click here to download sample application As part of a series of blog posts about how to enhance the WCF Data Services development experience, I will be releasing some of the T4 templates that I use for generating common code. In this post, I will talk about augmenting the Server-side WCF Data Service by generating Query/Change Interceptors for all given entity sets present in a model. As this is ...
With Great Power comes Great Response.write('Ability')
Windows Phone OData sample application updated for July 2010 Beta release
Posted
over 2 years ago
by
Phani Raju MSFT
2
Comments
With the latest release of the Windows Phone tools, the OData sample Netflix application has also been updated. Here is where you get the latest Windows Phone Tools : Windows Phone Developer Tools Beta And here is where you get the latest OData sample application : ODataOnWinPhoneSample_July2010Beta.zip Original blog post here : Developing a Windows Phone 7 Application that consumes OData
With Great Power comes Great Response.write('Ability')
Server Driven Paging II , Implementing a Smart Auto-Paging Enumerable
Posted
over 2 years ago
by
Phani Raju MSFT
0
Comments
Download Sample Application What is this ? How do I use this in my applications ? Cool, I am also interested in learning how this was built 2. What is this ? An “Auto-paging Enumerable” is an IEnumerable implementation that allows the application to automatically fetch the next page of results if the current page of results is enumerated and the application wants more. By “Smart”, we...
With Great Power comes Great Response.write('Ability')
OData Explorer updated to SL4 RTM
Posted
over 2 years ago
by
Phani Raju MSFT
2
Comments
Install Silverlight 4 RTM Explore the latest OData Explorer release. As part of the update, we fixed a couple of bugs and added a couple of more features. Here’s a rundown of the new features we added . 1.Sorting 2.Projections 3.Integration with Public Live OData Service list from OData.org ...
With Great Power comes Great Response.write('Ability')
Server Driven Paging With WCF Data Services
Posted
over 2 years ago
by
Phani Raju MSFT
2
Comments
Download Sample Application Server Side What is SDP ? Design notes Blog post , Channel 9 video Enabling SDP on the server. Setting Server-side paging limits in InitializeService. How to detect if a set is paged from the server-side. How QueryInterceptors affect the next link Uri. Navigating the next link Uri in the browser Client Side SDP and DataServiceCollection APIs SDP and QueryOperationResponse...
With Great Power comes Great Response.write('Ability')
Update on the OData Explorer
Posted
over 2 years ago
by
Phani Raju MSFT
0
Comments
Seeing as it is that Silverlight 4 RTM just went live , You should see an error message that says that the application is written for an obsolete version of Silverlight. We are working on updating the explorer to SL 4 RTM. Please bear with us while we update the sources and go through some bug fixes for the RTM version of the explorer.
With Great Power comes Great Response.write('Ability')
A Checklist for OData Feed publishers
Posted
over 2 years ago
by
Phani Raju MSFT
0
Comments
Here's a minimal checklist to make sure your OData Service is available to a maximum number of clients and very functional out of the box . I'll add more items to this list as we go along. Allow Silverlight clients to access your data. Silverlight applications running on a domain other than the one the Data Service is hosted on require a ClientAccessPolicy.xml file at the root of the webserver. Without...
Page 1 of 7 (103 items)
1
2
3
4
5
»