Articles about European Sharepoint Hosting Service
Posts tagged moss 2010 europe hosting

Europe SharePoint 2010 Hosting :: Error when Creating Search Service Application in SharePoint 2010
Aug 31st
This is the error message that people sometimes get:
You can see it on that link, so we can illustrate this issue.
This is the steps to solve the problem:
1. got to regedit in sharePoint servers (Search Server) then go to this path
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\14.0\WSS\Services\
and remove the following:
2. And then go to this path and remove this:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\14.0\WSS\ServiceProxies\
Hope it helps
European SharePoint Server 2010 Hosting :: Using Word Automation Services in SharePoint 2010
Aug 18th
The Word Automation Service is a shared service application that will convert word documents (doc & docx formats) to PDF, RTF, DOCX formats. The conversion job runs asynchronously using the SharePoint timer. The process can be configured through central administration at Application Management\Managed Service Applications\Word Automation Services, to do more or less work depending on load your servers are under.
What’s nice is that the conversion jobs can be initiated through code very easily. The following example will create a job to convert all word documents in “Shared Documents” to PDFs. Note for this to work add a reference to Microsoft.Office.Word.Server (C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\ISAPI\Microsoft.Office.Word.Server.dll):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
static void Main(string[] args) { using (var site = new SPSite("http://athena")) { SPList listToConvert = site.RootWeb.Lists["Shared Documents"]; ConversionJob job = new ConversionJob("Word Automation Services"); job.UserToken = site.UserToken; job.Settings.UpdateFields = true; job.Settings.OutputFormat = SaveFormat.PDF; job.Settings.OutputSaveBehavior = SaveBehavior.AlwaysOverwrite; job.AddLibrary(listToConvert, listToConvert); job.Start(); } } |
This code can be used to do a document library wide conversion, or to target individual documents for conversion, say for example an event receiver that automatically generates a read-only version of a document when it is uploaded to a library.
Hope this helps.

European SharePoint Server 2010 Host :: Problem Configuring State Service in SharePoint 2010
Aug 11th
Problem:
After you install SharePoint Server 2010 you may see the following warning in the Health Analyzer Reports.
InfoPath Forms Services forms cannot be filled out in a Web browser because no State Service connection is configured.
If you have configured a workflow form, you may see the following error.
The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State Service. For more information, contact your server administrator.
Configure the State Service. The State Service is automatically configured as part of the Basic installation of SharePoint Server 2010. However, the Advanced installation of SharePoint Server 2010 requires separate configuration of the State Service. You can use one of the following two methods to configure the service.
- Farm Configuration Wizard (I don’t recommend using this wizard after installing SharePoint).
- PowerShell (this is my preferred method).
The default configuration for the State Service is sufficient for most configurations and you only need additional configuration if your server farm has a very large number of InfoPath active state sessions for forms or charts, or you may need additional configuration in hosted environments.
The default configuration includes the following.
- One State Service service application.
- One State Service database on the same database server that contains the configuration database. The databases must be associated with the service application.
- One State Service application proxy associated with the default proxy group of the server farm.
As I mentioned earlier, I prefer using the PowerShell to configure the State Service. By the way, you can also use PowerShell to perform configuration tasks that are not available on the Central Administration site of the farm.
Use PowerShell to Configure the State Service
Here are the steps to configure the service using PowerShell.
- Verify that you meet the minimum requirements. See Add-SPShellAdmin for more details. Essentially, you need to add the logged in user account to the SharePoint_Shell_Access role in the target database using the following syntax.
Add-SPShellAdmin [-UserName]
If you are already logged in as a user that has the securityadmin and dbowner role in SQL Server and is a member of the WSS_Admin_WPG user group then you can skip this step. - On the Start menu, click All Programs.
- Click Microsoft SharePoint 2010 Products.
- Click SharePoint 2010 Management Shell.
- To create a service application, type the following command:
$serviceApp = New-SPStateServiceApplication -Name “<StateServiceName>“
For example, $serviceApp = New-SPStateServiceApplication -Name “Intranet Farm State Service“ - After the service application is created, you need to create a State Service database and associate it with a service application.
New-SPStateServiceDatabase -Name “ <StateServiceDatabase>” -ServiceApplication $serviceApp
For example, New-SPStateServiceDatabase -Name “StateServiceDB” -ServiceApplication $serviceApp - To create a State Service application proxy, associate it with the service application, add it to the farm’s default proxy group, type the following command.
New-SPStateServiceApplicationProxy -Name “<ApplicationProxyName>” -ServiceApplication $serviceApp -DefaultProxyGroup
For example, New-SPStateServiceApplicationProxy -Name “Intranet Application Proxy” -ServiceApplication $serviceApp -DefaultProxyGroup - Here’s what the summary of the commands might look like. The commands in the red are the one you would type, the output is shown in blue.
- As soon as you run the above command to finish configuring the State Service, re-analyze the rule (listed in the problem section above) in the Health Analyzer Reports.
- Click the rule and then click Reanalyze Now.
- Refresh the screen. The warning message should disappear in the Health Analyzer Reports.