Wednesday 19 March 2014

My First Sharepoint-Hosted App in 2013

My First Sharepoint-Hosted App in 2013

 Reference

I would recommend to read Apps in SharePoint 2013 post before going through this one.
I want to create a SharePoint-Hosted App in 2013 using Visual Studio.
Description: http://4.bp.blogspot.com/-_JzeoBOQ2WE/UNaS7XSHVWI/AAAAAAAACcM/IACH7yv50a0/s400/1.png
I have created a SharePoint 2013 machine with all required software.
Just as a best practice, even if you are creating a standalone server, enable Active Directory Domain Services.
SharePoint 2013 works better when the system is in a Domain, rather than in a workgroup.

So, I have installed Windows server 2012, enabled all required features. Installed Office 2013, SharePoint 2013, Visual Studio 2012 and Developer tools for SharePoint 2013.

We will create an "App for SharePoint" and try to understand the scaffold code and try to deploy it and see what can happen.

Step 1: Open Visual studio and select "App for SharePoint".
Description: http://4.bp.blogspot.com/-lcFgf3Sj0UE/UNaXQ9oRzrI/AAAAAAAACdA/WcqmPrC777U/s640/2.png

Provide required data. While selecting the hosting option, remember to select the hosting option as "SharePoint-Hosted". You can select Auto-Hosted if you want to deploy your App to Windows Azure. Provider-Hosted if you want to deploy the App to any other hosting Providers.

Description: http://3.bp.blogspot.com/-Q15nuofOmCE/UNaYnx3hNsI/AAAAAAAACdU/rSwgfN2Bmko/s640/3.png

Step 2: Default "App" code is created and lets have a look at its content.
Description: http://2.bp.blogspot.com/-Zkrk6UdRprQ/UNaaXqw5KKI/AAAAAAAACew/01q0gWxxs-4/s320/4.png
Project is created with a Default.aspx page and few script files and configuration files. First thing we need to know is about "Default.aspx" page. We already read that every SP-Hosted App we Install/Deploy will be created as a Subweb under SP Web application. That Subweb will be defaulted to this specific page. When user click on the App, he will be navigated to this page first. So better not to mess with the name of the file.
Lets see the content of the file now.

Step 3: I have attached the snapshot of the "Default.aspx" file and see what is the significance of each part.
Description: http://3.bp.blogspot.com/-rAnWSapf2_Y/UNahWAlNvHI/AAAAAAAACfk/yQChkgfDcQ0/s640/5.png

The first highlighted box refers to the Framework provided JavaScript libraries. As we will be using Client Side Object Model(CSOM), these Jscript libraries will provide the necessary support while execution of our custom code.

Second highlighted box refers to the local script file pertaining to this specific app. We will see in detail about this in next step.

Third one is the sample code I added. We will not be doing extensive coding right now. The objective is to see if there are any hurdles in deploying an App.

Step 4: Open App.js file under scripts. This file content is responsible for Loading the Context and Web information in which the App is running. Look at the code and its almost self explanatory.

Description: http://1.bp.blogspot.com/-oDq3Q_c6xnc/UNalNjmfs8I/AAAAAAAACgY/_4ptq3v06k8/s640/6.png

Step 5: Now I tried to deploy the App. 
Oops, got an error.

" Error occurred in deployment step 'Install app for SharePoint': Failed to install app for SharePoint. Please see the output window for details."

Ok, looked at Output window found another reason.

 " ErrorDetail: Apps are disabled on this site. "

Now we need to remember what we learned in prior post.  Any SharePoint-Hosted App will try to create a Subweb which will be executed in a separate AppDomain apart from SharePoint Farm.
Currently SharePoint dint have any clue on where to Host this app code and what to do with it.

Step 6: We need to create a new App Domain, and register it with SharePoint. So next time when you deploy an App, it know where to host it.
I created my machine on a Domain "Sharepoint13.com". So I would like to create an App Domain "Sharepoint13Apps.com" for hosting purpose. For that go to 
Administrative Tools > DNS > following window will b opened showing the Machine Name and the current App Domain in which SharePoint farm is executing.
Description: http://4.bp.blogspot.com/-ciQcYf_F3Pw/UNapPIDmerI/AAAAAAAAChM/Wfjg6-M0QDo/s320/7.png

Right click on Forward Lookup Zone and Click on
"New Zone" > "Next" > "Next" > "Next" > following window will open.

Description: http://3.bp.blogspot.com/-PP6AeUZrCB8/UNapzKy3odI/AAAAAAAAChU/z8nF-ZnuURY/s400/8.png
Now the new AppDomain is created, Now we will create a wildcard Alias (CNAME) record to allow apps to create unique domain names within our app domain, Sharepoint13Apps.com. Right-click Sharepoint13Apps.com and select Refresh. Then right-click Sharepoint13Apps.com and select New Alias (CNAME)…
Give the values as I have shown and Click OK.
Description: http://1.bp.blogspot.com/-1cY8d4FUox8/UNasnZwBnuI/AAAAAAAACjE/0TlQj9KOEPc/s400/9.png

Now App Domain is created, lets test it now. Open CMD window and try pinging to "abc.Sharepoint13Apps.com". . . Successfully done.
Description: http://2.bp.blogspot.com/-8zND3jt5TGw/UNas_LEl_sI/AAAAAAAACjM/lKqtetdSJls/s640/1.png

Step 7: We need to register this newly created app domain with SharePoint. Go to Central admin, click on Apps on right menu.
Description: http://2.bp.blogspot.com/-AZ_B2UQCwu8/UNat7zdYoVI/AAAAAAAACjY/Rj1NxqUoLVw/s400/2.png
it will give you a message saying

"The Subscription Settings service and corresponding application and proxy needs to be running in order to make changes to these settings. "

This means a new service application running in its own app pool needs to be created and up and running.
Lets create a Managed account with Machine admin credentials. Mine is 
"Sharepoint13\Administrator".
Open the PowerShell window and execute below script.

Description: http://www.codeproject.com/images/minus.gif Collapse | Copy Code
add-pssnapin "Microsoft.Sharepoint.Powershell"
 
$account = Get-SPManagedAccount sharepoint13\administrator
 
Remove-SPServiceApplicationPool -Identity SettingsServiceAppPool
 
$appPoolSubSvc = New-SPServiceApplicationPool -Name SettingsServiceAppPool -Account $account
 
$appSubSvc = New-SPSubscriptionSettingsServiceApplication -ApplicationPool $appPoolSubSvc -Name SettingsServiceApp -DatabaseName SettingsServiceDB
 
$proxySubSvc = New-SPSubscriptionSettingsServiceApplicationProxy -ServiceApplication $appSubSvc
 

It may prompt you once, say Yes.
Some times the above script may give error

"Access denied. Only machine administrators are allowed to create administration service job definitions" 
Go to "C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\CONFIG\POWERSHELL\Registration" and execute SharePoint.ps1 as Administrator.
Issue will be resolved.

Once this script is successfully executed. We have created a new service Application, and its proxy which will run under its own Service App Pool. To verify this go to 
Central Admin > Service Applications > Manage Service Applications > you can see below Svc application created , up and running.
Description: http://1.bp.blogspot.com/-19AbBhjAleY/UNaymcg7QbI/AAAAAAAACk8/O2gEYEYDHcM/s640/3.png
Step 8: Now go to Central Admin > Apps > Configure App URLs
Description: http://2.bp.blogspot.com/-VBlP-MnXnlQ/UNazQ2mEmKI/AAAAAAAAClE/hjsNweJAbVM/s640/4.png

You can see that the new App Domain we created automatically populated here, just mention app prefix as "Apps" and say OK.

We are all set to deploy our SharePoint-Hosted App. Right click on Solution and say "Deploy" 

Once App is deployed successfully, go to SharePoint Application and click on "Site Actions" the little gear symbol on top right and click on Site Content. You can see your App there.
Description: http://3.bp.blogspot.com/-hqVCBbePaj4/UNa0tEp9grI/AAAAAAAACl8/JzNq4-1Iztw/s640/5.png

Lastly we have to observe one more thing before closing this topic. Observe the url of site and the url of the App after loading.
Description: http://2.bp.blogspot.com/-3-i9tR20pkI/UNa2iWVMy6I/AAAAAAAACm0/fkzhANByBew/s640/6.png
We can see SharePoint-Hosted App loaded in different App Domain thus causing no harm to Actual SharePoint Farm in any circumstances. 
 






No comments:

Post a Comment