Re: [twsocket] TProxyInfo for D2009

2008-12-13 Thread Maurizio Lotauro
Scrive Paul : > Maurizio, Paul, > I've asked Michel (tested for you in the past). > He's very busy right now, but he could setup and test it mid next week. > He will be on vacation the following 2 weeks, so it's next week or next > year... I'll try, but I must first finish another work. Bye,

Re: [twsocket] TProxyInfo for D2009

2008-12-11 Thread Arno Garrels
Maurizio Lotauro wrote: > Scrive Arno Garrels <[EMAIL PROTECTED]>: > >> Maurizio Lotauro wrote: > > [...] > >>> This is the point. The above remarks is really vague. >>> The Unicode version exists in IE5 but down's work or doesn't exist >>> at all? >> >> And even more questions: >> What about t

Re: [twsocket] TProxyInfo for D2009

2008-12-11 Thread Paul
t; <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Wednesday, December 10, 2008 1:55 AM Subject: Re: [twsocket] TProxyInfo for D2009 > I don't have and environment with W2k and IE5 to check this situation. > Anyone? > Any other opinion and/or suggestion? >

Re: [twsocket] TProxyInfo for D2009

2008-12-10 Thread Maurizio Lotauro
Scrive Arno Garrels <[EMAIL PROTECTED]>: > Maurizio Lotauro wrote: [...] > > This is the point. The above remarks is really vague. > > The Unicode version exists in IE5 but down's work or doesn't exist at > > all? > > And even more questions: > What about the record INTERNET_PROXY_INFO > (http

Re: [twsocket] TProxyInfo for D2009

2008-12-10 Thread Arno Garrels
Maurizio Lotauro wrote: > Scrive Arno Garrels <[EMAIL PROTECTED]>: > >> Arno Garrels wrote: >>> Maurizio Lotauro wrote: > > [...] > I'm in doubt about this. The remarks of INTERNET_PER_CONN_OPTION Structure say: "In Internet Explorer 5, only the ANSI versions of Interne

Re: [twsocket] TProxyInfo for D2009

2008-12-09 Thread Maurizio Lotauro
Scrive Arno Garrels <[EMAIL PROTECTED]>: > Arno Garrels wrote: > > Maurizio Lotauro wrote: [...] > >> I'm in doubt about this. The remarks of INTERNET_PER_CONN_OPTION > >> Structure say: > >> > >> "In Internet Explorer 5, only the ANSI versions of > >> InternetQueryOption and InternetSetOption

Re: [twsocket] TProxyInfo for D2009

2008-12-09 Thread Arno Garrels
Arno Garrels wrote: > Maurizio Lotauro wrote: >>> so it should be enough to add just one line: >>> >>> if @InternetQueryOption = nil then >>> begin >>> {$IFDEF UNICODE} >>> @InternetQueryOption := GetProcAddress(WinInetHandle, >>> 'InternetQueryOptionW'); >>> {$ELSE} >>> @InternetQueryOp

Re: [twsocket] TProxyInfo for D2009

2008-12-09 Thread Arno Garrels
Maurizio Lotauro wrote: >> so it should be enough to add just one line: >> >> if @InternetQueryOption = nil then >> begin >> {$IFDEF UNICODE} >> @InternetQueryOption := GetProcAddress(WinInetHandle, >> 'InternetQueryOptionW'); >> {$ELSE} >> @InternetQueryOption := GetProcAddress(WinInetH

Re: [twsocket] TProxyInfo for D2009

2008-12-08 Thread Maurizio Lotauro
Scrive Arno Garrels <[EMAIL PROTECTED]>: [...] > LPTSTR maps depending on the Unicode directive to either Ansi or Unicode, Yes I know > so it should be enough to add just one line: > > if @InternetQueryOption = nil then > begin > {$IFDEF UNICODE} > @InternetQueryOption := GetProcAddress(

Re: [twsocket] TProxyInfo for D2009

2008-12-08 Thread Arno Garrels
Maurizio Lotauro wrote: > Scrive Arno Garrels <[EMAIL PROTECTED]>: > >> Paul wrote: >>> I'm trying to use TProxyInfo with D2009. >>> Since Wininet is not unicode enabled, >> >> It is. Only some parameters like host names etc. are of type LPSTR. > > All function and structures used by TProxyInfo

Re: [twsocket] TProxyInfo for D2009

2008-12-08 Thread Maurizio Lotauro
Scrive Arno Garrels <[EMAIL PROTECTED]>: > Paul wrote: > > I'm trying to use TProxyInfo with D2009. > > Since Wininet is not unicode enabled, > > It is. Only some parameters like host names etc. are of type LPSTR. All function and structures used by TProxyInfo are LPSTR, one LPCSTR and two LPTS

Re: [twsocket] TProxyInfo for D2009

2008-12-07 Thread Arno Garrels
Paul wrote: > I'm trying to use TProxyInfo with D2009. > Since Wininet is not unicode enabled, It is. Only some parameters like host names etc. are of type LPSTR. > I've changed all Char, PChar and > String to Ansi except the variables used by ICS-function ParseUrl. > I get about 60 Warnings :-(

Re: [twsocket] TProxyInfo for D2009

2008-12-03 Thread Paul
- Original Message - From: "Maurizio Lotauro" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Wednesday, December 03, 2008 3:57 PM Subject: Re: [twsocket] TProxyInfo for D2009 > What explanation they do? deprecated Paul -- To unsubscribe or chan

Re: [twsocket] TProxyInfo for D2009

2008-12-03 Thread Maurizio Lotauro
Scrive Paul <[EMAIL PROTECTED]>: > Hi Maurizio, > > >> Since Wininet is not unicode enabled, I've changed all Char, PChar and > >> String to Ansi except the variables used by ICS-function ParseUrl. > >> I get about 60 Warnings :-( > > > > I see. I can try to adapt it to D2009. > > > It's working,

Re: [twsocket] TProxyInfo for D2009

2008-12-02 Thread Paul
Hi Maurizio, >> Since Wininet is not unicode enabled, I've changed all Char, PChar and >> String to Ansi except the variables used by ICS-function ParseUrl. >> I get about 60 Warnings :-( > > I see. I can try to adapt it to D2009. > It's working, but the warnings are all about ansistring-string co

Re: [twsocket] TProxyInfo for D2009

2008-12-02 Thread Maurizio Lotauro
Scrive Paul <[EMAIL PROTECTED]>: > I'm trying to use TProxyInfo with D2009. Very interesting ;-) > Since Wininet is not unicode enabled, I've changed all Char, PChar and > String to Ansi except the variables used by ICS-function ParseUrl. > I get about 60 Warnings :-( I see. I can try to adapt

[twsocket] TProxyInfo for D2009

2008-12-02 Thread Paul
I'm trying to use TProxyInfo with D2009. Since Wininet is not unicode enabled, I've changed all Char, PChar and String to Ansi except the variables used by ICS-function ParseUrl. I get about 60 Warnings :-( Anyone used Winhttp instead Wininet for this ? It's unicode enabled and can handle WPAD wh