Thank you Bruce, it work's like a charm.
In my case I use now:
mycstring= '<?xml version="1.0" encoding="UTF-8"?>' & crlf & |
'<methodCall>' & crlf & |
'<methodName>DisplayStudy</methodName>' & crlf & |
'<params>' & crlf & |
....
'</params>' & crlf & |
'</methodCall>'
sender.SetAllHeadersDefault()
sender.HeaderOnly = 0
sender.Cookie = 'Cookie'
sender.Referer = 'Referer'
sender.ContentType = 'application/xml'
sender.AcceptEncoding = ''
sender.Pragma_ = 'no-cache'
sender.Post( 'http://'& clip( theURLandPort), mycstring)
Sender is a NetWebClient object, crlf='<13,10>'. Maybe I can drop the crlf.. but it works and not for 20 Bytes or so ;-) there's no chance to play..
Ciao, Thomas