Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Common Tasks
Blog Home
Email Blog Author
About
RSS for comments
RSS for posts
Atom
Search
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
December 2012
(1)
August 2012
(1)
May 2012
(2)
April 2012
(1)
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)
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
With Great Power comes Great Response.write('Ability')
Server Driven Paging II , Implementing a Smart Auto-Paging Enumerable
Posted
over 3 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 3 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 3 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 3 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 3 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...
With Great Power comes Great Response.write('Ability')
Building SL3 applications using OData client Library with Vs 2010 RC
Posted
over 3 years ago
by
Phani Raju MSFT
0
Comments
So , here you are trying to build an awesome OData client application in SL3 using the V.S 2010 RC’s just as amazing Multi-targeting support for Silverlight applications. You’ve downloaded the SL3 CTP3 assembly from here and unzipped the System.Data.Services.Client.dll file to a local folder c:\temp\SL3_CTP3_OData_Client ( your folder may vary ). Using a V2 feature in the client library , after adding...
With Great Power comes Great Response.write('Ability')
Issues building the OData Explorer sources
Posted
over 3 years ago
by
Phani Raju MSFT
0
Comments
When we put out the sources for the OData Explorer on the OData.org site , we broke something in the sources which prevent them from building on your machine. We will be updating the sources on the OData SDK link quickly once the work week begins . In the meantime , here are the four issues that need to be fixed for the sources to build on your machine Issue #1 : The dependency on the Silverlight...
With Great Power comes Great Response.write('Ability')
Developing a Windows Phone 7 Application that consumes OData
Posted
over 3 years ago
by
Phani Raju MSFT
9
Comments
Click here to download the source for this application System Requirements : 1. Windows Phone 7 Developer tools 2. The OData client library for Windows Phone 7. We start by running Visual Studio 2010 Express For Windows Phone which is installed as part of Windows Phone 7 Developer tools. Step Zero is to generate the client types for the netflix Odata Service using the DataSvcUtil.exe...
With Great Power comes Great Response.write('Ability')
Announcing the OData Explorer
Posted
over 3 years ago
by
Phani Raju MSFT
7
Comments
What is the OData Explorer ? As the name suggests, its a Silverlight application that can be installed in-browser and out of browser , and allows you to perform ad-hoc and guided queries across a given OData Service. Where can I get the sources for the OData Explorer ? In the “OData SDK - Sample Code” section of http://www.odata.org/developers/odata-sdk The Service I am browsing to doesn’t have a ClientAccessPolicy...
With Great Power comes Great Response.write('Ability')
THe Astoria Team Is hiring !!!
Posted
over 3 years ago
by
Phani Raju MSFT
0
Comments
Yep , we now have open positions for a few testers who get to work on the next generation of Data Protocols. Some advantages of working on the team : 1. You get to work with Pablo Castro 2. We have annual ski events which are always fun 3. The team is filled with some of the smartest people you’ll come to know 4. You get to own and deliver key components of the Astoria runtime while learning...
With Great Power comes Great Response.write('Ability')
ADO.NET Data Services : Efficient Error Handling across Application Tiers
Posted
over 4 years ago
by
Phani Raju MSFT
2
Comments
While developing an application that spans multiple tiers , it is important that you be able to flow error information through the tiers without losing any context or details in the tiers. With ADO.NET Data Services , we have an error contract which guarantees that all errors thrown from the Data Service , wrapped inside a DataServiceException , will be represented in a standard way on the wire when...
With Great Power comes Great Response.write('Ability')
Please welcome the JAVA Client for ADO.NET Data Services
Posted
over 4 years ago
by
Phani Raju MSFT
0
Comments
The new Java client joins a growing family of clients for ADO.NET Data Services, which include: Ajax , Silverlight , .Net FX , Dynamic Data , PHP . Here’s some documentation about the Java client http://wiki.restlet.org/docs_2.0/13-restlet/28-restlet/287-restlet.html .
With Great Power comes Great Response.write('Ability')
Using the ADO.NET Data Services Silverlight client library in x-domain and out of browser scenarios – II (Forms Authentication)
Posted
over 4 years ago
by
Phani Raju MSFT
5
Comments
Click here to download sample application Using the ADO.NET Data Services Silverlight client library in x-domain and out of browser scenarios – II (Forms Authentication) In this blog post, we will talk about using the Silverlight Client Library against a Data Service that is secured with Asp.Net Forms Authentication In short, the whole process of authenticating against a Forms Authentication protected...
With Great Power comes Great Response.write('Ability')
Using the PHP Toolkit with ADO.NET Data Services
Posted
over 4 years ago
by
Phani Raju MSFT
0
Comments
Setup PHP on your windows machine Setup the PHP Toolkit Setting up the PHP samples on IIS Running the sample ADO.NET Data Services PHP Sample Applications Walkthrough Setup PHP on your windows machine The following steps show you how to setup your windows machine to host PHP applications. We will be talking about hosting the only supported ( by MS Support ) PHP CGI application on IIS . Using FastCGI...
With Great Power comes Great Response.write('Ability')
ADO.NET Data Services SL Client Library - XDomain and Out Of Browser
Posted
over 4 years ago
by
Phani Raju MSFT
0
Comments
The first in my two part blog posts about the new Silverlight Client Library we released in CTP2 is up on the team blog. Using the ADO.NET Data Services Silverlight client in x-domain and out of browser scenarios – I Stay tuned to the team blog for the the second part which talks about using the client library X-Domain and Out Of Browser to access a data service which is authenticated with Forms...
Page 2 of 8 (108 items)
1
2
3
4
5
»