Categories: Technical Posted by jasond727 on 4/6/2012 3:38 AM | Comments (0)

My first REST service is here. 

Here is a link to the help file describing the service.
http://svc.racheljason.com/DemographicsREST.svc/help

I still need to update my data contracts to make it result correctly.  That will be coming soon.

Its for fun!

Categories: Technical, Jason Posted by jasond727 on 4/2/2012 4:30 PM | Comments (0)

I have finally created my first WCF Service.  I pretty much converted my SOAP service to Windows Communication Foundation.  It was pretty straight forward and was a great learning experience. 

Here is the link to my new service.  Check it out!
http://svc.racheljason.com/Demographics.svc

Posted by jasond727 on 11/14/2011 9:54 AM | Comments (0)
map-9b16f8526237

I am currently living in Phoenix, AZ. since June of 2005. It has been a great place to live and hope to enjoy many more years here. I love living and working in Downtown Phoenix.

I am reminded why I can withstand the summers because fall, winter and spring are truly amazing.

I started going mountain bike riding again. I hadn’t went in years and recently found that there are a lot of great trails to ride within 15-20 minutes of downtown. It is also a great way to get in some exercise.

Lots of restaurants are opening in downtown Phoenix as well. Within the last 6 months new restaurants I have tried are Humble Pie, Perc Coffee and Rice Paper. There are more I just haven’t made time to check them out yet.

Categories: Jason, SharePoint, Technical Posted by jasond727 on 8/23/2011 2:41 PM | Comments (0)

If you need to get the last time that content was modified in a SharePoint site there is a SPSite and SPWeb property to get that information.

SPSite thisSite = new SPSite();
DateTime.FromFileTime(thisSite.LastContentModifiedDate.ToFileTimeUtc());

This can be helpful in writing a web part or code for displaying site in a web application not modified in a specified time.

Happy Coding!