Archive

Archive for the ‘Office 365’ Category

MVP SharePoint Chat – Wednesday May 25th at 9am PDT

May 23, 2011 1 comment

When: 9 AM PDT, 25th May 2011 (PDT? Convert to your time zone here)

Where: Online | Enter Chat Room

Do you have tough technical questions regarding SharePoint for which you’re seeking answers? Do you want to tap into the deep knowledge of the talented Microsoft Most Valuable Professionals? The SharePoint MVPs are the same people you see in the technical community as authors, speakers, user group leaders and answerers in the MSDN and TechNet forums. By popular demand, we have brought these experts together as a collective group to answer your questions live. So please join us and bring on the questions! This chat will cover WSS 3.0, MOSS, SharePoint Foundation 2010 and the SharePoint Server 2010. Topics include setup and administration, design, development and general question.

How to fix SharePoint Online (403) Forbidden Error while downloading files using Client Object Model

May 19, 2011 4 comments

Recently I was working on a project that requires to programmatically access and download files from SharePoint Online (part of Office 365) document library. Currently remote authentication (SP Managed Client OM / SP Web Services) is bit challenging to deal with as discussed here but a decent workaround (for now?) is available on MSDN. The first thing you will notice is that authentication is more powerful and more complex because SharePoint Online (so as SharePoint Foundation 2010 | SharePoint Server 2010) embrace Claims Based Authentication. The MSDN sample code seems to work fine so I went ahead and use it as a starting point.

**I used Word 2010 to create and publish this post and somehow images quality gets deteriorated during publishing process. If you want to read this post with high quality images its available as pdf here

Issue: 

Everything went smooth (authentication + accessing list items) till I actually try to download a file from a document library. I was using File.OpenBinraryDirect method (see code snippet below) and got The remote server returned an error: (403) Forbidden exception.

As I investigate this issue by looking into the exception details I found out that basically it’s complaining about the fact that before opening files in this location I must select the option to login automatically.

This gives me the clue that there is something missing at a basic level. I went ahead and open up a browser and browse to the SharePoint online site from which I am trying to download the file. I use a tool to monitor the request from the browser and eureka I see User-Agent header with a valid value (as expected) which was never set in the code.

The code from the MSDN does not set the UserAgent property of the WebRequest so it remains null. Normally when you are using browser it’s automatically set up for you but in this case you have to do it yourself though code. So you fix this part and you are good to go.

 
 

Fix:  

Locate the method GetAuthenticatedContext (inside class ClaimsClientContext within ClaimsAuth project). And add following line of code before you initialize cookie container. You are setting up UserAgent property for the WebRequest to a valid user agent. I have used following value for user agent but you can try different but valid value and it may work too (but I didn’t tried it yet).

e.WebRequestExecutor.WebRequest.UserAgent = “Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)”;

 
 

 
 

That’s it! You should now able to download the files without any issues.

**On a side note although above solutions works I have a feeling that there is more to it because X-MSDAVEST_Error: 917656 is an Authentication level error and related to WebDav protocol more info here. I may investigate it further when time permits and share my finding in this blog post.

Office 365 Session @ Microsoft NYC

As Office 365 goes into public beta, it’s time to dig deeper into the features of Office 365. I am conducing a session on Office 365 with demo of its services @ Microsoft NYC on 27th April 2010 from 6:00 PM – 8:00 PM. Registration is free (if you don’t like to register via website and still want to attend, arrive bit early so you can be registered onsite). I am planning to cover following topics

  • Office 365 Overview
  • Office 365 Walkthrough (Demo)
    • SharePoint Online
    • Exchange Online
    • Lync Online
    • Office Web Applications
  • Case Study & QA

As a good gesture of good will every attendee will receive a free copy of Enhanced Productivity with SharePoint Online & Exchange Online, a case study I wrote which explains how organizations can leverage Office 365 to enhance their productivity.

 

Office 365 is now in Public Beta!

Office 365 finally goes into public beta today! Many congrats to Office 365 team J

Visit www.office365.com and apply now to secure your spot in beta program. I was working with Office 365 since last November, just after it was launched as a private beta and it’s been an awesome experience. Things like support service quality and overall stability of services were among the key highlights of private beta and I am quite positive it will remain the same way throughout the life cycle of Office 365.

I have done my own share of work on Office 365. I was involved in a POC of Office 365 and just finished a week back and now planning to help other organizations to adopt Office 365. As a matter of fact I recently wrote an article for MSDN MVP blog focusing on how organization can utilize SharePoint Online and Exchange Online to gain better productivity, article is suppose to be publish soon. I will share the link as soon as it goes live.

If you just started on Office 365 and looking for helpful content read my earlier blog post here.

Exploring Asset Library in SharePoint 2010 (Online & On-Premise)

April 17, 2011 4 comments

SharePoint 2010 (both Online & On-Premise) is equipped with new type of Library called Asset Library. Asset library provides place to store your and manage your digital assets and provide enrich interface to view them, another powerful feature is to perform navigation and filtering based on meta data This post demonstrates how to create an asset library, inspect ways how it represents digital items visually, and then how to enable navigation and filtering based on meta data. In order to perform following steps, you must have access to SharePoint 2010 along with at least single SharePoint site collection available to you. One of the easiest ways to start working on SharePoint 2010 is to download Information Worker Demonstration and Evaluation Virtual Machine (RTM) (beware of download size which is couple of GB’s)

  1. Navigate to SharePoint site and click Site Actions à View All Site Content. On the All Site Content Page click Create

  2. Select Asset Library, from the Installed Template and name it My Assets. Click Create.

    This is shown in figure below. Note that, if you don’t have Silverlight 3.0 installed on your machine you will see a different page to create various Lists and Libraries, from there you can select Asset Library.

     

     

  3. Click Add new item link and select, on the Upload Document dialog click Upload Multiple Files link as show in figure below and upload three images. You can simply drag and drop files. It’s preferred that you choose images with small sizes for example less than 1 MB.

     

  4. Once the upload process is complete you should see similar view as shown in following figure. Off course your images will be different. Now hover your mouse over an image and you will see that image in a larger dialog box, with more details, this is shown in figure below.

  5. If you want to see the image in a full window, just click View Item link, the image will be open in full view but use the same browser window. To void this and open the image in new tab press CTRL key and then click View Item link, this will make IE 7 or above open the item in separate tab. This is shown in figure below.

     

  6. Using the same steps as mentioned in step 3 add at least single video and audio file to My Assets Library. The Asset Library supports WMV, WMA and MP3 format for video and audio. If you try to upload other formats you will receive warning as shown in figure below and file(s) will not be uploaded.

     

     

  7. Notice that for audio and video thumbnails shows different icons , as shown in figure below.

  8. Hover you mouse on a video or an audio file and you will see the dialog similar to one that appears for image. Following figure shows the dialog for a video file. Notice you have link with title Play.

     

  9. Click on the Play link, you will see a video player as shown in figure below. The video will start playing automatically. This video player uses Silverlight and it must be installed locally on your machine.

     

     

    Modifying The Default View

     

  10. If you notice, the information dialog you get when you hover on any file in step 4 and 7 the dialog lacks two key attributes, file type and file size. This is especially important as media files are usually available is various formats and you may want to know the size and type of the file before downloading it.

     

  11. To modify the view, click on the Library Tab and select Modify View from Manage View groups. This is shown in figure below.

     

     

     

  12. On the Edit View Page, select the Display checkbox for File Size and File Type (File extension) columns as shown below. Click OK to save your changes.

     

  13. From the Asset Library, hover on any file and you will see File Size and File Type information inside the dialog, following figure shows this for a video and image file.

Meta Data Driven navigation

Let’s take look into another interesting feature of doing navigation on your digital assets based on Meta data. Imagine your Asset Library with several hundred items or even more, finding anything even when you put them into folders will be daunting tasks. With SharePoint 2010 Meta data driven navigation, the filtering will be done based on Meta data tags, but as Meta data can be hierarchical the navigation is natural and provide users most intuitive way seek the items. However this should never be considered as a replacement of doing categorization by using folders. Also note that meta data driven navigation can be applied to other type of libraries and lists too, event to custom lists!

 

  1. Let’s enable the meta data driven navigation on My Assets library that you created earlier. From the Library Tab, select Library Settings located in Settings group , as shown in figure below

     

     

  2. On Document Library Settings page, select Meta data navigation settings link located under the General Settings section as shown in figure below.    

     

  3. From Configure
    Navigation Hierarchies section, select Content Type from Available Hierarchy Fields list box as shown in figure below.

     

     

  4. Click Add > button, this will move the Content Type field to Select Hierarchy Fields list box, as shown in figure below.

     

     

  5. On the Configure Key Filters section, select Content Type and Date Picture Taken fields from the Available Key Filter Fields as shown in figure below (If you want you can choose other fields but for this tip these two will be sufficient)

  6. Click the Add> button, both of these fields will be moved to Selected key Filter Fields, as shown in figure below. Finally click OK to save your changes.

     

     

  7. Browse to the My Asset library, notice a hierarchical menu on the quick launch as shown in figure below, this enables you to perform navigation on items based on fields in the content type.

     

  8. Expand the Content Type node by clicking on the small arrow as sown below.

  9. Now click on any of the value, for example Image. Notice when you make this selection, the view on the right is filtered based on this value, following two figures shows the view when selection is done for the values of Image and Video respectively.

  10. Finally lets quickly take a look at Key filtering option present just underneath the navigation we seen earlier, this is shown in figure below.

  11. From the Content Type drop down select Image and from Date Picture
    Taken calendar select date when one of the images were originally take (note that your uploaded date and picture taken date will differ). Both of these selections are shown in figure below. Finally click on Apply button. The library view will filter any images that are not taken on the date you had specified.

     

     

    To sum up Asset Library is an excellent way to store your digit assets including images, audio and videos. Combine with other powerful collaboration and content management features of SharePoint 2010 you can now use SharePoint in your organization in much more productive ways than ever before.

     

     

Microsoft Office 365 Resources

April 11, 2011 4 comments

[Updated: 04/25/2011]

Office 365 (vNext of BPOS) is currently in public beta but there are already decent amount of resources available containing tons of information on it. Following is the list of some of the resources on Office 365, off course links will grow as Office 365 move further in its release cycle.

Community

Office 365 Community Home

Forums

Office 365 Community Official Forums (All services)

Office 365 Transition Forum – TechNet

Blogs & Wikis

Microsoft Office 365 Official Blog

Office 365 Technical Official Blog

Office 365 Official Wiki Page

TechNet

SharePoint Online Planning & Administration

MSDN

Exchange Online Development Center

SharePoint Online Standard Developer Guide

SharePoint Online – An Overview for Developers

Getting Started with Microsoft Exchange Online

Learning (Conferences + Trainings + Events)

Office 365 YouTube Channel

Office 365 Developer Training Course

Office 365 Developer Training Kit

Office 365 Webcasts (Recordings + Upcoming)

Office 365 Technical Training for Partners

Microsoft Lync Online – Focus on Conferencing

Microsoft & GITCA “24 Hours in Cloud”

Microsoft World Wide Events (Office 365)

SharePoint Development in the Cloud with SharePoint Online (SharePoint 2010 FireStarter Event)

Social

Office 365 – Official Facebook Page

Microsoft Office Web Apps – Facebook Page

Office365 – Official Twitter Page

Office 365 – Official LinkedIn Group

Office 365 Enterprise – LinkedIn Group

Windows Azure & Office 365 – LinkedIn Group

Miscellaneous

Microsoft BPOS to Office 365 Transition Center

Office 365 Plans (Pricing & Availability)

Office 365 Show Case Video Channel

Office 365 – Quick Overview of Exchange Online

Microsoft Office 365 which is currently in private beta phase is a next version of Microsoft BPOS offering containing SharePoint Online, Exchange Online, Lync Online and all of them in the in the cloud available as a service. Also Office Professional Plus is available which provides enhanced productivity while working with various online offerings. Following is a brief overview of Exchange Online with focus on mailbox capacity, audit logging, ability to perform legal hold on mails and new and improved administration console in Exchange Online. Please note that the details are subject to change as Office 365 become generally available.


In today’s world emailing is one of the most essential features for any organization and to keep it secure, highly available and easy to use is considered as one of the most essential requirement. Exchange Online offers various mail box sizes which are mainly dependent on subscription type. At the time of writing in Office 365 beta, following plans are available.


With Exchange Online you can also put a cap on a maximum size of a mail box that comes with the plan and hence reducing the mailbox storage for users. It’s common for organizations to request this reduction in mailbox sizes as quantity and size of mails become overwhelming. In order to achieve this you have to configure what is known as “Capacity Alerts” for user mail boxes, essentially these are notifications send to users as their mailboxes reaches the maximum sizes. There are three levels of notifications as shown below and each putting higher constrain on mail usage and penalizing user by limiting certain mail functionality until they decrease their mail box sizes to desired size.


Exchange Online uses the following default values for sending notifications and it is based on mail box type which is essentially tied to subscription plan. So depend on your requirements you can simply use Remote Power Shell which is available for Exchange Online to decrease these values to an amount that suites you. Read full article here

My “Office 365- SharePoint Online” session at GITCA “24 Hours in the Cloud” Event

[Update 15th April 2011:- This event is re-scheduled to take place on 1st June 2011]

It’s been really a busy year for me so far, I really like indulging into speaking especially when it comes to user groups and communities. GITCA (The Global IT Community Association) on June 1st 2011 will be conducting a 24 hour virtual event “24 hours in the Cloud” focusing on cloud computing. There will be various sessions ranging from Windows Azure to Office 365 (vNext of BPOS). As Office 365 is currently in private beta it’s a great opportunity for many of you to get a closer look into what’s coming up in next from Microsoft.

I am also presenting in this event, my session is “Office 365 – SharePoint Online Overview”. I will be covering the basics of SharePoint Online and dividing my allocated sixty minutes session time into multiple demos with discussion on various features and functionalities of SharePoint Online. I will also touch base on key considerations while making a shift from On-Premise to Online version of SharePoint. It’s a virtual event and all the speakers including me will be available via twitter (mine is @razibinrais) to answer your questions. I will be sharing my session resources (slide deck + session video) after the session right here on this blog post, so stay tuned for that.

 
 

So join in and learn about Microsoft Cloud!

Microsoft Boosts SharePoint Online with Office 365 Rollout

Couple of month’s back I wrote a brief article on SharePoint Online which is part of Office 365 offering (VNext of BPOS). Following is an excerpt from it and link to the full article.

Microsoft Office 365, which is currently in beta, is the next wave of Microsoft’s online offering containing SharePoint Online, Exchange Online, Lync Online and all of them in the cloud. Office Professional Plus is also available; it provides enhanced productivity while working with various online tools. The following is a quick overview of the productivity and storage availability in the SharePoint Online offering. The details are subject to change as Office 365 become generally available.

If you’re wondering which version of SharePoint is available in Office 365, the good news is its SharePoint Server 2010 but with a few restrictions and limitations. Some of these limitations are due to the fact that currently Office 365 is in beta, but a few of them will likely remain, even after the general availability of Office 365. This makes sense as few features and functionalities of SharePoint Server 2010 will not be feasible for the multitenant approach, which is the hallmark of Microsoft SharePoint Online. As SharePoint online will be made generally available the differences and limitations will be made available by Microsoft. Read Full Article

Microsoft SharePoint 2010 MCPD & MCITP Certifications

September 30, 2010 9 comments

[Updates on 11/Aug/2010: Added new link for SharePoint 2010 Hands On Labs + MSDN Virtual Labs links are updated.New links are added for SharePoint content from various conferences]

I recently earned my MCPD & MCITP certifications for SharePoint 2010 by passing all four required exams. Last month I had taken these exams and finally got confirmation from Microsoft that I have actually passed the whole track.

clip_image002

clip_image003

It’s my first experience with MSFT beta exams and definitely a good one one, but one of the most challenging part was limited material and guidance available to start preparing for these exams, plus there is very little information available on the exam themselves which I think is common with all the beta exams. Never the less MSDN and TechNet act as a great source of information including some great hands on tutorials. One thing that helped me a lot  is all the hands on activities I have done with SharePoint 2010 beta.

For those who are not aware of SharePoint 2010 Certifications, MSFT now offers two separate tracks namely MCPD for Developers and MCITP for IT Professionals each containing two exams as shown in figure below. This also means that SharePoint professionals (both Developers and IT Professionals) are now better align with other technologies / product certifications (for example .NET 3.5 MCPD track).

clip_image005

MCPD: SharePoint Developer 2010 Track

First you need to pass Exam 70-573 TS: Microsoft SharePoint 2010, Application Development and then Exam 70-576: PRO: Designing and Developing Microsoft SharePoint 2010 Applications to earn MCPD SharePoint Developer 2010.

MCITP: SharePoint Administrator 2010 Track

First you need to pass Exam 70-667: TS: Microsoft SharePoint 2010, Configuring and then Exam 70-668: PRO: Microsoft SharePoint 2010, Administrator to earn MCITP SharePoint Administrator 2010.

Microsoft Official Trainings

MSFT has announced couple of official trainings aligned with these certifications and in fact the links above provides detail on these trainings under the “Preparation Material” tab, so do look for them. Following is simple graphic view of what is available at this moment.

clip_image007

clip_image009

clip_image011

clip_image013

Question:- Where can I get free training material for SharePoint 2010?

Actually Microsoft provides great deal of training material that can help you out. Check following links below that contains hours of training material without any cost.

Get Started Developing on SharePoint 2010

SharePoint 2010 Developer Training Course

SharePoint 2010 Advanced IT Professional Training

Question:- Can I get ready to use SharePoint 2010 environment to do hands on activities?

SharePoint 2010 Virtual Image

You can download SharePoint 2010 Virtual Machine (Hyper-V image) form here. It contains SharePoint 2010 already configured for you along with Office 2010 & Project Server 2010. The Virtual Machines are only for evaluation and will expire after 180 days.  Once you have SharePoint 2010 environment ready to use you can download SharePoint 2010 Hands on Labs (You can either download all of them as a single zip file or individually) . Following are the brief details of the these labs.

SharePoint 2010 Hands on Labs

HOL01 – Developing a Visual Web Part in Visual Studio 2010
This hands-on lab introduces the Visual Studio 2010 SharePoint development environment. It shows how to build a Visual Web Part using LINQ to SharePoint, and how to connect one Web Part to another Web Part on the page. 

HOL02 – Developing a List Definition and Event Receiver in Visual Studio 2010 
This hands-on lab walks you through building a list definition for SharePoint 2010 in Visual Studio 2010. It also shows how to build an event receiver for the list in Visual Studio 2010 and deploy it to SharePoint. After the list and event receiver are deployed, you can use the developer dashboard to evaluate the performance of the event receiver. 

HOL03 – Developing Advanced Web Parts for SharePoint 2010 with Visual Studio 2010 
This hands-on lab shows how to build a Web Part using several SharePoint-specific controls in Visual Studio 2010. Investigate advanced built-in Web Parts, including the Data View Web Part. 

HOL04 – Developing with LINQ to SharePoint in Visual Studio 2010 
This hands-on lab explores a variety of LINQ queries on SharePoint 2010, going into more depth than the introductory hands-on lab. It also walks you through an exercise of creating a custom content type in Visual Studio 2010. 

HOL05 – Developing for SharePoint 2010 with the Client OM and REST in Visual Studio 2010 
This hands-on lab introduces the Client object model for use in calling SharePoint 2010 APIs from a client machine. It also shows the use of ADO.NET Data Services to call REST services in SharePoint 2010. 

HOL06 – Developing a BCS External Content Type with Visual Studio 2010 
This hands-on lab walks you through building an external content type for Business Connectivity Services using Visual Studio 2010. It also builds a form for Microsoft Outlook and shows the data being edited offline in Outlook. 

HOL07 – Developing a SharePoint 2010 Workflow with Initiation Form in Visual Studio 2010 
This hands-on lab walks you through building a workflow in Visual Studio 2010 for SharePoint 2010. You add an initiation form to the workflow and use an external data exchange activity in the workflow. 

HOL08 – Developing SharePoint 2010 User Interface with Silverlight in Visual Studio 2010
This hands-on lab walks you through building Microsoft Silverlight applications for use in SharePoint 2010. You will access SharePoint 2010 data in Silverlight using the Client object model. 

HOL09 – Developing SharePoint 2010 Sandboxed Solutions in Visual Studio 2010 
This hands-on lab walks you through building a Sandboxed Solution Web Part for SharePoint 2010. It will also add code to the Web Part that overloads the limits placed by the sandboxed solution, and you will review how the solution is shut down. 

HOL10 – Developing SharePoint 2010 User Interface Ribbon and Dialog Customizations
This hands-on lab walks you through adding a custom action to the SharePoint 2010 ribbon, and creating a Web Part that uses the Dialog Framework.

SharePoint 2010 Virtual Labs

Off course for running the Hyper-V Image you need Windows Server 2008 x64 bit and machine with decent memory, if you find it difficult to manage this take a look at Microsoft Virtual Labs below.

Microsoft has launched number of SharePoint 2010 Virtual Labs, these labs are hosted on Microsoft Server so you don’t need to download anything on your machine and there is no constrain related to RAM or OS. Following is the list of Virtual Labs available at the moment, MSFT may add more in the future.

For IT Professionals
TechNet Virtual Lab: Backup and Restore in SharePoint Server 2010
TechNet Virtual Lab: Business Continuity Management in SharePoint Server 2010
TechNet Virtual Lab: Configuring Remote Blob Storage FILESTREAM Provider for SharePoint Server 2010
TechNet Virtual Lab: Configuring Tenant Administration on SharePoint Server 2010
TechNet Virtual Lab: Configuring User Profile Synchronization in SharePoint Server 2010
TechNet Virtual Lab: Introduction to Microsoft SharePoint Server 2010 Upgrade
TechNet Virtual Lab: New IT Pro Features in SharePoint Server 2010
TechNet Virtual Lab: Windows PowerShell in SharePoint Server 2010 

For Developers

MSDN Virtual Lab: Client Object Model

MSDN Virtual Lab: Customizing MySites

MSDN Virtual Lab: Designing Lists and Schemas

MSDN Virtual Lab: Developing a BCS External Content Type with Visual Studio 2010

MSDN Virtual Lab: Developing a Sandboxed Solution with Web Parts

MSDN Virtual Lab: Developing a Visual Web Part in Visual Studio 2010

MSDN Virtual Lab: Developing Business Intelligence Applications

MSDN Virtual Lab: Enterprise Content Management

MSDN Virtual Lab: Getting Started with SharePoint 2010

MSDN Virtual Lab: LINQ to SharePoint 2010

MSDN Virtual Lab: SharePoint 2010 User Interface Advancements

MSDN Virtual Lab: Visual Studio SharePoint Tools

MSDN Virtual Lab: Workflow

 

Question:- Are there any books I can use for SharePoint 2010 Exams?

At the moment there are no books that specifically target any of the SharePoint 2010 Exams. However the books that are recently published will help you gaining good understanding of SharePoint 2010 and definitely can help you for the exam. But do remember that SharePoint 2010 exams are much more aligned with real world scenarios and practices so more you get hands on experience with SharePoint 2010 higher the chances that you actually pass the exams.

Question:- I am experienced ASP.NET 3.5 developer with MCPD in .NET 3.5 (Exam 70-564), how should I proceed to SharePoint 2010 MCPD track? Is there any upgrade path?

I receive this question with number of variations like rather than ASP.NET 3.5 it would be ASP.NET 2.0. The answer depends on your experience and current knowledge of SharePoint 2010. SharePoint 2010 uses ASP.NET 3.5 (not 4.0) as a framework so it might be easier for you to pick topics like web part development, master pages etc. But at the same time you need to develop understanding of areas that are exclusive to SharePoint like Page Layouts, Features etc. So simply put get yourself some time to dig into SharePoint 2010 and use MSDN, TechNet and trainings to get started. When you are comfortable then go for certifications. For the second part of the question regarding the upgrade path, the answer is NO you cannot upgrade to SharePoint 2010 MCPD track from any other of MCPD track, at least I am not aware of any.

Question:-  Are there any free SharePoint conference videos/sessions available for download?

Yes, there are number of sessions available to download from various conferences.These session will help you getting better knowledge on various SharePoint 2010 areas.however do take note that these sessions regardless of event/conference are not specifically target any  SharePoint 2010 certification exams, but will help you getting better understanding of SharePoint 2010 which ultimately help you prepare for the exams. 

With this I have to end this post, but I will try to come back later and add/update it as things changes over time.

Cheers!

Follow

Get every new post delivered to your Inbox.