When trying to Export Items over to SAP using the Autodesk Vault Professional 201x Integration for SAP, (RMB on the Item>SAP>Create SAP Material), you see this message.
GetItemProperties() There is an error in the XML document.
In the Vault-SAP Interface Log is the following error.
Error on checkOutDocument() 1003
and
Field 'Title (Item,CO)' not found!
This is caused because of a mismatch between the servers Web.config setting and the clients config setting. To mirror the setting in the server config file, this can be addressed by adding the following line in the "C:\Program Files (x86)\Autodesk\Vault Professional 2011\Explorer\Connectivity.VaultPro.exe.config". maxMimeParts="1024" serverMode="optional" />
Here is an example.
<microsoft.web.services3>
<messaging>
<maxMessageLength value="51200">
</maxMessageLength>
<mtom clientMode="On" maxMimeParts="1024" serverMode="optional" />
</messaging>
<security>
<!-- Specifies the time buffer used by WSE to determine when a SOAP message is valid.
set to the max of 24hr in seconds -->
<timeToleranceInSeconds value="86400"/>
</security>
Subscribe
Comments