Re: [twsocket] THttpCli POST issue with v7 Commit 317

2009-04-16 Thread Francois PIETTE
Re-reading your initial message, it looks like you have to simply send AnsiString since this looks like what the receiving program is awaiting. This is what the original BCB5 program was sending if nothing special has been done there. Now with BCB2009, strings are now UnicodeString instead of An

[twsocket] THttpCli POST issue with v7 Commit

2009-04-16 Thread Peter Van Hove
>> Interesting !!! >> So POST and GET data, when sent to a host, are not unicode ? > > They are not sent as UTF-16 Unicode, correct. > >> And so what I provide to the component when I do a GET, in unicode, is >> converted in the component to something else (UTF 8 ?) > > Yes, in V7 a GET request is

Re: [twsocket] ICS SSL PKCS11

2009-04-16 Thread Dod
Hello Arno, Yes, interesting to be able to use SmartCards with X.509 + PIN code for strong authentication. For example every french doctor own a smartcard containing two X.509 certificates, one for signing and one for authentication. Regards. AG> Interesting new feature anyway! If you

Re: [twsocket] THttpCli POST issue with v7 Commit 317

2009-04-16 Thread Francois PIETTE
>>> The Problem: >>> On the receiving end (webpage) the the POST variable doesn't arrive >>> intact. Only the first letter. In this example case only "t" arrives >>> (so "t = test" instead of "test = test" >>> As suggested, the value arrives intact (in this case "test") > >> It's no bug. The compo

Re: [twsocket] ICS SSL PKCS11

2009-04-16 Thread Arno Garrels
Dod wrote: > Hello Arno, > > I already used OpenSSL + PKCS11 engine and also Stunnel successfully, > that's why I want try to do it with using Delphi+ICS to get better > integration than using external Stunnel. Interesting new feature anyway! If you want to implement it in ICS I vote for it

Re: [twsocket] ICS SSL PKCS11

2009-04-16 Thread Dod
Hello Arno, I already used OpenSSL + PKCS11 engine and also Stunnel successfully, that's why I want try to do it with using Delphi+ICS to get better integration than using external Stunnel. regards. AG> Dod wrote: >> Hello, >> >> I am trying ICSv6 SSL for the first time (Delphi 7)

Re: [twsocket] ICS SSL PKCS11

2009-04-16 Thread Arno Garrels
Dod wrote: > Hello, > > I am trying ICSv6 SSL for the first time (Delphi 7), and I am > wondering if it can support PKSC11 engine (authentication using > certificates stored into smartcards protected by a PIN code) ? I think it can be achieved with OpenSSL and a PKCS11 engine, jus

[twsocket] ICS SSL PKCS11

2009-04-16 Thread Dod
Hello, I am trying ICSv6 SSL for the first time (Delphi 7), and I am wondering if it can support PKSC11 engine (authentication using certificates stored into smartcards protected by a PIN code) ? Regards. -- To unsubscribe or change your settings for TWSocket mailing list please

Re: [twsocket] THttpCli POST issue with v7 Commit 317

2009-04-16 Thread Arno Garrels
Arno Garrels wrote: > With POST requests however the send stream is sent as is and the > component user is responsible to format and encode the stream content > properly. Posted data may, for example, contain multple parts all with > a different Charset and Content-Transfer-Encoding part-header. T

Re: [twsocket] THttpCli POST issue with v7 Commit 317

2009-04-16 Thread Arno Garrels
Peter Van Hove wrote: >>> The Problem: >>> On the receiving end (webpage) the the POST variable doesn't arrive >>> intact. Only the first letter. In this example case only "t" >>> arrives (so "t = test" instead of "test = test" >>> As suggested, the value arrives intact (in this case "test") > >>