Quantcast
Channel: SharePoint 2013 - Setup, Upgrade, Administration and Operations forum
Viewing all 21070 articles
Browse latest View live

Office Web Apps 2013 - Word app not working on Sharepoint 2013 but Excel does

$
0
0

Hi there!

We had some problems with Office Web Apps 2013 not working with Lync, and the status of OWA was unhealty so we decided to install some updates for OWA.

We have downloaded November 2013 update for OWA.

We found out a guide for putting updates on OWA and done this steps:

* Remove-OfficeWebAppsMachine
* Installed the november update
* Restarted OWA server
* ran: New-OfficeWebAppsFarm -InternalUrl https://owasrv.domain.local -ExternalURLhttps://owasrv.domain.local -CertificateName "certname" -AllowHttp  -EditingEnabled
* Restart-Service WACSM
- checked in IIS in the bindings if the site useses the correct certificate

Then we went on Sharepoint 2013 and ran some commands:

* Remove-SPWOPIBinding –All:$true
* New-SPWOPIBinding -ServerName owasrv.domain.local
* Set-SPWOPIZone –zone “external-https”

Now here are the funny things:
* Excel word app on Sharepoint 2013 works
* Word APP not working (screenshot)
* Lync 2013 powerpoint still not working (screenshot)
* status of OWA is healthy


bostjanc


What options we can have for monitoring SharePoint Farm till web part level?

$
0
0

Dear All,

I want to monitoring SharePoint Farms till web part level.

2 Farms - SP 2010 & other SP 2013

Farms are with NBL  - F5 & clustered database.

Our client have enterprise licenses.

Accordingly please suggest what tool I can use for monitoring, administrating, reporting, alerting etc eitherMicrosoft's or  any third party

I came to know about System Center will this monitor till web part level.



Sumeet Singhal

how to integrate sharepoint server with exchange server.

$
0
0

hi guys,

     I have installed SharePoint 2013 in windows 2012. This is in another domain. And i have installed exchange server in another domain. I need to configure SharePoint server to with communicate with Exchange server. I have configured SharePoint server with the help of this link.

http://blogs.technet.com/b/mspfe/archive/2013/04/04/new-age-collaboration-with-exchange-2013-and-sharepoint-2013-part-2.aspx

But according to link i would have been asked certificate warning or it would shown OWA link. But when i enter the url nothing displays. Please guide me how to configure for SharePoint server to with communicate with Exchange server.

Thanks

Rajendran.

Move content from Library1 in sitecollectionA to library2 in sitecollectionB

$
0
0

Hi All,

I have configured the content organizer for two sitecollection A & B. The send to connection has also been created successfully.

Now when I move some document from a library in sitecollnA to sitecollectionB it goes to drop off library.

I want it to directly go to other library in sitecollectionB? But where should i configure this.

MySite and /personal/%username% not working after Migration from 2010 to 2013

$
0
0

Hi everybody,

I'm in the process of migrating Sharepoint 2010 to Sharepoint 2013

I installer a new SharePoint 2013 in a lab server, with all services

I backup both WSS_Content and SSP_WSS_Content from the Sharepoint 2010

I restored both to the new SQL

I runned the Test-SPContentDatabase for both database and fixed all isues.

I runned the Mount-SPContentDatabase for both to my http://site/ webapp (both in the same webapp)

I went to http://site/ and runned the "Upgrade Wizard" and got a Updated sucessfully

When I click on "About me" or go to http:/site/personal/username, it switch to person.aspx?... and then to page not found

What's wrong? I can't access any data from the /personal/ sites migrated...

my User Profile is running, I did synchronise all the profiles, clicked on "Setup mysite" and filled as my old server, but it is still not working.

Can anyone help me? Everything "seems" to be working fine except I can't access any /personal/ site.

I removed the old /mysite/ and created a new one, and now everytime I try to access a /personal/ site it goes back to mysite...

Sharepoint online 2013 - custom user login page

$
0
0

I have the following issue:

We have a sharepoint online 2013 (cloud-hosted) team site (ourcompanyname,sharepoint,com) as part of our Office365 Enterprise E3 license

At the moment our users must login through the standard microsoft office365 login form to access our site (login,microsoftonline,com)


Is there a way to have our users login through a custom login form (basic username and password) which then logs them into our sharepoint team site?

Is it possible to do this? I have heard this is achievable with FBA and SP 2013 (on-premise) but not sure about SP 2013 online (cloud hosted) version.

Any response would be greatly appreciated.

many thanks,

Trevor

Open office web app documents in new tab by default

$
0
0
I need all of my documents to open in a new tab. I've installed office web apps but everything opens in the same tab. I don't want to install jquery. Is there any other way that I can force all documents to open in a new tab?

High Availability & DR setup

$
0
0

Hello Experts

I am planning a DR environment for SP2013 below is the scenario.

Production Environment:

2WFE 1APP 2Node DB cluster.

Now I want a DR setup to be placed for this environment. Should I configure all SP databases for synchronous mirroring or just introduce one more node in the cluster.

And Suppose In DR environment I just want "1 SP server and 1 DB server"(since it is a DR which would be used only for time being) OR I go for the same configuration as in the production.


Thread was being aborted Exception while creating large number of Sites in SharePoint 2013

$
0
0

Hi All,

I am getting threading exception while creating a large extent of sites in SharePoint 2013. I am reading data from an excel file and then looping each row. The sites are creating for first two rows then i am getting exception. This code working fine in dev server but not in UAT server. I tried with changing maxRequestLength in web.config but not working. And also followed the below link.

http://support.microsoft.com/kb/928756

My code as follows-

                                                                                                                                    

private void CreateSites(DataRow dr)
        {
            try
            {

                using (SPSite site = new SPSite(OtherSiteCollection)) // I am creating sites in another site collection
                {
                    using (SPWeb web = site.OpenWeb())
                    {
                        
                            SPWeb newWeb = null;

                            SPWebTemplateCollection templates = site.RootWeb.GetAvailableWebTemplates(1033);

                            SPWebTemplate template = (from SPWebTemplate m in
                                                          templates
                                                      where m.Title == "SiteTemplate"
                                                      select m).FirstOrDefault(); //Here i am using custom template

    string siteName = dr["Site Name"].ToString();

                            newWeb = web.Webs.Add(siteTitle, siteTitle, siteDescription, 1033, template, true, false); //Getting exception here.

                            newWeb.Update();
                            newWeb.Dispose();

                    }
                }
            }
            catch (Exception ex)
            {
                lblMsg.Text = "Exception in create sites : " + ex.Message + ";" + ex.StackTrace + ";" + ex.ToString()
            }

I am getting error as-

Exception in create sites: Thread was being aborted.;   at Microsoft.SharePoint.Library.SPRequestInternalClass.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent, String& bstrWebTemplate, Int32& plWebTemplateId)
   at Microsoft.SharePoint.Library.SPRequest.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent, String& bstrWebTemplate, Int32& plWebTemplateId)
   at Microsoft.SharePoint.SPWeb.ProvisionWebTemplate(SPWebTemplate webTemplate, String webTemplateToUse, SPFeatureWebTemplate featureWebTemplate)
   at Microsoft.SharePoint.SPWeb.ApplyWebTemplate(SPWebTemplate webTemplate)
   at Microsoft.SharePoint.SPWeb.CreateWeb(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean bCreateUniqueSubweb, Boolean bConvertIfThere, Guid appInstanceId)
   at Microsoft.SharePoint.SPWeb.SPWebCollectionProvider.CreateWeb(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean bCreateUniqueSubweb, Boolean bConvertIfThere, Guid appInstanceId)
   at Microsoft.SharePoint.SPWebCollection.Add(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean useUniquePermissions, Boolean bConvertIfThere, Guid appInstanceId)
   at Microsoft.SharePoint.SPWebCollection.Add(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, SPWebTemplate WebTemplate, Boolean useUniquePermissions, Boolean bConvertIfThere)
   System.Threading.ThreadAbortException: Thread was being aborted.
   at Microsoft.SharePoint.Library.SPRequestInternalClass.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent, String& bstrWebTemplate, Int32& plWebTemplateId)
   at Microsoft.SharePoint.Library.SPRequest.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent, String& bstrWebTemplate, Int32& plWebTemplateId)
   at Microsoft.SharePoint.SPWeb.ProvisionWebTemplate(SPWebTemplate webTemplate, String webTemplateToUse, SPFeatureWebTemplate featureWebTemplate)
   at Microsoft.SharePoint.SPWeb.ApplyWebTemplate(SPWebTemplate webTemplate)
   at Microsoft.SharePoint.SPWeb.CreateWeb(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean bCreateUniqueSubweb, Boolean bConvertIfThere, Guid appInstanceId)
   at Microsoft.SharePoint.SPWeb.SPWebCollectionProvider.CreateWeb(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean bCreateUniqueSubweb, Boolean bConvertIfThere, Guid appInstanceId)
   at Microsoft.SharePoint.SPWebCollection.Add(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean useUniquePermissions, Boolean bConvertIfThere, Guid appInstanceId)
   at Microsoft.SharePoint.SPWebCollection.Add(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, SPWebTemplate WebTemplate, Boolean useUniquePermissions, Boolean bConvertIfThere)
Thread was being aborted.;   at System.Threading.ThreadAbortException: Thread was being aborted.

Can anyone please help. Thanks!


dinesh




Configuring App Catalog as Online SharePoint App Store

$
0
0

Hi All,

         I have a requirement in which i require to configure App Catalog in such a way that it should behave as Online SharePoint App store. We should be able to track Apps which are downloaded. Is there any possibility we can achieve this? Thanks in advance


error in searching a community site in SP 2013 in Community portal template based site

$
0
0

hi,

I have created a community site collection and created few subsites with community site template.

after this, i have created a community portal template such that i can search for the popular communities in this template.

[ using content search web part].

i have performed the full crawl on this web appln in my search serv.appln

Now when i searched for a  existing community[ clicked on the sear

ch button] i am getting the below error:.

Exception Details: System.Runtime.InteropServices.COMException: The file or folder name contains characters that are not permitted.  Please use a different name.<nativehr>0x81020073</nativehr><nativestack></nativestack>

Source Error: 
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace: 
[COMException (0x81020073): The file or folder name contains characters that are not permitted.  Please use a different name.<nativehr>0x81020073</nativehr><nativestack></nativestack>]
   Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) +0
   Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) +727

[SPException: The file or folder name contains characters that are not permitted.  Please use a different name.]
   Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) +42520506
   Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) +42753829
   Microsoft.SharePoint.SPWeb.GetWebPartPageContent(Uri pageUrl, Int32 pageVersion, PageView requestedView, HttpContext context, Boolean forRender, Boolean includeHidden, Boolean mainFileRequest, Boolean fetchDependencyInformation, Boolean& ghostedPage, String& siteRoot, Guid& siteId, Int64& bytes, Guid& docId, UInt32& docVersion, String& timeLastModified, Byte& level, Object& buildDependencySetData, UInt32& dependencyCount, Object& buildDependencies, SPWebPartCollectionInitialState& initialState, Object& oMultipleMeetingDoclibRootFolders, String& redirectUrl, Boolean& ObjectIsList, Guid& listId) +1814
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.FetchWebPartPageInformationForInit(HttpContext context, SPWeb spweb, Boolean mainFileRequest, String path, Boolean impersonate, Boolean& isAppWeb, Boolean& fGhostedPage, Guid& docId, UInt32& docVersion, String& timeLastModified, SPFileLevel& spLevel, String& masterPageUrl, String& customMasterPageUrl, String& webUrl, String& siteUrl, Guid& siteId, Object& buildDependencySetData, SPWebPartCollectionInitialState& initialState, String& siteRoot, String& redirectUrl, Object& oMultipleMeetingDoclibRootFolders, Boolean& objectIsList, Guid& listId, Int64& bytes) +38450956
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.GetFileForRequest(HttpContext context, SPWeb web, Boolean exclusion, String virtualPath) +561
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.InitContextWeb(HttpContext context, SPWeb web) +306
   Microsoft.SharePoint.WebControls.SPControl.SPWebEnsureSPControl(HttpContext context) +1043
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.GetContextWeb(HttpContext context) +27
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.PostResolveRequestCacheHandler(Object oSender, EventArgs ea) +1454
   System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +165


SharePoint 2013 Search not working for Non default URL's

$
0
0

Hi All,

In our SharePoint 2013 environment search is not working for non default zones. But search working for Default URL's only.

For Ex:

Default URL, where search is working: http://www.intranet.company.com/

Intranet URL where search is not working: http://intranet/

I see crawling is running for not default url's also. Can anybody share your ideal to resolve our issue.


MD.Liakath ali

how can I access Central Administration in SP 2013

$
0
0

Hello

I need to access Central Administration, but don't know how.

I signed up to access SP 2013 with Microsoft, am using my home PC, IE10, running windows 7

After reading a couple of books on SP 2013 & SPD 2013 I created pages from the exercises in the books.

I want to start fresh and delete the pages I created.

the list of pages look like

https://my-site.sharepoint.com/directions

https://my-site.sharepoint.com/contactus

https://my-site.sharepoint.com/businessHours

from another forum, it was explained how to delete these, but first I have to get to the Central Administration page and don't know how to access it.

thank you

Pierre


pgg02

Sharepoint 2013 Online, how can I list all the sites and subsites I created

$
0
0

Hello

Am running Win 7, SP 2013 online, also using SPD 2013.

I have read a book on SP 2013 and SPD 2013 did many exercises, created many things some good many bad ;-)

Now am ready to build what I intended to do, but I fear I created many sites and subsites that I can't find because I did not delete in a proper manner.

How can I generate a list of my creations? so I can find/delete them.

Pierre


pgg02

Register-SPWorkflowService returned an error: (401) Unauthorized error

$
0
0

I installed and configured Workflow Manager on SharePoint Server 2013 server (Windows Server 2008 R2).
When I run Register-SPWorkflowService –SPSite “<site collection url>” –WorkflowHostUri "<workflow manager site>"  I get the following error message:

The remote server returned an error: (401) Unauthorized.

Workflow manager site works fine. The XML file is displayed correctly in browser with both HTTP and HTTPS protocols.
The HTTPS certificate is trusted.

SharePoint Server and Workflow Managerare installed on the same server.



SharePoint 2013 User Profile

$
0
0

I am in the process of setting up the SharePoint 2013 User Profile service and have an issue when starting the Sync service. In the event logs I am seeing:

Log Name:      Application
Source:        Forefront Identity Manager
Date:          12/23/2013 12:23:00 PM
Event ID:      3
Task Category: None
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      VPCSPS.domain.local
Description:
.Net SqlClient Data Provider: System.Data.SqlClient.SqlException: HostId is not registered
   at Microsoft.ResourceManagement.Utilities.ExceptionManager.ThrowException(Exception exception)
   at Microsoft.ResourceManagement.Data.Exception.DataAccessExceptionManager.ThrowException(SqlException innerException)
   at Microsoft.ResourceManagement.Data.DataAccess.RetrieveWorkflowDataForHostActivator(Int16 hostId, Int16 pingIntervalSecs, Int32 activeHostedWorkflowDefinitionsSequenceNumber, Int16 workflowControlMessagesMaxPerMinute, Int16 requestRecoveryMaxPerMinute, Int16 requestCleanupMaxPerMinute, Boolean runRequestRecoveryScan, Boolean& doPolicyApplicationDispatch, ReadOnlyCollection`1& activeHostedWorkflowDefinitions, ReadOnlyCollection`1& workflowControlMessages, List`1& requestsToRedispatch)
   at Microsoft.ResourceManagement.Workflow.Hosting.HostActivator.RetrieveWorkflowDataForHostActivator()
   at Microsoft.ResourceManagement.Workflow.Hosting.HostActivator.ActivateHosts(Object source, ElapsedEventArgs e)
Event Xml:
< Event xmlns="">
  <System>
    <Provider Name="Forefront Identity Manager" />
    <EventID Qualifiers="0">3</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2013-12-23T12:23:00.000000000Z" />
    <EventRecordID>8678</EventRecordID>
    <Channel>Application</Channel>
    <Computer>VPCSPS.domain.local</Computer>
    <Security />
  </System>
  <EventData>
    <Data>.Net SqlClient Data Provider: System.Data.SqlClient.SqlException: HostId is not registered
   at Microsoft.ResourceManagement.Utilities.ExceptionManager.ThrowException(Exception exception)
   at Microsoft.ResourceManagement.Data.Exception.DataAccessExceptionManager.ThrowException(SqlException innerException)
   at Microsoft.ResourceManagement.Data.DataAccess.RetrieveWorkflowDataForHostActivator(Int16 hostId, Int16 pingIntervalSecs, Int32 activeHostedWorkflowDefinitionsSequenceNumber, Int16 workflowControlMessagesMaxPerMinute, Int16 requestRecoveryMaxPerMinute, Int16 requestCleanupMaxPerMinute, Boolean runRequestRecoveryScan, Boolean&amp; doPolicyApplicationDispatch, ReadOnlyCollection`1&amp; activeHostedWorkflowDefinitions, ReadOnlyCollection`1&amp; workflowControlMessages, List`1&amp; requestsToRedispatch)
   at Microsoft.ResourceManagement.Workflow.Hosting.HostActivator.RetrieveWorkflowDataForHostActivator()
   at Microsoft.ResourceManagement.Workflow.Hosting.HostActivator.ActivateHosts(Object source, ElapsedEventArgs e)</Data>
  </EventData>
< /Event>

Log Name:      Application
Source:        Forefront Identity Manager
Date:          12/23/2013 12:23:35 PM
Event ID:      3
Task Category: None
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      VPCSPS.domain.local
Description:
.Net SqlClient Data Provider: System.Data.SqlClient.SqlException: HostId is not registered
   at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
   at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
   at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
   at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()
   at System.Data.SqlClient.SqlDataReader.get_MetaData()
   at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
   at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
   at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
   at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
   at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
   at System.Data.SqlClient.SqlCommand.ExecuteReader()
   at Microsoft.ResourceManagement.Data.DataAccess.RetrieveWorkflowDataForHostActivator(Int16 hostId, Int16 pingIntervalSecs, Int32 activeHostedWorkflowDefinitionsSequenceNumber, Int16 workflowControlMessagesMaxPerMinute, Int16 requestRecoveryMaxPerMinute, Int16 requestCleanupMaxPerMinute, Boolean runRequestRecoveryScan, Boolean& doPolicyApplicationDispatch, ReadOnlyCollection`1& activeHostedWorkflowDefinitions, ReadOnlyCollection`1& workflowControlMessages, List`1& requestsToRedispatch)
Event Xml:
< Event xmlns="">
  <System>
    <Provider Name="Forefront Identity Manager" />
    <EventID Qualifiers="0">3</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2013-12-23T12:23:35.000000000Z" />
    <EventRecordID>8691</EventRecordID>
    <Channel>Application</Channel>
    <Computer>VPCSPS.domain.local</Computer>
    <Security />
  </System>
  <EventData>
    <Data>.Net SqlClient Data Provider: System.Data.SqlClient.SqlException: HostId is not registered
   at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
   at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
   at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
   at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()
   at System.Data.SqlClient.SqlDataReader.get_MetaData()
   at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
   at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
   at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
   at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
   at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
   at System.Data.SqlClient.SqlCommand.ExecuteReader()
   at Microsoft.ResourceManagement.Data.DataAccess.RetrieveWorkflowDataForHostActivator(Int16 hostId, Int16 pingIntervalSecs, Int32 activeHostedWorkflowDefinitionsSequenceNumber, Int16 workflowControlMessagesMaxPerMinute, Int16 requestRecoveryMaxPerMinute, Int16 requestCleanupMaxPerMinute, Boolean runRequestRecoveryScan, Boolean&amp; doPolicyApplicationDispatch, ReadOnlyCollection`1&amp; activeHostedWorkflowDefinitions, ReadOnlyCollection`1&amp; workflowControlMessages, List`1&amp; requestsToRedispatch)</Data>
  </EventData>
< /Event>

Farm Details

SQL Server: SQL Server 2012 SP1 CU6 default instance - SharePoint references SQL using an alias VPCSPSSQL

SharePoint: SharePoint 2013 14.0.4551.1001 (1 server in the farm set to English United Kingdom)

The farm account is a member of Local Admin group, all local ForeFront groups, has log on as a batch and logon as a service, replicate directory changes

Thank you

Sharepoint 2013 subsite with anonymous access

$
0
0

I am setting up subsite choosing unique permissions.

Later we enabled anonympus access using  site stetings ->site permissions. anon acess at entire web site was selected.

However while  browsing anonymously I found we can view libraries lists , however while selecting office  document , it prompts for login while opening dcument with word and then upon cancel it shoes the document, however if we close the word and then go back to browser to  Subsite url , session refreshes automatically and  produces an error

Sorry, something went wrong
An unexpected error has occurred.

Web Parts Maintenance Page: If you have permission, you can use this page to temporarily close Web Parts or remove personal settings. For more information, contact your site administrator.
Technical Details

Windows 8 & VM

$
0
0

Can I install SharePoint 2013 on Windows 8 with VM?

Which VM is the recommened one?

Site Subscription in Share Point 2013 FBA

$
0
0

Hello Experts,

Recently, I worked on site subscription in share point 2013 foundation. I followed below link to set up site subscription. & I successfully set up it on my server which was windows authentication not Form based authentication.

http://blogs.msdn.com/b/russmax/archive/2010/04/03/sharepoint-2010-multi-tenant-hosting-part-2-configuring.aspx

Now I had followed same steps to set up Site subscription in my another web application which is having Form Based Authentication.

Now when I am creating a Tenant Site admin, It shows error that "User not found".

Following is the command which I am executing:

$tasite = new-spsite –url "http://spf2013dev1:3001/sites/TenantAdmin" –template “tenantadmin#0” –owneralias SPF2013FARM1\admin –sitesubscription $sub -AdministrationSiteType tenantadministration.

I checked domain name and user. Both are exist. To set up FBA in Sharepoint Foundation 2013, I had follow below link.

http://blogs.msdn.com/b/sridhara/archive/2010/01/07/setting-up-fba-claims-in-sharepoint-2010-with-active-directory-membership-provider.aspx

Please let me know your comments.

Local security policies affected by SharePoint 2010 and 2013

$
0
0

Where can I get a comprehensive list of changes SharePoint 2010 and 2013 (implemented with least-priveleged security model) make to local security policies? I have only been able to find bits and pieces of this important info from non-Microsoft sources. I need the details to prevent GPO from disabling or modifying access to needed groups and permissions (and breaking things).

Through experience and what I've researched, the IIS_IUSRS local users group needs "Impersonate a Client After Authentication," and at least some service accounts need "Allow log on locally," "Log on as a service" and "Log on as a batch job." Is this correct and if so...which accounts need which permissions? Are there others?

Thanks in advance!

Viewing all 21070 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>