not add domain!
Your queue job CreateWssSite failed: Microsoft Project Online - Integent
Call Us Today! 1.800.895.3254
sales@integent.com
Consulting & Advisory
Consulting / Advisory helps business and IT leaders make better decisions and turn strategy into execution-ready initiatives. Most engagements start with a Discovery Initiative to confirm outcomes, and build a roadmap.
Learn About Consulting
Data & AI
Data & AI delivers modern data platforms, analytics, and practical AI assistants built on enterprise-grade cloud tools. Integent helps you govern, deploy, and drive adoption so solutions stick and scale across your organization.
Learn About Data & AI
Support
Support keeps your solution stable, secure, and aligned with day-to-day operations. We combine functional and technical expertise with proactive monitoring, preventive maintenance, and 24/7 coverage for critical incidents.
Learn About Support
Microsoft Planner Premium
Leverage proven knowledge and experience to design and deploy Microsoft Planner Premium so your organization can manage projects, work, and resources more effectively across teams.
Learn More About Planner Premium
OnePlan
Integent can help you ensure continuity beyond Project Online by deploying OnePlan in the Microsoft Cloud—connecting portfolio governance, resources, and delivery execution for results.
Learn More About OnePlan
Microsoft Dynamics 365
Ensure business continuity with a custom cloud solution that connects your sales, service, finance, and operations teams to deliver measurable, predictable results.

Learn More About Dynamics 365
Microsoft Power Platform
Consisting of Power BI, Power Apps, Power Automate and Copilot Studio, the Microsoft Power Platform helps streamline and improve business functions.

Learn More About Power Platform
About Integent
Integent was founded in 2009 on the principles of building long-lasting relationships with customers, exceeding expectations, and providing outstanding customer service. 

We’re dedicated to providing a customized solution backed by our knowledgeable team of Microsoft experts.
Discover What Makes Us Different
News
Stay informed on Integent’s latest company updates and other important industry information. Our passion is customer success.
Read The Latest News
Videos
Learning new software doesn’t have to be difficult with our library of dozens of free training videos. Our video training always has something new.
Browse Our Training Video Library
Blog
Our industry experts share best practices and common pitfalls to avoid, in order to get the most out of your technology solutions.
Discover More

November 23, 2016

Your queue job CreateWssSite failed: Microsoft Project Online

Upon publishing a project we were receiving an error in the queue with the title “Your queue job CreateWssSite failed. Please contact your administrator for assistance.”

Embedded in the long error was the following:

<?xml version="1.0" encoding="utf-16"?> <errinfo> <general> <class name="CreateWssSiteContent: Creating project site failed! Project Uid=257b0719-f5af-e611-80d0-00155db03b1b, site URL=https://availtec.sharepoint.com/sites/pwa/HDPT - 2016 ITS Upgrade, site name=HDPT - 2016 ITS Upgrade. Microsoft.SharePoint.SPException: The site template requires that the Feature {e995e28b-9ba8-4668-9933-cf5c146d7a9f} be activated in the site collection. at Microsoft.SharePoint.Utilities.SPUtility.ThrowSPExceptionWithTraceTag(UInt32 tagId, ULSCat traceCategory, String resourceId, Object[] resourceArgs) at Microsoft.SharePoint.SPWebTemplateElement.VerifyFeatures

The site creation process was expecting a specific site feature to be activated, which was not.  In this case the feature was the MobileExcelWebAccess feature.  When we went to Connected SharePoint Sites and tried to manually create the site we received a more specific error:

clip_image002

In doing more research we found this was an issue with a deprecated feature in Microsoft Project Online.  In order to resolve the issue we need to run a PowerShell script.  The procedure is below:

Script:

function Enable-SPOFeature

{

param ($sSiteColUrl,$sUserName,$sPassword,$sFeatureGuid)

try

{

#Adding the Client OM Assemblies

Add-Type -Path "C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions16ISAPIMicrosoft.SharePoint.Client.dll"

Add-Type -Path "C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions16ISAPIMicrosoft.SharePoint.Client.Runtime.dll"

#SPO Client Object Model Context

$spoCtx = New-Object Microsoft.SharePoint.Client.ClientContext($sSiteColUrl)

$spoCredentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($sUsername, $sPassword)

$spoCtx.Credentials = $spoCredentials

Write-Host "----------------------------------------------------------------------------" -foregroundcolor Green

Write-Host "Enabling the Feature with GUID $sFeatureGuid !!" -ForegroundColor Green

Write-Host "----------------------------------------------------------------------------" -foregroundcolor Green

$guiFeatureGuid = [System.Guid] $sFeatureGuid

$spoSite=$spoCtx.site

$spoSite.Features.Add($sFeatureGuid, $true, [Microsoft.SharePoint.Client.FeatureDefinitionScope]::None)

$spoCtx.ExecuteQuery()

$spoCtx.Dispose()

}

catch [System.Exception]

{

write-host -f red $_.Exception.ToString()

}

}

#Required Parameters

  1. $sSiteColUrl = "https://sitecollectionurl.com/sites/<pwaUrl>"
  2. $sUserName = "yourloginID"
  3. $sFeatureGuid= "e995e28b-9ba8-4668-9933-cf5c146d7a9f"
  4. $sPassword = Read-Host -Prompt "Enter your password: " -AsSecureString
  5. Enable-SPOFeature -sSiteColUrl $sSiteColUrl -sUserName $sUserName -sPassword $sPassword -sFeatureGuid $sFeatureGuid

Use the steps

below if you’ve not used O365 administration and Powershell

  1. download and install SP Online Management Shell (https://www.microsoft.com/en-us/download/confirmation.aspx?id=42038)
  2. Run the Management Shall as administrator
  3. Copy and paste the entire function (from word function through last “}” and paste into Management shell window and press enter
  4. Copy item 1 from required parameters. Edit the URL to match your PWA url.  Paste into the Shell window and press enter
  5. Copy item 2 from the required parameters.  If needed, revise the guid to match the one from your error message.  Paste into the Shell window and press enter.
  6. Copy Item 3 from the required parameters.  Edit the login, paste into the Shell window and press enter
  7. Copy item 4 from the required parameters.  Paste into the Shell window, press enter.  Enter the password and press enter
  8. Copy item 5 from the required parameters.  Paste into the Shell window and press enter.  This will call the function using the info entered.  If it works successfully you will receive no message

XML DTD ERROR

If you receive an error related to XML DTD, it may be related to your ISP.  If using verizon, you may need to temporarily change your DNS servers to 8.8.8.8 and 8.8.4.4 

In our case we were using Verizon and DID receive the error.  Once we changed the DNS servers the command worked successfully, as did the template!

© Copyright 2026 | Integent.com | All Rights Reserved
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram