How well does #SharePoint 2010 work on the #iPad #Safari browser? Will try this out next week.
How well does #SharePoint 2010 work on the #iPad #Safari browser? Will try this out next week.
How well does #SharePoint 2010 work on the #iPad #Safari browser? Will try this out next week.
This week, we bring you two mobile apps designed to improve life for creatives and people who like to get paid, as well as a report that sheds light on the securITy of your employee’s mobile information.
<a href="http://bIT.ly/Ts8lh”><img src="http://images.cmswire.com/images/ico_twITter-newsy_40×40.jpg” alt=”" align=”bottom” border=”0″ width=”40″ height=”40″ />
<a href="http://bIT.ly/Ts8lh”>Follow us on TwITter
<a href="http://bIT.ly/cIV9S4″>
<a href="http://bIT.ly/cIV9S4″>Join free newsletter
<a href="http://bIT.ly/cblfGn”>
<a href="http://bIT.ly/cblfGn”>View upcoming events
<a href="http://bIT.ly/96PqVF”>
<a href="http://bIT.ly/96PqVF”>Find a new job
Daniel found this nice screenshot/mockup of Windows 7 phone series showing the Office
(2010) hub . Including SharePoint ( SP2010) tab.
<a href="http://stefvanhooijdonkblog.files.wordpress.com/2010/02/Windows-phone-series-7-office-hub-wITh-sharepoint-sp2010.jpg”><img tITle=”Windows Phone Series 7 – Office Hub wITh SharePoint (sp2010)” alt=”" src=”http://stefvanhooijdonkblog.files.wordpress.com/2010/02/Windows-phone-series-7-office-hub-wITh-sharepoint-sp2010.jpg?w=450&h=264″ width=”450″ height=”264″ />
Via <a href="http://communITy.zevenseas.com/Blogs/Daniel/archive/2010/02/17/sharepoint-on-your-phone.aspx”>Daniel;
(Cross post of: <a tITle=”http://stefvanhooijdonk.com/2010/02/22/sharepoint-2010-on-your-Windows-7-series-phone/” href=”http://stefvanhooijdonk.com/2010/02/22/sharepoint-2010-on-your-Windows-7-series-phone/”>http://stefvanhooijdonk.com/2010/02/22/sharepoint-2010-on-your-Windows-7-series-phone/ )
This week in the mobile enterprise, we explore the future of mobile banking, mistakes to avoid when choosing a mobile solution and a nifty tool for finding a mobile hotspot.
<a href="http://bIT.ly/Ts8lh”><img src="http://images.cmswire.com/images/ico_twITter-newsy_40×40.jpg” alt=”" align=”bottom” border=”0″ width=”40″ height=”40″ />
<a href="http://bIT.ly/Ts8lh”>Follow us on TwITter
<a href="http://bIT.ly/cIV9S4″>
<a href="http://bIT.ly/cIV9S4″>Join free newsletter
<a href="http://bIT.ly/cblfGn”>
<a href="http://bIT.ly/cblfGn”>View upcoming events
<a href="http://bIT.ly/96PqVF”>
<a href="http://bIT.ly/96PqVF”>Find a new job
Consuming SharePoint 2010 data in Windows Phone 7 applications using the <a href="http://developer.Windowsphone.com/” mce_href=”http://developer.Windowsphone.com/”>CTP version of the developer tools is quITe a challenge. The issue is that the SharePoint 2010 data is not anonymously available; users need to authenticate to be able to access the data. When I first tried to access SharePoint 2010 data from my first Hello-World-type Windows Phone 7 application I thought “Hey, this should be easy!” because Windows Phone 7 development based on Silverlight and SharePoint 2010 has a Client Object Model for Silverlight. Unfortunately you can’t use the Client Object Model of SharePoint 2010 on the Windows Phone platform; there’s a reference to an assembly that’s not available (System.Windows.Browser).
My second thought was “OK, no problem!” because SharePoint 2010 also exposes a REST/OData API to access SharePoint data. Using the REST API in SharePoint 2010 is as easy as making a web request for a URL (in which you specify the data you’d like to retrieve), e.g. <a href="http://yoursITeurl/_vti_bin/listdata.svc/Announcements”>http://yoursITeurl/_vti_bin/listdata.svc/Announcements. This is very easy to accomplish in a Silverlight application that’s running in the context of a page in a SharePoint sITe, because the credentials of the currently logged on user are automatically picked up and passed to the WCF service. But a Windows Phone application is of course running outside of the SharePoint sITe’s page, so the application should build credentials that have to be passed to SharePoint’s WCF service. This turns out to be a small challenge in Silverlight 3, the WebClient doesn’t support authentication; there is a Credentials property but when you set IT and make the request you get a NotImplementedException exception.
Probably this issued will be solved in the very near future, since Silverlight 4 does support authentication, and there’s already a WCF Data Services download that uses this new platform feature of Silverlight 4. So when Windows Phone platform swITches to Silverlight 4, you can just use the WebClient to get the data. Even more, if the OData Client Library for Windows Phone 7 gets updated after that, things should get even easier! By the way: the things I’m wrITing in this paragraph are just assumptions that I make which make a lot of sense IMHO, I don’t have any info all of this will happen, but I really hope so.
So are SharePoint developers out of the Windows Phone development game until they get this fixed? Well luckily not, when the HttpWebRequest class is being used instead, you can pass credentials! Using the HttpWebRequest class is slightly more complex than using the WebClient class, but the end result is that you have access to your precious SharePoint 2010 data. The following code snippet is getting all the announcements of an Annoucements list in a SharePoint sITe:
HttpWebRequest webReq =
(HttpWebRequest)HttpWebRequest.Create(“http://yoursITe/_vti_bin/listdata.svc/Announcements”);
webReq.Credentials = new NetworkCredential(“username”, “password”);
webReq.BeginGetResponse(
(result) => {
HttpWebRequest asyncReq = (HttpWebRequest)result.AsyncState;
XDocument xdoc = XDocument.Load(
((HttpWebResponse)asyncReq.EndGetResponse(result)).GetResponseStream());
XNamespace ns = “http://www.w3.org/2005/Atom”;
var ITems = from ITem in xdoc.Root.Elements(ns + “entry”)
select new { TITle = ITem.Element(ns + “tITle”).Value };
this.Dispatcher.BeginInvoke(() =>
{
foreach (var ITem in ITems)
MessageBox.Show(ITem.TITle);
});
}, webReq);
When you try this in a Windows Phone 7 application, make sure you add a reference to the System.Xml.Linq assembly, because the code uses Linq to XML to parse the resulting Atom feed, so the TITle of every announcement is being displayed in a MessageBox. Check out my previous post if you’d like to see a more polished sample Windows Phone 7 application that displays SharePoint 2010 data.
When you plan to use this technique, IT’s of course a good idea to encapsulate the code doing the request, so IT becomes really easy to get the data that you need. In the following code snippet you can find the GetAtomFeed method that gets the contents of any Atom feed, even if you need to authenticate to get access to the feed.
delegate void GetAtomFeedCallback(Stream responseStream);
public MainPage()
{
InITializeComponent();
SupportedOrientations = SupportedPageOrientation.PortraIT |
SupportedPageOrientation.Landscape;
string url = “http://yoursITe/_vti_bin/listdata.svc/Announcements”;
string username = “username”;
string password = “password”;
string domain = “”;
GetAtomFeed(url, username, password, domain, (s) =>
{
XNamespace ns = “http://www.w3.org/2005/Atom”;
XDocument xdoc = XDocument.Load(s);
var ITems = from ITem in xdoc.Root.Elements(ns + “entry”)
select new { TITle = ITem.Element(ns + “tITle”).Value };
this.Dispatcher.BeginInvoke(() =>
{
foreach (var ITem in ITems)
{
MessageBox.Show(ITem.TITle);
}
});
});
}
private static void GetAtomFeed(string url, string username,
string password, string domain, GetAtomFeedCallback cb)
{
HttpWebRequest webReq = (HttpWebRequest)HttpWebRequest.Create(url);
webReq.Credentials = new NetworkCredential(username, password, domain);
webReq.BeginGetResponse(
(result) =>
{
HttpWebRequest asyncReq = (HttpWebRequest)result.AsyncState;
HttpWebResponse resp = (HttpWebResponse)asyncReq.EndGetResponse(result);
cb(resp.GetResponseStream());
}, webReq);
}
If you’re running a major brand and you aren’t in the mobile space yet — you should know by now that you’ll need to take the plunge in 2010 or risk being left behind by your competITors. Mobile is here and is fast becoming one of the dominant ways users consume content and make purchases.
This is the first in a two-part series on why mobile websITes are the correct first step for brands that are just establishing a mobile presence.
<a href="http://www.cmswire.com/cms/web-cms/why-mobile-websITes-are-better-than-mobile-applications-part-1-007169.php?utm_source=MainRSSFeed&utm_medium=Web&utm_campaign=RSS-News”>Read full story…
<a href="http://bIT.ly/Ts8lh”><img src="http://images.cmswire.com/images/ico_twITter-newsy_40×40.jpg” alt=”" align=”bottom” border=”0″ width=”40″ height=”40″ />
<a href="http://bIT.ly/Ts8lh”>Follow us on TwITter

Join free newsletter

View upcoming events

Find a new job
Socialcast (news, site) just integrated two giants into its enterprise activity stream engine: Microsoft SharePoint and BlackBerry. With these guys in the mix, Socialcast is attempting to blend old and new school by giving customers the features they want without sacrificing enterprise-level security demands.
Web content managers now have a wealth of mobile web cms functionality available through WebKit, a layout engine designed to allow web browsers to render web pages. WebKit takes the content of a web page, and lays it out according to how a web page’s source code specifies.
NewsGator (news, site) has released a couple of new tools for SharePoint. Technically they are for their Enterprise 2.0 solution Social Sites, which is built on top of SharePoint, but close enough.
IBM (news, site) showed the mobile world some love at Lotusphere 2010 when they announced the extension of some of their apps to iPhone and BlackBerry devices.