Estou com o seguinte erro tentando realizar um cadastro de um sku no Web Service e estou recebendo o seguinte erro "Não foi possível salvar o Produto.
O campo Product.Name é obrigatório!"
Alguém pode me ajudar, por favor?
XML de envio:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
<SOAP-ENV:Header>
<tem:Action>http://tempuri.org/IService/StockKeepingUnitInsertUpdate</tem:Action>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<tem:StockKeepingUnitInsertUpdate>
<tem:stockKeepingUnitVO>
<tem:CubicWeight>0</tem:CubicWeight>
<tem:Height>1</tem:Height>
<tem:Id>18485</tem:Id>
<tem:IsActive>true</tem:IsActive>
<tem:IsAvailable>true</tem:IsAvailable>
<tem:IsKit>false</tem:IsKit>
<tem:Length>2</tem:Length>
<tem:Name>CALCA MASCULINO INFANTIL TESTE INTEGRACAO BRANCO U</tem:Name>
<tem:RefId>ABC124</tem:RefId>
<tem:ProductId>18440</tem:ProductId>
<tem:ModalId>1</tem:ModalId>
<tem:CostPrice>0</tem:CostPrice>
<tem:Price>0.5</tem:Price>
<tem:ListPrice>0.5</tem:ListPrice>
<tem:WeightKg>0</tem:WeightKg>
<tem:Width>2</tem:Width>
</tem:stockKeepingUnitVO>
</tem:StockKeepingUnitInsertUpdate>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
XML Recebimento:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<s:Fault>
<faultcode xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher">a:InternalServiceFault</faultcode>
<faultstring xml:lang="pt-BR">Não foi possível salvar o Produto.
O campo Product.Name é obrigatório!</faultstring>
<detail>
<ExceptionDetail xmlns="http://schemas.datacontract.org/2004/07/System.ServiceModel" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<HelpLink i:nil="true"/>
<InnerException i:nil="true"/>
<Message>Não foi possível salvar o Produto.
O campo Product.Name é obrigatório!</Message>
<StackTrace>at Vtex.Commerce.WebApps.AdminWcfService.Service.StockKeepingUnitInsert(StockKeepingUnitDTO stockKeepingUnitDTO) in D:\BuildAgent\work\67af720f163d9625\src\Web Applications\Vtex.Commerce.WebApps.AdminWcfService\Service.svc.cs:line 471
at Vtex.Commerce.WebApps.AdminWcfService.Service.StockKeepingUnitInsertUpdate(StockKeepingUnitDTO skuDTO) in D:\BuildAgent\work\67af720f163d9625\src\Web Applications\Vtex.Commerce.WebApps.AdminWcfService\Service.svc.cs:line 723
at SyncInvokeStockKeepingUnitInsertUpdate(Object , Object[] , Object[] )
at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs)
at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc)
at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc)
at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage11(MessageRpc& rpc)
at System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet)</StackTrace>
<Type>System.Exception</Type>
</ExceptionDetail>
</detail>
</s:Fault>
</s:Body>
</s:Envelope>
XML ProductId:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ProductGetResponse xmlns="http://tempuri.org/">
<ProductGetResult xmlns:a="http://schemas.datacontract.org/2004/07/Vtex.Commerce.WebApps.AdminWcfService.Contracts" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<a:AdWordsRemarketingCode i:nil="true"/>
<a:BrandId>2000000</a:BrandId>
<a:CategoryId>28</a:CategoryId>
<a:DepartmentId>10</a:DepartmentId>
<a:Description>CALCA MASCULINO INFANTIL TESTE INTEGRACAO</a:Description>
<a:DescriptionShort>ABC124</a:DescriptionShort>
<a:Id>18440</a:Id>
<a:IsActive>false</a:IsActive>
<a:IsVisible>true</a:IsVisible>
<a:KeyWords>ABC124</a:KeyWords>
<a:LinkId>DescriA§~ao-1-CAA</a:LinkId>
<a:ListStoreId i:nil="true" xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
<a:LomadeeCampaignCode i:nil="true"/>
<a:MetaTagDescription i:nil="true"/>
<a:Name>Descriç~ao 1 CAA</a:Name>
<a:RefId>ABC124CAA</a:RefId>
<a:ReleaseDate i:nil="true"/>
<a:Score i:nil="true"/>
<a:ShowWithoutStock>true</a:ShowWithoutStock>
<a:SupplierId i:nil="true"/>
<a:TaxCode i:nil="true"/>
<a:Title>Descriç~ao 1 CAA</a:Title>
</ProductGetResult>
</ProductGetResponse>
</s:Body>
</s:Envelope>