Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

5
  • This is the response that i get when i try to insert a registry that already exists (Consumed by SOAPUI):<S:Envelope xmlns:S="schemas.xmlsoap.org/soap/envelope"> <S:Body> <ns2:saveCasoPeoplesoftCMRPSResponse xmlns:ns2="crm.wsprovider.service.cnsv.cl"> <return><![CDATA[<docCasoPeoplesoftCrm> <codigoError>131</codigoError> <mensajeError>Ya existe este registro</mensajeError> </docCasoPeoplesoftCrm>]]></return> </ns2:saveCasoPeoplesoftCMRPSResponse> </S:Body> </S:Envelope> Commented Dec 11, 2013 at 13:50
  • Looking at the error you posted, the Parser was expecting S="http://schemas.xmlsoap.org/soap/envelope/" and you actually have S="schemas.xmlsoap.org/soap/envelope/. I think the error/solution lies in setting this correctly. Are you using WebServiceCallout.invoke to perform your SOAP callout? Commented Dec 11, 2013 at 18:57
  • You mean that the parameter (String) i'm passing is no accurate? This is the the Invoke i'm using WebServiceCallout.invoke( this, request_x, response_map_x, new String[]{endpoint_x, '', 'crm.wsprovider.service.cnsv.cl', 'confirmacionCierreCasoCelaPS', 'crm.wsprovider.service.cnsv.cl', 'confirmacionCierreCasoCelaPSResponse', 'crmWsproviderServiceCnsvCl.confirmacionCierreCasoCelaPSResponse'} ); Commented Dec 12, 2013 at 13:12
  • it was a hypothesis. hmm did you whitelist your endpoint? (Setup -> Security Controls -> Remote Site Settings) Commented Dec 12, 2013 at 16:03
  • Yes, i have whitelisted -consorciotransaccional.cl Commented Dec 12, 2013 at 20:37