Code: Select all
Let>XMLfile=C:\XML\testfile.xml
Let>XMLoutputfile=C:\XML\testoutput.xml
Let>curl="c:\Windows\System32\curl.exe"
let>curlheader=-H "Content-Type: text/xml; charset=utf-8" -H "SOAPAction:"
Let>endpoint=https://<myURLendpoint>
Let>CURLcmd="%curl% %curlheader% -d @"%XMLfile%" -X POST %endpoint% -o "%XMLoutputfile%" -s -i"
Run>cmd.exe /c %CURLcmd%
500 HTTP/1.1 500 Internal Server Error
Code: Select all
Let>HTTP_POSTFILES=upload1=C:\XML\testfile.xml
Let>HTTP_CUSTOM_HEADERS=Content-Type: text/xml; charset=utf-8
Let>endpoint=https://<myURLendpoint>
Let>HTTP_SSL=1
HTTPRequest>%Endpoint%,,POST,,HTMLResponse
Let>HTTP_CUSTOM_HEADERS=Content-Type: text/xml; charset=utf-8; SOAPAction:
Furthermore I tried Let>HTTP_SSL=11 and Let>HTTP_SSL=12 without positive effect.