Archives
- June 2012 (1)
- March 2012 (1)
- February 2012 (2)
- December 2011 (1)
- November 2011 (1)
- October 2011 (1)
- September 2011 (1)
- August 2011 (2)
- June 2011 (3)
- May 2011 (2)
- April 2011 (1)
- March 2011 (1)
- February 2011 (7)
Tags
.NET Bing Maps ClickOnce Database IE9 IIS Express iPad Javascript JavaScript Unit Testing jQuery Mobile Mono Mono fro Android MonoTouch Outlook Add-Ins PhoneGap Safari SharePoint SQL Server Telerik ASP.NET AJAX TestSwarm Triggers ViewState VS 2010 WCF WCF Data Services WCF REST WebMatrix Widget Windows Phone WP7 XMLCategories
- .NET (15)
- ClickOnce (1)
- Outlook Add-Ins (1)
- ViewState (1)
- WCF (2)
- WCF Data Services (7)
- WCF REST (3)
- XML (1)
- Bing Maps (3)
- Database (1)
- Triggers (1)
- IE9 (1)
- IIS Express (1)
- iPad (1)
- Javascript (4)
- Ajax (3)
- JavaScript Unit Testing (1)
- jQuery (3)
- Widget (3)
- Mobile (2)
- Mono (2)
- Mono for Android (2)
- MonoTouch (2)
- PhoneGap (3)
- SharePoint (2)
- SQL Server (2)
- Telerik ASP.NET AJAX (1)
- TestSwram (1)
- VS 2010 (2)
- WebMatrix (1)
- Windows Phone (2)
- WP7 (3)
- .NET (15)
Translate
Category Archives: .NET
Cross-Platform Mobile Development with WP7, PhoneGap and .NET 4.0 WCF REST – Part 3
This is Part 3 of the walkthrough that demonstrates cross-platform mobile application development with PhoneGap, WP7 and .NET 4.0 WCF REST Services. For a description of the PhoneGap, for a WP7 installation review Part 1. For a descripion of the .NET … Continue reading
Cross-Platform Mobile Development with WP7, PhoneGap and .NET 4.0 WCF REST – Part 2
This is Part 2 of the walkthrough that demonstrates cross-platform mobile application development with PhoneGap, WP7 and .NET 4.0 WCF REST Services. The following section describes modifications to the installed, as described in Part 1 of this blog, .NET 4.0 … Continue reading
Cross-Platform Mobile Development with WP7, PhoneGap and .NET 4.0 WCF REST – Part 1
This is Part 1 of the walkthrough that demonstrates cross-platform mobile application with PhoneGap, WP7 and .NET 4.0 WCF REST Services. At least Part 2 will be needed to demonstrate a working application without making this post too long. In order … Continue reading
SharePoint 2007 WCF Services Reference in VS 2010 and XmlElement vs. XElement confusion.
I have been a victim of this VS 2010 behavior the second time around. For the record then, I am going to make a note of it (who knows, it might hunt me again). I added a Service Reference to … Continue reading
Investigating EnableViewState and ViewStateMode in .NET 4.0
Today, I stumbled upon a problem with enabling a view state for a control. It took me about 2 hours to fully comprehend the scope of the problem and to find the fix. I hope that sharing my findings might … Continue reading
Refreshing Entities in WCF Data Services–Handling Database Triggers
WCF Data Service Context is very smart when it comes to loading entities the data source. It attempts to do it just once. This is to avoid problems related to requesting the same data multiple times, which is bad in … Continue reading
Posted in .NET, Database, Triggers, WCF Data Services
Tagged .NET, Database, Triggers, WCF Data Services
Comments Off
Cannot Import Key File Error when trying to compile ClickOnce enabled application in VS 2010
In my case the application was an Outlook Add-In created by another team member. When I tried to open the project I got this error: The error: Cannot import the following key file: OutlookAddIn_TemporaryKey.pfx. The key file may be password … Continue reading
Reusable WCF Service Data Access Layer for WP7, MonoTouch and Mono for Android
This is a quick overview of experimentation with creating a reusable WCF Service Data Access Layer for Cross-Platform Mobile Development effort. For more details see my article here. The Challenge Build WCF Data Services based data access layer that can … Continue reading
Posted in Mono, Mono for Android, MonoTouch, WCF Data Services, WP7
Tagged Mono, Mono fro Android, MonoTouch, WCF Data Services, WP7
Comments Off
oData and Stored Procedures aka Service Operations
If you work with WCF Data Services, at some point, you will probably need to call a stored procedure to return result of a complex query. If you wonder how to wrap a call to stored procedure into a WCF … Continue reading
WCF Data Services Cheat Sheet
This is the result of my tiny research about translating LINQ to REST into oData URI Conventions and finally into T-SQL. Event though I knew what I needed on the T-SQL side, I was not sure which LINQ statement would … Continue reading