Re: [twsocket] THttpCli and XML...

2016-03-08 Thread Angus Robertson - Magenta Systems Ltd
> >François has written a Universal Plug and Play component > > Yeah I tried it first and the device does not respond. It needs a > "discover" verb to respond. Windows uses "All", IIRC. Typical Microsoft, half baked APIs. Probably explains why it does not find all my devices, although I do tend

Re: [twsocket] THttpCli and XML...

2016-03-08 Thread Angus Robertson - Magenta Systems Ltd
> > and I conclude that is doesn't [fully] support HTTP. > > I concur. It is a hybrid. It requires all the formatting of HTTP > ("Gets" to the device via THttpCli work without error) and XML > but, does not fully implement all the requirements. In which most of the capabilities of THttpCli are

Re: [twsocket] THttpCli and XML...

2016-03-07 Thread François Piette
> I switched to a TWSocket and sent the complete post URL, parameters and XML data in one send > and the server responded without error. So, the header data the THttpCli component was adding > to the XML document was not allowed by the server. Only the XML data. This makes me thinking your server

Re: [twsocket] THttpCli and XML...

2016-03-06 Thread RTT
It would be interesting to know what header(s) in particular is/are causing the problem. You may use the OnBeforeHeaderSend event to remove any of the headers, before the headers are sent. Or just temporary comment the code related to each of the header lines being sent, under the OverbyteIcsH

Re: [twsocket] THttpCli and XML...

2016-03-06 Thread zayin
Hi, I switched to a TWSocket and sent the complete post URL, parameters and XML data in one send and the server responded without error. So, the header data the THttpCli component was adding to the XML document was not allowed by the server. Only the XML data. Joy! Thanks for your time, Mark

Re: [twsocket] THttpCli and XML...

2016-03-06 Thread Jarek Karciarz
I use ContentTypePost = application/x-www-form-urlencoded I don't use XML however. Jarek Karciarz -Original Message- From: TWSocket [mailto:twsocket-boun...@lists.elists.org] On Behalf Of RTT Sent: Sunday, March 6, 2016 9:12 PM To: ICS support mailing Subject: Re: [twsocket] THt

Re: [twsocket] THttpCli and XML...

2016-03-06 Thread RTT
I must be doing something wrong. Are you setting the THttpCli.ContentTypePost property to the Content-Type (in your case "application/xml", I suppose) the server is expecting ? http://stackoverflow.com/questions/3272534/what-content-type-value-should-i-send-for-my-xml-sitemap -- To unsubs

Re: [twsocket] THttpCli and XML...

2016-03-06 Thread Jarek Karciarz
Hi, Can you show your code please? I am using code like this: void __fastcall TSocketClientModule::HttpPost(UnicodeString sUrl, UnicodeString sData, int iTimeout, int iPort) { HttpClient->URL=sUrl; HttpClient->Timeout=iTimeout; HttpClient->SocksPort=iPort; OutData=