[twsocket] How to pass more than 18 variables(TVarRec) to AnswerPage in C++?

2017-01-09 Thread Paul Read
27;ve tried dynamically creating a TVarRec array and passing that to AnswerPage but it crashes. What is the correct manner in CPP to pass many many html variable pairs to AnswerPage please? -- *Paul Read* Partner nSolve Ltd <http://www.nsolve.com/?empr> Tel: +44 (0)1993 402011 Tel

Re: [twsocket] Latest ICS 8.44 and C++Builder 10.2

2017-04-04 Thread Paul Read
verbyte.be -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be -- *Paul Read* Partner nSolve Ltd <http://www.nsolve.com/?empr> Tel: +44 (0)1993 402011 Tel (US):

[twsocket] Latest ICS Rev 1308 and C++Builder 2007

2017-04-10 Thread Paul Read
I've tried the very latest ICS Rev #1308 but still have the issue with the recently added HRESULTS e.g: static const HRESULT TRUST_E_NOSIGNATURE = -2146762496; making the examples unbuildable in C++ Builder 2007 Paul -- To unsubscribe or change your settings for TWSocket mailing list please g

Re: [twsocket] Latest ICS Rev 1308 and C++Builder 2007

2017-04-10 Thread Paul Read
ther major changes are stable. Angus -- *Paul Read* Partner nSolve Ltd <http://www.nsolve.com/?empr> Tel: +44 (0)1993 402011 Tel (US): +1 617 273 2304 nSolve <http://www.nsolve.com/?empr> nCall <http://www.nsolve.com/nCall-overview.shtml?empr> -- To unsubscribe or change your s

Re: [twsocket] Latest ICS Rev 1308 and C++Builder 2007

2017-04-18 Thread Paul Read
OverbyteIcsUtils.pas I replied to the long message containing the patch, but I did not copy the entire long message since it's a waste of everyone's email bandwidth and patience. Anyway, I've just updated SVN with the C++ patch, it will be zipped about 11pm if you prefer the zip. Angus

Re: [twsocket] Latest ICS Rev 1308 and C++Builder 2007

2017-04-18 Thread Paul Read
onSslServerName; Is C++ really case sensitive? Will fix when I submit other pending changes. Angus -- *Paul Read* Partner nSolve Ltd <http://www.nsolve.com/?empr> Tel: +44 (0)1993 402011 Tel (US): +1 617 273 2304 nSolve <http://www.nsolve.com/?empr> nCall <http://www.nsolve.com/nCall-over

[twsocket] Unable to build v8.49 in Borland C++ 2007 CertFree functions not found

2017-09-08 Thread Paul Read
Error: Unresolved external 'CryptUIDlgViewCertificateA' referenced from C:\DEV\CMP\ICS\LIB\DEBUG\WIN32\D2007\OVERBYTEICSMSSSLUTILS.OBJ -- *Paul Read* Partner nSolve Ltd <http://www.nsolve.com/?empr> Tel: +44 (0)1993 402011 Tel (US): +1 617-307-1737 nSolve <http://www.nsolve.com/?e

[twsocket] unable to link design time CB2007 as missing external file 'crypt32'

2018-02-24 Thread Paul Read
have that file (I believe). Last version I built without issue was ICS v8.49 with Borland C++ 2007, currently overbyte.eu seems to be down so can't try any versions between Any suggestions? Paul Read -- To unsubscribe or change your settings for TWSocket mailing list please goto http://l

Re: [twsocket] unable to link design time CB2007 as missing external file 'crypt32'

2018-02-24 Thread Paul Read
iginal Message- From: TWSocket [mailto:twsocket-boun...@lists.elists.org] On Behalf Of Paul Read Sent: Saturday, February 24, 2018 12:31 PM To: twsocket@lists.elists.org Subject: [twsocket] unable to link design time CB2007 as missing external file 'crypt32' Numerous linker messages like this

Re: [twsocket] unable to link design time CB2007 as missing external file 'crypt32'

2018-02-24 Thread Paul Read
correction needed to add both: #pragma link "crypt32.lib" #pragma link "cryptui.lib" Paul On 24/02/2018 14:00, Paul Read wrote: Thanks Richard & Jarek I added #pragma link "crypt32.lib" to \Packages\OverbyteIcsCB2007Design.cpp and that sorted it. Can

[twsocket] Not all data sent via THTTPServer being received in Chrome, Firefox, RESTClient

2013-08-07 Thread Paul Read - nSolve Ltd
Hi I can successfully send small amounts of data in response to a GET through THttpServer but large amounts (around 10Kb) seem to contain the first 10% of the data in the last 10% position (very approx). I see the same effect using Chrome, Firefox and RESTClient (not checked with IE yet). I ca

Re: [twsocket] Not all data sent via THTTPServer being received in Chrome, Firefox, RESTClient

2013-08-07 Thread Paul Read - nSolve Ltd
Cheers Angus I changed to hgSendStream and remove the duplicate SendStream call I was making (probably the cause of the issue) and it works fine now. gzip investigations next - ta for the pointer Mega thanks for the quick reply Paul On 07/08/2013 12:48, Angus Robertson - Magenta Systems Lt

[twsocket] default gzip of json by THTTPServer - is it possible or am I to do it myself?

2014-02-07 Thread Paul Read - nSolve Ltd
e } if (FDocStream.Size > FServer.SizeCompressMax) then exit; { too large will block server and use a lot of memory } Result := True; end; end; What is the recommended way to correctly return gzip json content? Or is it intended I should be performing the gzip logic before

[twsocket] How to keep SslWSocket open in a multi-threaded console app?

2015-07-28 Thread Paul Read - nSolve Ltd
connection?* -- Regards Paul Read Partner Follow us: @nSolve <http://www.twitter.com/nSolve> *nSolve Ltd* 33-35 Daws Lane London NW7 4SD England www.nsolve.com <http://www.nsolve.com> Tel: +44 (0) 1993 40 20 11 Tel(US): +1 617 273 2304 -- To unsubscribe or change your settings fo

Re: [twsocket] How to keep SslWSocket open in a multi-threaded console app?

2015-07-28 Thread Paul Read - nSolve Ltd
the MessageLoop it immediately breaks out of the loop as it is doing a GetTermianted call which returns true! Can I call SetTerminated(false) before calling Send/running the MEssageLoop? -- Regards Paul Read Partner Follow us: @nSolve <http://www.twitter.com/nSolve> *nSolve Ltd* 33-35 Daws La

Re: [twsocket] How to keep SslWSocket open in a multi-threaded console app?

2015-07-28 Thread Paul Read - nSolve Ltd
Do you recommend this procedure for a MS-Windows service? It seems a bit of a strange concept to me -- Regards Paul Read Partner Follow us: @nSolve <http://www.twitter.com/nSolve> *nSolve Ltd* 33-35 Daws Lane London NW7 4SD England www.nsolve.com <http://www.nsolve.com> Tel: +44

Re: [twsocket] How to keep SslWSocket open in a multi-threaded console app?

2015-07-28 Thread Paul Read - nSolve Ltd
othing happens at all) -- Regards Paul Read Partner Follow us: @nSolve <http://www.twitter.com/nSolve> *nSolve Ltd* 33-35 Daws Lane London NW7 4SD England www.nsolve.com <http://www.nsolve.com> Tel: +44 (0) 1993 40 20 11 Tel(US): +1 617 273 2304 On 28/07/2015 19:31, Angus Robertson

Re: [twsocket] How to keep SslWSocket open in a multi-threaded console app?

2015-07-28 Thread Paul Read - nSolve Ltd
ssages needed after Send Works. But surely can't be right?? -- Regards Paul Read Partner Follow us: @nSolve <http://www.twitter.com/nSolve> *nSolve Ltd* 33-35 Daws Lane London NW7 4SD England www.nsolve.com <http://www.nsolve.com> Tel: +44 (0) 1993 40 20 11 Tel(US): +1 617 2

Re: [twsocket] How to keep SslWSocket open in a multi-threaded console app?

2015-07-29 Thread Paul Read - nSolve Ltd
Svcmgr::Application->Run(); } } Thanks to all -- Regards Paul Read Partner Follow us: @nSolve <http://www.twitter.com/nSolve> *nSolve Ltd* 33-35 Daws Lane London NW7 4SD England www.nsolve.com <http://www.nsolve.com> Tel: +44 (0) 1993 40 20 11 Tel(US): +1 617