XSD is being used when they compile the binary. You won't find it.
Yours is definitely different compared to what I have, this is in my ManagedSharePoint2007_ns.xml, btw, changing the XML won't help much at this point. If you want, you will have to change the namespace itself but the fact that this is different, See, I
do not have 'site' and hhURL, which are not part of the accepted elements.
I think you should investigate at the installation source that you used, something ain't right here, make sure it is 4.5.228 as in the following download link. Check your msi files, make sure the date modified is something like 6/10/2008.
kiphup
Member
328 Points
129 Posts
Re: HMC 4.5 - Sharepoint Site Creation Problem - SetQuota
Dec 30, 2008 09:58 PM|LINK
Hi Mark,
XSD is being used when they compile the binary. You won't find it.
Yours is definitely different compared to what I have, this is in my ManagedSharePoint2007_ns.xml, btw, changing the XML won't help much at this point. If you want, you will have to change the namespace itself but the fact that this is different, See, I do not have 'site' and hhURL, which are not part of the accepted elements.
I think you should investigate at the installation source that you used, something ain't right here, make sure it is 4.5.228 as in the following download link. Check your msi files, make sure the date modified is something like 6/10/2008.
http://www.microsoft.com/downloads/details.aspx?FamilyId=C9CBBC69-4AE4-450D-AF5E-F49E7C701CF4&displaylang=en
<procedure name="CreateSite_" type="write" access="private" description="Create a SharePoint site collection.">
<!--
.............................................................................
Procedure: CreateCustomerSite
Description: Create a SharePoint site for a specified customer.
.............................................................................
-->
<procedureData/>
<!--
***************************************************************************
CREATE SHAREPOINT SITE
***************************************************************************
-->
<execute namespace="SharePoint2007Provider" procedure="CreateSite" impersonate="1">
<!--target-->
<before source="data" sourcePath="target" destination="executeData" />
<!--site-->
<before source="data" sourcePath="site" destination="executeData" />
<!--title-->
<before source="data" sourcePath="title" destination="executeData" />
<!--ownerLogin-->
<before source="data" sourcePath="ownerLogin" destination="executeData" />
<!--ownerName-->
<before source="data" sourcePath="ownerName" destination="executeData" />
<!--ownerEmail-->
<before source="data" sourcePath="ownerEmail" destination="executeData" />
<!--description-->
<before source="data" sourcePath="description" destination="executeData" />
<!--LCID-->
<before source="data" sourcePath="lcid" destination="executeData" />
<!--webTamplate-->
<before source="data" sourcePath="webTemplate" destination="executeData" />
<!-- org -->
<before source="data" sourcePath="org" destination="executeData" ifNull="ignore"/>
<!-- host header-->
<before source="data" sourcePath="hhUrl" destination="executeData" ifNull="ignore" />
<!-- siteGUID-->
<after source="executeData" sourcePath="siteGUID" destination="data" ifNull="ignore" />
<!-- subSiteGUID-->
<after source="executeData" sourcePath="subSiteGUID" destination="data" ifNull="ignore" />
</execute>
<!-- set the SiteQuota if specified -->
<execute namespace="SharePoint2007Provider" procedure="SetSiteQuota" impersonate="1">
<!--target-->
<before source="data" sourcePath="target" destination="executeData" />
<!--siteGUID-->
<before source="data" sourcePath="siteGUID" destination="executeData" />
<!--warningLevel-->
<before source="data" sourcePath="quota/warningLevel" destination="executeData" mode="insert"/>
<before source="data" sourcePath="quota/maxDBSize" destination="executeData" mode="insert" />
</execute>
</procedure>