Re: [twsocket] error "Invalid code page" (Peter Van Hove) (Arno Garrels)

2009-10-29 Thread Peter Van Hove
Thanks for the info. But why do you need the ASCII and UTF-7 encoding at all? Provided the text contained non-ASCII chars they would be replaced by the default fail char "?", why not just save with default ANSI encoding, the first 128 chars are always the same, in any codepage. Also I've never see

Re: [twsocket] error "Invalid code page" (Peter Van Hove)

2009-10-26 Thread Peter Van Hove
So maybe somewhere in the code a wrong codepage is passed this this Win32 API call. That won't raise an exception unless some wrapper function throwed one. I sorted the problem out and it was not ICS (as what we agreed on already). FYI I use a save file dialog and allow the user to choose w

Re: [twsocket] error "Invalid code page" (Peter Van Hove)

2009-10-25 Thread Peter Van Hove
Where it said: "The error is actually coming from Windows, not Delphi, when TEncoding's constructor passes $ to the Win32 API GetCPInfo() function and it fails." Passing an invalid codepage to GetCPInfo will let the function fail with return ERROR_INVALID_PARAMETER, the exception is actually

[twsocket] error "Invalid code page" (Peter Van Hove)

2009-10-25 Thread Peter Van Hove
But I did a search in the files for "Invalid code page" and I couldn't find anything ... so I fear I'm barking up the wrong tree anyway. But then ... if anybody has an idea, let me know. I don't believe it's in ICS. Anyway the easiest way to catch this bug reliable was to include, for example,

[twsocket] error "Invalid code page"

2009-10-24 Thread Peter Van Hove
an idea, let me know. -- Arno Garrels Peter Van Hove wrote: Hi guys, I posted below quote in the "embarcadero.public.cppbuilder.ide" newsgroup. My first reaction was that this is a Borland issue, but since I use two components (ICS and DragDrop) I need to make sure that it's not com

[twsocket] error "Invalid code page"

2009-10-22 Thread Peter Van Hove
Hi guys, I posted below quote in the "embarcadero.public.cppbuilder.ide" newsgroup. My first reaction was that this is a Borland issue, but since I use two components (ICS and DragDrop) I need to make sure that it's not coming from something else. This is on a user's system and I can't debug t

[twsocket] Lots of Ambiguity issues when trying to use HttpCli (forinstance) in CB2009 project

2009-05-15 Thread Peter Van Hove
> Updated the repository so it will be included in today's nightly built > ZIP download. Thanks. I shall re-test with that build shortly. >> I'm still completely overwhelmed by following errors: >> >> [BCC32 Error] Overbyteicslibeay.hpp(253): E2015 Ambiguity between >> 'Byte' and 'System::Byte' >

[twsocket] Lots of Ambiguity issues when trying to use HttpCli (for instance) in CB2009 project

2009-05-14 Thread Peter Van Hove
>>> Please try to add the "$EXTERNALSYM" directive like: >>> ... >>> >>> Rebuild the ICS packages, does that change anything? >> >> Where do I add this code then please ? > > In OverbyteIcsLibrary.pas beginning at ~ line 510. I'm totally NOT component savvy, so I don't know what I'm doing. Your l

[twsocket] Lots of Ambiguity issues when trying to use HttpCli (for instance) in CB2009 project

2009-05-14 Thread Peter Van Hove
> Yes, that's a problem. > > In OverbyteIcsLibrary.pas there are still four functions > problematic with Builder. > > Please try to add the "$EXTERNALSYM" directive like: > ... > > Rebuild the ICS packages, does that change anything? Where do I add this code then please ? > ... > I really w

[twsocket] Lots of Ambiguity issues when trying to use HttpCli (for instance) in CB2009 project

2009-05-14 Thread Peter Van Hove
Hi, I'm porting my app from BCB5 to CB2009 To do that I ported the ICS specific code (a class around the HttpCli component) a while ago and that seemed to work great in a little test program. Yesterday and Today, trying to port the whole project I ran into lots of Ambiguity issues, for instanc

[twsocket] THttpCli POST issue with v7 Commit

2009-04-18 Thread Peter Van Hove
> The SVN HTTP version does seem to be showing revision 297 which is 10 > days old, I'll see if the server has stopped or something. > > You should really be using proper SVN or TortoiseSVN, which will show a > much later revision including the units Arno checked in this morning. > // > Do you us

Re: [twsocket] THttpCli POST issue with v7 Commit

2009-04-17 Thread Peter Van Hove
>> Should I URL encode the POST data as well ? > > Yes. I did ... it did not help. I used your older URLEncode() function that has UTF-8 conversion hard coded in it (I could not check out the newer version, see other email). I came to the conclusion that the '=' sign cannot be encoded as then it

Re: [twsocket] THttpCli POST issue with v7 Commit

2009-04-17 Thread Peter Van Hove
> While writing this, I think I introduced a bug in function > UrlEncode which always converted to UTF-8 in V7. > I just checked in a change, both UrlEncode and UrlDecode take a > CodePage argument now. > > Yes now there is ;-), update your local work copy and use UrlEncode() > located in uni

[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] THttpCli POST issue with v7 Commit 317

2009-04-15 Thread Peter Van Hove
>> 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 component us

[twsocket] THttpCli POST issue with v7 Commit 317

2009-04-14 Thread Peter Van Hove
I just converted a piece of code to CB2009 (coming from BCB5), not originally written by myself, so it's a bit searching what is what, but I believe I run into a component issue. Meanwhile I created the same app in BCB5 and there is works OK, using the same code. I used HEAD version v7, checke

[twsocket] CG2009 installation

2009-04-14 Thread Peter Van Hove
>> I downloaded alpha version 7 from the website but seem to be >> oblivious on how to properly install the components on C++ Builder >> 2009 ? > > At first download the latest source code, alpha version 7 is buggy: > http://wiki.overbyte.be/wiki/index.php/FAQ > >> The readme does explain it for De

[twsocket] CG2009 installation

2009-04-13 Thread Peter Van Hove
Hi, I downloaded alpha version 7 from the website but seem to be oblivious on how to properly install the components on C++ Builder 2009 ? The readme does explain it for Delphi, but the mentioned files won't open in Builder because of the so called Delphi.Identity missing ? I already installed D

Re: [twsocket] CodeGear 2009

2009-02-24 Thread Peter Van Hove
ble bugs the more > stable the final result will be. Note that ICS is now under SVN version > control! > That means, if you hit a possible bug and post it to this list the chance > is very high that you get access to fix very quickly. Always install > latest > version from the SVN rep

[twsocket] CodeGear 2009

2009-02-23 Thread Peter Van Hove
Hi colleagues, I newly signed up for this mailing list so I might be asking an old (and answered) question. If so, kindly point me to the thread that I should be reading. The issue is that I need to start thinking of porting my app to CG2009 because I want to take advantage of the Unicode GUI

Re: [twsocket] HttpCli: Opinion wanted !

2005-08-17 Thread Peter Van Hove
al software cannot always afford to do that (depends on what it does and who it is for). And last but definitly not least, It's Francois' pet project, his baby, his hobby, let HIM decide what to do please ! Best Regards, Peter --- Pet

Re: [twsocket] Folder names in THttpServer

2005-06-05 Thread Peter Van Hove
s helps. Best Regards, Peter ----------- Peter Van Hove CD and DVD Data recovery [EMAIL PROTECTED] www.Smart-Projects.net www.IsoBuster.com --- - Original Message - From: "Fastream Technolog

Re: [twsocket] Folder names in THttpServer

2005-06-05 Thread Peter Van Hove
Turkish, try setting it to Turkish and see if this fixes things (*) (*) Without really knowing what the real issue is ;-)) Like said, I hope I'm not beside the point entirely Best Regards, Peter ----------- Peter Van Hove CD and DVD Data recov

Re: [twsocket] Issue with "secure tunnel" ??

2005-05-27 Thread Peter Van Hove
ttp://www.overbyte.be - Original Message - From: "Peter Van Hove" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, May 27, 2005 2:55 PM Subject: [twsocket] Issue with "secure tunnel" ?? Hi All, I use THttpCli and the Get() command to dow

[twsocket] Issue with "secure tunnel" ??

2005-05-27 Thread Peter Van Hove
rmanent connection to the internet (I'm behind a cable modem, The Belgians among you know it as "TeleNet"). Or is there a known issue with secure tunnels ? Something I should be aware of ? Thanks, Best Regards, Peter ------- P

Firewall problem

2003-06-17 Thread Peter van Hove
Hello All, At home i've setup a Firewall to protect the internal network and to do some NAT for internal machines WWW and mail recently and internal machine became a dual homed lan en wlan host. The internal network is 10.60.0.0 while the wlan net is 10.70.0.0 all traffic for 10.70.0.0 is being r

perlapi-5.6.0 for unstable

2002-09-19 Thread Peter van Hove
5.8 package maintainer but the link he provide onto the mailinglist is a dead end. So if anyone would have some news about it it's quite welkom. Kind regards Peter Van Hove -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Unidentified subject!

2002-09-12 Thread Peter van Hove
debian-mirrors@lists.debian.org, debian-news@lists.debian.org, debian-security-announce@lists.debian.org, debian-security@lists.debian.org, debian-testing@lists.debian.org, debian-user@lists.debian.org, debian-consultants@lists.debian.org, debian-devel@lists.debian.org, debian-firewall@lists.debian

[Qmail-scanner-general]Qmail-scanner not scanning double extensions

2002-07-03 Thread Peter van Hove
Yahe virus out this really poses a treath. File files have something like: els.scr .bat I'm using Qmail-scanner 1.12, F-prot antivirus On a Debian Unstable machine Thanks for any info Kind Regards Pete

Re: Patch problems with Debian (woody)

2001-11-19 Thread Peter van Hove
Hello ace, > Sorry to bother any of you, but every time I try to apply a new > patch, I run into trouble. I use Debian (woody) now, which has a > source-only package for qmail-1.03, to which I apply the patch fount > at nrg4u... this is the result: it's a known problem the qmail source tree