Activating Sandbox Solution in SharePoint 2013

Hi,
I am having a Single Server (Windows Server 2008 R2 Standard) with Microsoft SharePoint Server 2013 installed on it.
I have one CRM solution which is sandbox solution and I want to deploy it on site collection. 
When i am going to SiteSettings > Solutions and upload the solutions and click on Activate button .. nothing is happening and solution is not getting activated. When I tried same with powershell using Install-SPUserSolution, I am getting below error,
Install-SPUserSolution : Object reference not set to an instance of an object.
At line:1 char:1
+ Install-SPUserSolution -Identity crmlistcomponent1.wsp -Site
http://in-mum-appcs ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~
    + CategoryInfo          : InvalidData: (Microsoft.Share...allUserSolution:
   SPCmdletInstallUserSolution) [Install-SPUserSolution], NullReferenceExcept
  ion
    + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletInstallU
   serSolution
Also, "Microsoft SharePoint Foundation User Code Service" Service is missing on Services On Server page so that I could
not start it. However I started "SharePoint User Code Host" service in services.msc
Please help me out, As I have got stuck in this problem from long back.
Thanks

From PowerShell, run:
Install-SPService
See if the User Code Service is visible on the Manage Services on Server page.
Trevor Seward
Follow or contact me at...
This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Similar Messages

  • Sharepoint Taxonomy Control in sandbox solution in sharepoint 2013

    Hi,
    We have requirement  to bind termsets into taxonomy control  using sandbox solution in sharepoint 2013.
    I cannot use webpart,and APP. Below code added in aspx page in module.
    i cannot write any code as this sandbox solution.
    <%@ Register Tagprefix="TaxonomyField" Namespace="Microsoft.SharePoint.Taxonomy" Assembly="Microsoft.SharePoint.Taxonomy, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"
    %>
     <TaxonomyField:TaxonomyWebTaggingControl ID="TWC" runat="server"  SspId="08d413ac-c81d-4232-b1df-c2da46f9b21a" TermSetId="06c93fa1-8a76-4637-9b87-5e612276c199"  AllowFillIn="true" IsMulti="false"
    IsDisplayPickerButton="true"  Language="1033"  IsAddTerms="true" >
        </TaxonomyField:TaxonomyWebTaggingControl>
    This is able to render the control, where as termsets are not being  displayed.
    Please help on this.
    -Navya

    I don't think hard coding SSPID and TermsetID is a good practice. Try to get the values through code and using unique names.
    <Taxonomy:TaxonomyWebTaggingControl ID="TWC" IsDisplayPickerButton="true"
    AllowFillIn="true" runat="server"
    ShowTaxonomy(TWC, TaxonomyGroup, TermSetName);
    public static void ShowTaxonomy(TaxonomyWebTaggingControl control, string taxonomyGroup, string termsetName)
    SPContext context = SPContext.Current;
    SPSite site = context.Site;
    TaxonomySession tsession = new TaxonomySession(site);
    TermStore ttermStore = tsession.TermStores["TermStore"];
    Group tgroup = ttermStore.Groups[taxonomyGroup];
    TermSet productsTermSet = tgroup.TermSets[termsetName];
    control.SspId.Add(ttermStore.Id);
    control.TermSetId.Add(productsTermSet.Id);
    control.IsAddTerms = false;
    control.AllowFillIn = false;
    control.IsMulti = true;
    control.IsIncludeUnavailable = false;
    control.Language = 0;
    if(termsetName==Constants.UserKeywordsTermSet)
    control.AllowFillIn = true;
    control.IsAddTerms = true;
    Bala

  • Deploy SharePoint 2010 Sandbox solution to SharePoint 2013

    Hi All,
                I have sand-box solution which is developed in  Visual Studio 2010 for  SharePoint 2010 ,And it is specially developed for branding the SharePoint 2010  site. Now I  need
    to add the sandbox solution to SharePoint 2013 Site.
                Can any one help how can I do this.
    Thanks, Quality Communication Provides Quality Work. http://siddiq-sharepoint2010.blogspot.in/ Siddiqali Mohammad .

    Hi siddiqali,
    According to your description, my understanding is that you want to deploy SharePoint 2010 Sandbox solution to SharePoint 2013.
    Most of the wsp Solutions deployed in SharePoint 2010 should work fine in SharePoint 2013. This is because of the Support for both 14 Hive and 15 Hive directories that are Created in SharePoint 2013 by default.
    Initially, when you deploy a SharePoint 2010 Solution it gets deployed to 14 Hive and not 15 Hive. To force the solution to install in 15 Hive you need to modify manifest.xml file of your solution and add addSharePointVersion=”15.0” attribute to it. The
    Solutions can be forced to install in 15 hive. However, some of the files especially that refers to _layouts might not work. All SharePoint 2010 Solution files that refers to _layouts folder (i.e. Features, Layouts-files, Images, ControlTemplates)needs to
    be updated, the best approach is to re-create the Solution in Visual Studio 2012.
    More information, please refer to the link:
    http://www.learningsharepoint.com/2013/03/24/deploy-sharepoint-2010-solutions-in-sharepoint-2013/
    Here are some similar posts for you to take a look at:
    http://www.threewill.com/2013/10/migrating-a-sharepoint-2010-solution-to-a-sharepoint-2013/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/30fe4cb9-ea11-46d0-868d-4306d915b4db/how-to-convert-sp2010-wsp-to-sp2013?forum=sharepointdevelopment
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How can we increase resource quota of sandbox solution in sharepoint 2013?

    Hi,
    i have created a sandbox solution for sharepoint 2013 but the problem is it shows that your resource usage exceeds your quota.so is there any way we can increase the resource usage quota.
    my application is on sharepoint online 365.
    thanks,
    Gaurav

    Sandbox solutions have been deprecated for SharePoint 2013.  And if you're using this within Office 365, then I'm guessing it means you've navigated directly to the _catalogs/solutions library?  As this resource quota is normally controlled from
    Central Administration, you might be stuck with your curent quota.
    Andy Burns has some interesting observations on Office 365 limitations when it comes to Sandbox solutions
    http://www.novolocus.com/2012/07/17/office-365-technical-observations-from-a-first-project/
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Creating Termset and terms in Taxonomy using Sandboxe Solution in Sharepoint 2013

    I created a Sandboxed Solution, Added one Visual web part in that solution with one button control. Added Microsoft.Sharepoint.Taxonomy.dll Reference to the solution. Then in the button click event i wrote the following code:
    SPSite site = SPContext.Current.Site;
                var taxonomySession = new TaxonomySession(site);
                var termStore = taxonomySession.DefaultSiteCollectionTermStore;
                lbl1.Text = termStore.ToString();
                var termStoreGroup = termStore.CreateGroup(txtTermSetGroupVal.Text);
                var termSet = termStoreGroup.CreateTermSet(txtTermSetCatNameVal.Text);
                termSet.CreateTerm("AAA", CultureInfo.CurrentCulture.LCID);
                termSet.CreateTerm("BBB", CultureInfo.CurrentCulture.LCID);
                termStore.CommitAll();
    Then, I deployed this solution in one Publishing site. Added one new page in that site and Inserted this visual webpart in that page. When i click that button, I got the
    following error,
    Web Part Error: Unhandled exception was thrown by the sandboxed code wrapper's Execute method in the partial trust app domain: An unexpected error has occurred. Correlation ID: 49c1759c-5913-70a8-76e3-b2827260601a.[SPUserCodeSolutionExecutionFailedException:
    Unhandled exception was thrown by the sandboxed code wrapper's Execute method in the partial trust app domain: An unexpected error has occurred.]

    Hi,
    The Yammer, OneDrive, Sites , My Sites and so on are buttons in the suite bar, the BROWSE, PAGE, SHARE etc. are the buttons in the ribbon, the two bars are added to the master
    page automatically during the converting process.
    A workaround is that we can hide the ribbon by using such a CSS code:
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Hashing password in UAG for FBA solution in Sharepoint 2013

    We have configured FBA SharePoint 2013 Pack from Codeplex on our SharePoint 2013 environment. Creating new users will hash the user passwords in the database. When we try to authenticate the FBA users via UAG (not joined to domain) the password
    will compare in clear text to the hashed password in the database. Is there any way to configure the UAG to hash the passwords the same way so we can compare it with the hashed value in our database?
    Any help here would be appriciated.

    Hi siddiqali,
    According to your description, my understanding is that you want to deploy SharePoint 2010 Sandbox solution to SharePoint 2013.
    Most of the wsp Solutions deployed in SharePoint 2010 should work fine in SharePoint 2013. This is because of the Support for both 14 Hive and 15 Hive directories that are Created in SharePoint 2013 by default.
    Initially, when you deploy a SharePoint 2010 Solution it gets deployed to 14 Hive and not 15 Hive. To force the solution to install in 15 Hive you need to modify manifest.xml file of your solution and add addSharePointVersion=”15.0” attribute to it. The
    Solutions can be forced to install in 15 hive. However, some of the files especially that refers to _layouts might not work. All SharePoint 2010 Solution files that refers to _layouts folder (i.e. Features, Layouts-files, Images, ControlTemplates)needs to
    be updated, the best approach is to re-create the Solution in Visual Studio 2012.
    More information, please refer to the link:
    http://www.learningsharepoint.com/2013/03/24/deploy-sharepoint-2010-solutions-in-sharepoint-2013/
    Here are some similar posts for you to take a look at:
    http://www.threewill.com/2013/10/migrating-a-sharepoint-2010-solution-to-a-sharepoint-2013/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/30fe4cb9-ea11-46d0-868d-4306d915b4db/how-to-convert-sp2010-wsp-to-sp2013?forum=sharepointdevelopment
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Sandbox solution in SP 2013

    Is any big enterprise write any sandbox solution in SharePoint 2013? If any enterprise already developed Sandbox solution in a large scale manner what option they have now to migrate it to SP 2013?
    Is Sandbox is implemented only for on-premise application? Or it is implemented for online also?
    Plz share your exclusive real-time experience.

    I think sandbox solutions are "stuck in the middle" right now. If you need full access to all of SharePoint, you must do a full-trust model. If you want total isolation, the new App Model does a better job of isolation. So sandbox solutions (to me) seem
    like the bridge between the old full-trust model and the new cloud app model. The (few) companies that I have seen using sandbox solutions are using them because they are managing their own on-premise SharePoint farms with mature governance processes to allow
    sandbox solutions to be deployed. If companies embraced this approach for 2010, it is still supported in SharePoint 2013. However, for new development, I would encourage you to take a look at the new Cloud App Model to see if your new development can match
    this model. http://msdn.microsoft.com/en-us/office/dn448480
    Andrew Connell does an excellent job on his blog outlining the characteristics of the three app models and when to consider each one.
    http://www.andrewconnell.com/blog/Understanding-SP2013-Apps-aka-Apps-101

  • Migration from Sandbox solution to SharePoint apps

    Hi,
      We have a requirement that we need to migrate SharePoint Sandbox Solution to SharePoint Apps. Few things which I would like to know that if the Sandbox solution has some custom code / server based code then how we have to migrate into Apps. Because
    Apps only support client based. And in some cases, sandbox has no code solution. In that case, how we can migrate into Apps..
    Recently, many companies are trying to migrate from Sandbox solution to apps becuase microsoft depreciated sandbox in SharePoint 2013. In future, they may stop to support sandbox solution. Please share your views on how to proceed on migration code
    and without code based solution to Apps...
    Balaji -Please click mark as answer if my reply solves your problem.

    HI Balaji,
    I assume you are having on premise Farm not office 365 so  in that case
    http://msdn.microsoft.com/en-us/library/office/fp179887(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/office/fp179930(v=office.15).aspx
    you have the following options for code:
    1- SharePoint Hosted Apps: you will write Javascript code and use Javascript to access client object model
    http://msdn.microsoft.com/en-us/library/office/fp142379(v=office.15).aspx
    2-Provider Hosted Apps: you will write 2 parts , the first one is an application that will be deplpyed to SharePoint server the second one is a web site (asp.net or mvc) that can be hosted on the SharePoint server or on a separate Application server and
    here you you can put all the logic of your .net code and you can have remote event recievers
    http://msdn.microsoft.com/en-us/library/office/fp142381(v=office.15).aspx
    for non code option what you will be doing is using SharePoint designer but mostly you will still to have SharePoint hosted apps
    some codes
    https://apps.codeplex.com/
    https://corporatenewsapp.codeplex.com/
    Hope this is clear and helpful
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

  • Create solutions in SharePoint 2013 with possible to run in SharePoint 2010

      Hi,
          I would like to create WebParts on SharePoint 2013 (in Visual Studio 2012) version but I would like to run them on SP 2010 too. So it would be great to have such compability back one solution under VS 2012. Is it possible to
    make this one to not duplicate code for different versions?
      Thanx for any info!
      Regards
      Kamil

    Hi,
    As Paul said, I suggest you develop your SharePoint project using visual studio 2010 for SharePoint 2010.
    If you want to use this project in SharePoint 2013, we need convert it to the SharePoint 2013 project, the following articles for your reference:
    Upgrade SharePoint 2010 Visual Studio Solution to SharePoint 2013
    http://ranaictiu-technicalblog.blogspot.com/2013/10/upgrade-sharepoint-2010-visual-studio.html
    Converting Multiple SharePoint 2010 Projects to SharePoint 2013
    http://www.codeproject.com/Articles/522220/Converting-Multiple-SharePoint-Projects-to-Sh
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Is it possible to create a Event Reciver program as Sandbox solution? - SharePoint 2010

    Dear All,
    I try to create a Event receiver program as SandBox solution in SharePoint 2010. I want to do a list item updation using this event receiver.
    Almost all the internet help & examples seems to be written with Farm solution and I got plenty of
    errors in the code(since the code may be written for farm solutions).
    So is it good idea that I am trying to do Sandbox Event Receiver???? Can any one please advice me
    and if sandbox is feasible can anyone help me with a tutorial( How to create a sandbox event receiver for list item updation).
    Somebody please help me soon.

    Dear All,
    hen I run the project, I got this error
    There were deployment errors? do you want to continue. I pressed No button but
    I cannot see any error list below in visual studio 2010!!! I am not able to
    identify where is the error or rectify those error, somebody please help me soon.
    I try to create one event receiver for list updation. I selected Event Receiver template
    while created new project and added following code for debugging, debugger is not hitting!!!
    please note my code below. Am I missing anything?????
    EventReceiver1.cs
    using Microsoft.SharePoint.Security;
    using Microsoft.SharePoint.Utilities;
    using Microsoft.SharePoint.Workflow;
    namespace NewProjEventReceiver.EventReceiver1
        /// <summary>
        /// List Item Events
        /// </summary>
        public class EventReceiver1 : SPItemEventReceiver
            static void Main(string[] args)
           /// <summary>
           /// An item is being added.
           /// </summary>
           public override void ItemAdding(SPItemEventProperties properties)
               base.ItemAdding(properties);
           /// <summary>
           /// An item is being updated
           /// </summary>
           public override void ItemUpdating(SPItemEventProperties properties)
               base.ItemUpdating(properties);
               SPListItem CurrentItem = properties.ListItem;
               String strCustomer = CurrentItem["SampleList"].ToString();
               int startPos = 0;
               int endPos = CurrentItem["SampleList"].ToString().IndexOf(";#");
               int Cust_ID = Convert.ToInt32(strCustomer.Substring(startPos, endPos));
               SPWeb oWeb = properties.Web;
               SPList oList = oWeb.Lists["SampleList"];
               SPListItem Customers = oList.GetItemById(First_ID);
               CurrentItem["Title"] = "One Time";
               oWeb.AllowUnsafeUpdates = true;
               oWeb.Update();
               oWeb.AllowUnsafeUpdates = false;

  • Reporting Services Error activating ReportingWebService.svc in SharePoint 2013

    I get below error when i tried accessing System Settings after creating Reporting Services Service Application in SharePoint 2013, looked in to many blogs but didn't find any fix
    tried https://social.msdn.microsoft.com/forums/sqlserver/en-US/c2066c96-d8d0-46b5-89ff-abd806b3169d/reportingwebservicesvc-could-not-be-activated
    tried http://sharepointconnoisseur.blogspot.com/2014/07/how-to-resolve-requested-service-http.html
    and also tried http://sharepoint.stackexchange.com/questions/80118/sharepoint-2010-reporting-services-integration-set-server-defaults-error
    but nothing worked
    The Error is:
    The requested service, 'http://localhost:32843/99f510a2628e4f24a5dbde00a57f0cbb/ReportingWebService.svc' could not be activated. See the server's diagnostic trace logs for more information.
    Error Log:
    Application error when access /_admin/ReportServer/ReportingServicesSystemSettings.aspx, Error=The requested service, 'http://localhost:32843/9a9f58cdb5b34551921277056e5ebc82/ReportingWebService.svc' could not be activated. See the server's diagnostic trace
    logs for more information.  Server stack trace:     
     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory`1 factory, WebException responseException, ChannelBinding channelBinding)    
     at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)    
     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)    
     at System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.Request(Message message, TimeSpan timeout)    
     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)    
     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)    
     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown
     at [0]:     
     at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)    
     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)    
     at Microsoft.ReportingServices.ServiceContract.IReportServiceManagement.GetSystemProperties(ICollection`1 properties)    
     at Microsoft.ReportingServices.SharePoint.SharedService.ProxyHelper.<>c__DisplayClass9.<GetSystemProperties>b__8(IReportServiceManagement mchannel)    
     at Microsoft.ReportingServices.SharePoint.SharedService.ProxyHelper.DoManagementChannelCall(Action`1 caller)    
     at Microsoft.ReportingServices.SharePoint.SharedService.UI.ReportingServicesSystemSettings.get_SystemProperties()    
     at Microsoft.ReportingServices.SharePoint.SharedService.UI.ReportingServicesSystemSettings.LoadSettings()    
     at Microsoft.ReportingServices.SharePoint.SharedService.UI.ReportingServicesSystemSettings.OnInit(EventArgs e)    
     at System.Web.UI.Control.InitRecursive(Control namingContainer)    
     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    System.ServiceModel.ServiceActivationException: The requested service, 'http://localhost:32843/9a9f58cdb5b34551921277056e5ebc82/ReportingWebService.svc' could not be activated. See the server's diagnostic trace logs for more information.   Server stack
    trace:     
     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory`1 factory, WebException responseException, ChannelBinding channelBinding)    
     at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)    
     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)    
     at System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.Request(Message message, TimeSpan timeout)    
     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)    
     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)    
     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown
     at [0]:     
     at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)    
     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)    
     at Microsoft.ReportingServices.ServiceContract.IReportServiceManagement.GetSystemProperties(ICollection`1 properties)    
     at Microsoft.ReportingServices.SharePoint.SharedService.ProxyHelper.<>c__DisplayClass9.<GetSystemProperties>b__8(IReportServiceManagement mchannel)    
     at Microsoft.ReportingServices.SharePoint.SharedService.ProxyHelper.DoManagementChannelCall(Action`1 caller)    
     at Microsoft.ReportingServices.SharePoint.SharedService.UI.ReportingServicesSystemSettings.get_SystemProperties()    
     at Microsoft.ReportingServices.SharePoint.SharedService.UI.ReportingServicesSystemSettings.LoadSettings()    
     at Microsoft.ReportingServices.SharePoint.SharedService.UI.ReportingServicesSystemSettings.OnInit(EventArgs e)    
     at System.Web.UI.Control.InitRecursive(Control namingContainer)    
     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.ServiceModel.ServiceActivationException: The requested service, 'http://localhost:32843/9a9f58cdb5b34551921277056e5ebc82/ReportingWebService.svc'
    could not be activated. See the server's diagnostic trace logs for more information.    Server stack trace:     
     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory`1 factory, WebException responseException, ChannelBinding channelBinding)    
     at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)    
     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)    
     at System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.Request(Message message, TimeSpan timeout)    
     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)    
     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)    
     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown
     at [0]:     
     at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)    
     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)    
     at Microsoft.ReportingServices.ServiceContract.IReportServiceManagement.GetSystemProperties(ICollection`1 properties)    
     at Microsoft.ReportingServices.SharePoint.SharedService.ProxyHelper.<>c__DisplayClass9.<GetSystemProperties>b__8(IReportServiceManagement mchannel)    
     at Microsoft.ReportingServices.SharePoint.SharedService.ProxyHelper.DoManagementChannelCall(Action`1 caller)    
     at Microsoft.ReportingServices.SharePoint.SharedService.UI.ReportingServicesSystemSettings.get_SystemProperties()    
     at Microsoft.ReportingServices.SharePoint.SharedService.UI.ReportingServicesSystemSettings.LoadSettings()    
     at Microsoft.ReportingServices.SharePoint.SharedService.UI.ReportingServicesSystemSettings.OnInit(EventArgs e)    
     at System.Web.UI.Control.InitRecursive(Control namingContainer)    
     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
     at System.Web.UI.Page.HandleError(Exception e)    
     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
     at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
     at System.Web.UI.Page.ProcessRequest()    
     at System.Web.UI.Page.ProcessRequest(HttpContext context)    
     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

    Hi MOSSDeveloper1,
    Below is our suggestions:
    1, try to open the URL in the Browser directly, then to see what happen. Maybe you can do the next action plan based on the error message in the Browser.
    http://localhost:32843/99f510a2628e4f24a5dbde00a57f0cbb/ReportingWebService.svc
    2,Try to get the application pool id based on the  Reporting Web Service  id "99f510a2628e4f24a5dbde00a57f0cbb"
    Locate The Web Service in the sharepoint Web services in IIS, then click the advanced setting, you would see the application pool id;
    Then Browse  IIS manager "Application Pool", select the pool with the ID , restart it.
    3,If the above two didn't helpful. tried to reboot the server or the steps below.
    Update the web.config in the service host IIS web site and add the following. Set minFreeMemoryPercentageToActivateService to a lower percentage.
    <configuration>
    < system.serviceModel>
    < serviceHostingEnvironment multipleSiteBindingsEnabled=”true” minFreeMemoryPercentageToActivateService=”1″/>
    < /system.serviceModel>
    < /configuration>

  • Which one is your preferred workflow solution for SharePoint 2013

    Which workflow solution will you prefer for SharePoint 2013.
    1) SharePoint 2013 Designer Workflows
    2) Custom Workflows using Visual Studio7
    3) OOB Workflows2
    4) Nintex 2013 Workflows21
    5) K2 Workflows for SharePoint
    I need your opinion on above choices.
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer :)

    Check below:
    http://sangameh-sp2013.blogspot.in/2013/02/state-machine-workflow-in-sharepoint.html
    http://www.concurrency.com/blog/workflow-changes-in-sharepoint-designer-2013/

  • How to create a Real Time Interactive Business Intelligence Solution in SharePoint 2013

    Hi Experts,
    I was recently given the below requirements to architect/implement a business intelligence solution that deals with instant/real data modifications in data sources. After going through many articles, e-books, expert blogs, I am still unable to piece the
    right information to design an effective solution to my problem. Also, client is ready to invest in the best 
    infrastructure in order to achieve all the below requirements but yet it seems like a sword of Damocles that hangs around my neck in every direction I go.
    Requirements
    1) Reports must be created against many-to-many table relationships and against multiple data sources(SP Lists, SQL Server Custom Databases, External Databases).
    2) The Report and Dashboard pages should refresh/reflect with real time data immediately as and when changes are made to the data sources.
    3) The Reports should be cross-browser compatible(must work in google chrome, safari, firefox and IE), cross-platform(MAC, Android, Linux, Windows) and cross-device compatible(Tabs, Laptops &
    Mobiles).
    4) Client is Branding/UI conscious and wants the reports to look animated and pixel perfect similar to what's possible to create today in Excel 2013.
    5) The reports must be interactive, parameterized, slice able, must load fast and have the ability to drill down or expand.
    6) Client wants to leverage the Web Content Management, Document Management, Workflow abilities & other features of SharePoint with key focus being on the reporting solution.
    7) Client wants the reports to be scalable, durable, secure and other standard needs.
    Is SharePoint 2013 Business Intelligence a good candidate? I see the below limitations with the Product to achieve all the above requirements.
    a) Cannot use Power Pivot with Excel deployed to SharePoint as the minimum granularity of refresh schedule is Daily. This violates Requirement 1.
    b) Excel Services, Performance Point or Power View works as in-memory representation mode. This violates Requirement 1 and 2.
    b) SSRS does not render the reports as stated above in requirement 3 and 4. The report rendering on the page is very slow for sample data itself. This violates Requirement 6 and 7.
    Has someone been able to achieve all of the above requirements using SharePoint 2013 platform or any other platform. Please let me know the best possible solution. If possible, redirect me to whitepapers, articles, material that will help me design a effective
    solution. Eagerly looking forward to hear from you experts!.
    Please feel free to write in case you have any comments/clarifications.
    Thanks, 
    Bhargav

    Hi Experts,
    Request your valuable inputs and support on achieving the above requirements.
    Looking forward for your responses.
    Thanks,
    Bhargav

  • Query on InfoPath based solution for SharePoint 2013 O365

    We are working on a Lotus Notes to SharePoint 2013 – O365 migration project. In that we have bunch of applications with list forms that requires UI customization using InfoPath to show the large number of columns in a tabular format / various sections /
    simple rule validations / cascaded lookups.
    Since the InfoPath form based solution are not supported on the next version of O365, we would like to know what is the Microsoft preferred alternative practice for such cases.
    Vijayaragavan, MCTS

    you can use access 
    read the following articles to give you an idea
    http://zimmergren.net/business/the-future-of-forms-with-sharepoint-and-office-365
    http://blogs.office.com/2014/01/31/update-on-infopath-and-sharepoint-forms/
    http://technet.microsoft.com/en-us/library/sharepoint-online-service-description.aspx
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

  • Activate Sandbox solution in SharePoint 2010

    Hello guys,
    I would like to activate the sandbox solution or even to use code in the whole farm. I have a InfoPath Formular with code, but SharePoint doesn't allow me to publish this form.
    How can I do this?
    Best regards
    Matthias

    Hi,
    If you have custom coded InfoPath form which requires full trust, then you have to upload and activate the same in the central administration.
    Refer these links,
    http://technet.microsoft.com/en-us/library/cc262921(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/ms772110(v=office.14).aspx

Maybe you are looking for

  • Time Machine won't back up anymore

    I recently upgraded my Macbook Pro (early 2008) with a bigger hard drive. I used my Time Machine to restore my computer. Since then when ever I try to back up my computer it doesn't do anything. It just sits there saying it is working on the back up

  • My Nokia Lumia 928 sound

    My phones audio/sound has completely stopped working. No ringer, no music, no sound what so ever. Does anyone know why and how to fix it?

  • Coldfusion certificate issue

    I have a working site and I am in the process of creating a backup site. My backup site domain anem is backupcompany.com where as I bought the SSL for company.com. The coldfusion works fine for couple of screens but it does not work for CFGRID, when

  • How to suppress the initial Account-Wizzard

    I am trying to create a new account, but without going through all the annoying check procedures in the wizard. I am not sure, but I tried the same with Tiger-Mail successfully (pressing alt or shift, can't remeber which key it was). Does anybody kno

  • Error while previewing webi reports

    Hi experts, We are getting u201CNot a valid logon token. (FWB 00003)u201D error from our XI 3.1 Infoview only if we try to view any webi report from our production environment. What can be possible cause behind getting this error message? Thanks in a