Sharepoint 2013 app development guidelines - sharepoint-2013

I worked in .net . I start working in sharepoint 2013 today and I'm confused where is .cs file of .aspx file . I need book or any site to learn sharepoint app development . Please don't suggest msdn .

I'd recommend Wrox Sharepoint 2013 development. It is confusing (sharepoint development, at first), and for the most part, you won't be doing .cs code for Sharepoint applications. You'll want to do everything client side and call web APIs from the application that you eventually deploy into Sharepoint. Then, your APIs can live wherever and you write .NET code just as you always have. If you follow that formula, you should set yourself up for easy migration paths once SP gets updated.

Download this book .I got this book in google. I think this one will help you.

Related

how to use addin developed with microsoft.sharepoint.dll in other system

I've developed an outlook addin in vs2013. The development machine has sharepoint installed. My code has:
using Microsoft.SharePoint;
But when I run this code on a client machine it shows an error.
enter image description here.In some sites they suggest using Microsoft.SharePoint.Client.dll. Can anyone help?
This won't work as you expected. Microsoft.SharePoint.dll is a server side library which is part of Microsoft SharePoint and hence can neither be referenced nor used otherwise in a client-side environment such as an Outlook add-in.
What you are looking for is Client-Side Object Model, or CSOM for short. However, developing CSOM apps is a completely different story, needs slightly different knowledge and skills. The bad news is most of your SharePoint-related work will have to be redeveloped almost from scratch.
If your SharePoint integration isn't heavy, you might be able to achieve what you want with SharePoint's web services, either REST or SOAP. There an article on MSDN providing insight to various types of SharePoint APIs and providing guidance which API to use in what situation. You shoudl read this first.
we can't use using Microsoft.SharePoint; in sharepoint not installed system.
we need to use using Microsoft.SharePoint.client; for client system and use client object model code.

How to make a Workflow in SharePoint Online 2013?

I've been doing some research on how to implement a workflow in SharePoint Online and I found two interesting examples:
First
Second
They were useful, but there is a big problem with these. They are apps, so the workflow cannot be used outside the app (ex. lists, libraries) is there any way to make this (using Visual Studio, Power shell, SP Designer, etc.)? I am new in SharePoint, can anybody help me?
You kan add
true
to the WorkflowManifest in order to publish the workflow om the hostweb. But not that the tasks og history for the workfow is still tracked on the appweb.
You can see example here...
http://www.vrdmn.com/2014/09/integrated-workflow-apps-deploy.html
If you need the tasks and history on the hostweb you can create a sandbox solution with the workflow and publish the wsp-apckage on the site.
If you are not a programmer you're probably better of with SharePoint Designer 2013. You can download that for free. Just make a quick search for SharePoint Designer 2013 Workflow. There are plenty of examples for this.

dotcms community edition capability

I am working on developing a weksite using a Java based CMS and had a close look at dotCMS community edition.
The website will initially hold some 500-600 pages, with good seo integration, performance, search capability. The pages will have images but no videos.
I want to run the site with dotcms community edition for a year or so and then upgrade to a licensed edition.
Can anybody please suggest if dotcms community edition can help build & run the site covering my above requirements.
Any pointers in this regard is appreciated.
Unfortunately the community edition does not support integrated search (the licensed edition uses elastic search), so you'll have to add third party search. All the other requirements are not a problem. I've build many many sites with dotCMS and I have never had a problem with those aspects of the CMS.
To figure out what is in and what is out, check out this list: http://dotcms.com/explore/editions/
Agree with Koenpeters, when we have a CE site on dotCMS we use Google custom search that we use, and then we have a plugin that feeds GCS a feed of all pages to index for searching...

SharePoint 2013 - How to get document library size?

We have this Document Library Monitoring Console App written in C# and its running in SharePoint 2007. We now upgrading our SharePoint Server to 2013, so we also need to upgrade our solutions and customization including console apps.
I search through the web I can't find replace for deprecated "SPSite.StorageManagementInformation".
Please read this MSDN article.
You can to use "SPSite.Usage.Storage".
Hope it help to you.

Glassfish, railo and coldbox - messed up links?

I am new to ColdFusion and ColdBox (and programming). I tried to setup ColdBox but some of the links in the sample applications are broken.
My configuration is a GlassFish v3 installation with the current Railo OSS. I access my site through Apache 2.2.14.
So instead of http://127.0.0.1:8080/railo/ I access my environment trough http://railo/.
In Railo I have a webroot mapping / to C:/webapps/myproject/.
I have copied the current ColdBox 3M4 to C:/webapps/myproject/coldbox. I can access the dashboard through http://railo/coldbox/dashboard/index.cfm and have access to all options.
My problems start the moment I try to open the sample gallery:
HTTP Status 500 -
type Exception report
message
description The server encountered an internal error () that prevented
it from fulfilling this request.
exception
java.io.FileNotFoundException: C:\webapps\viss-dev\coldbox\samples
(Zugriff verweigert)
note The full stack traces of the exception and its root causes are
available in the GlassFish v3 logs.
GlassFish v3
OK, no problem, just enter the link directly: http://railo/coldbox/samples/index.cfm.
The site looks plain, who cares - BUT all local links look like this: http://127.0.0.1:8080/coldbox/samples/applications/helloworld/index.cfm (railo is replaced with 127.0.0.1:8080).
Looks like trouble. To make my confusion perfect: when I try to access the login app: http://railo/coldbox/samples/applications/sampleloginapp/index.cfm and hit the submit button, I am redirected to this address: http://railo/railo/coldbox/samples/applications/sampleloginapp/index.cfm.
I believe that this is not really ColdBox-related, but it manifests itself when I try to use ColdBox, so here I am.
P.S.: amazon.de takes too long to ship the ColdBox book :(
Here's a suggestion, The good people at Vivotech have developed a couple of different installers for both Windows/IIS7 and various flavours of Linux for both Railo and Open BlueDragon. The setup installs Tomcat, Railo/Open Blue Dragon and the necessary connectors to the web server. Here's the link: http://www.viviotech.net/company/installers.cfm
I think you'll find using the installers to be a lot easier than working through it yourself. If you want to go that route, Adobe and various bloggers have instructions on how to do it. Matt Woodward has a very good blog posting on it: see MattWoodward.com, He also has a presentation on this, you can see it here.
hth,
larry
Since you are new to ColdFusion (and programming in general), I would recommend developing against Adobe ColdFusion. The Developer Edition of ColdFusion is free and available from Adobe.com. You won't need to mess around or configure GlassFish since Adobe ColdFusion comes with a baked-in pre-configured Tomcat, providing both servlet engine and web server.
Just install the 'Stand-alone' version of ColdFusion Developer Edition, copy the ColdBox files into the webroot and in less than 15 minutes you be up and running.
You should also check out ColdFusion Builder which is currently available in beta from http://labs.adobe.com. It has full language support and integrated help content for learning the ins-outs of the language.
As far as the ColdBox book goes, it's available as an eBook if you really can't wait. ;-)
DISCLAIMER: I spend about 50% of my waking life devoted to making ColdFusion better as the CF Product Manager at Adobe. :-)
i have given up on glassfish and i am now struggling with tomcat :D