soap - SoapUI, xml namespaces & SAP B1 -
i have 2 parts of question. first 1 xml standard, second 1 workaround soapui. have wsdl scheme sap b1 di server (it not matter. mean third party soap service). have soap request, generated soapui
<soapenv:envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dis="http://www.sap.com/sbo/dis" xmlns:bus="businesspartnersservice"> <soapenv:header> <dis:msgheader> <dis:sessionid>?</dis:sessionid> <dis:servicename>businesspartnersservice</dis:servicename> </dis:msgheader> </soapenv:header> <soapenv:body> <bus:add> <dis:businesspartner> <dis:cardcode>?</dis:cardcode> ... ...
my question line
<dis:cardcode>?</dis:cardcode>
in form not work (di server returns error). working line is
<cardcode>?</cardcode>
i.e. without namespace specification. first question: match xml standard?
and second question: how can tell soapui skip namespace?
Comments
Post a Comment