Re: [twsocket] Message Loop

2006-02-07 Thread Francois Piette
Do not use PeekMessage but GetMessage. GetMessage will return fals when WM_QUIT 
is received, this
let you terminate the message loop.
Before the message loop, PostMessage a message and from the event handler do 
anything you need at
thread startup, instead of doing it before the message loop.

--
Contribute to the SSL Effort. Visit
http://www.overbyte.be/eng/ssl.html
--
[EMAIL PROTECTED]
Author of ICS (Internet Component Suite, freeware)
Author of MidWare (Multi-tier framework, freeware)
http://www.overbyte.be



- Original Message - 
From: "Markus Humm" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, February 07, 2006 7:36 PM
Subject: [twsocket] Message Loop


> Hello,
>
> my thread's execute method would look like this now:
>
> var msg:TMsg;
>
> begin
>   while not terminated do
>   begin
> case myaction of
>   acreate: here I'd create a new connection and then status
>will be anothing again
>   aclose: here I'd close a open connection and then status
>   will be anothing again
>   anothing:
>   begin
>
> if PeekMessage(Msg, 0, 0, 0, pm_noremove) then
> begin
>   TranslateMessage(Msg);
>   DispatchMessage(Msg);
> end;
>
>   end;
> end;
>   end;
> end;
>
> The question now:
>
> 1. that should work, shouldn't it?
>
> 2. would pm_noremove be okay, or should I rather pm_remove?
>
> Greetings
>
> Markus
>
> -- 
> To unsubscribe or change your settings for TWSocket mailing list
> please goto http://www.elists.org/mailman/listinfo/twsocket
> Visit our website at http://www.overbyte.be

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


[twsocket] SMTPcli and multipart/mixed

2006-02-07 Thread Rod Kinnison
Hello, i'm sure this question has been answered before but I searched 
the faq and old elists archives to no avail.

I'm trying to create multipart/mixed (http and plain text) e-mails with 
smtpcli.  My questions are:
1. what should smtpcli.ContentType be set to?
2. do I create the boundary manually and add it to the headers?
3. do I place the boundaries in the e-mail body manually?

Thanks for your help.
-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Message Loop

2006-02-07 Thread Wilfried Mestdagh
Hello Markus,

> 1. that should work, shouldn't it?

Yes at first sitht it is ok.

> 2. would pm_noremove be okay, or should I rather pm_remove?

use pm_remove otherwise the messages will stay in queue an you only will
reead first message.

Also think over to use GetMessage(). Advantage is that it break the loop
when a WM_Quit is recieved.

---
Rgds, Wilfried [TeamICS]
http://www.overbyte.be/eng/overbyte/teamics.html
http://www.mestdagh.biz

Tuesday, February 7, 2006, 19:36, Markus Humm wrote:

> Hello,

> my thread's execute method would look like this now:

> var msg:TMsg;

> begin
>   while not terminated do
>   begin
> case myaction of
>   acreate: here I'd create a new connection and then status
>will be anothing again
>   aclose: here I'd close a open connection and then status
>   will be anothing again
>   anothing:
>   begin

> if PeekMessage(Msg, 0, 0, 0, pm_noremove) then
> begin
>   TranslateMessage(Msg);
>   DispatchMessage(Msg);
> end;

>   end;
> end;
>   end;
> end;

> The question now:

> 1. that should work, shouldn't it?

> 2. would pm_noremove be okay, or should I rather pm_remove?

> Greetings

> Markus


-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


[twsocket] Message Loop

2006-02-07 Thread Markus Humm
Hello,

my thread's execute method would look like this now:

var msg:TMsg;

begin
  while not terminated do
  begin
case myaction of
  acreate: here I'd create a new connection and then status
   will be anothing again
  aclose: here I'd close a open connection and then status
  will be anothing again
  anothing:
  begin

if PeekMessage(Msg, 0, 0, 0, pm_noremove) then
begin
  TranslateMessage(Msg);
  DispatchMessage(Msg);
end;

  end;
end;
  end;
end;

The question now:

1. that should work, shouldn't it?

2. would pm_noremove be okay, or should I rather pm_remove?

Greetings

Markus

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Handling redirects

2006-02-07 Thread Francois Piette
> > Assuming you use THttpCli, there is a property
> > called FollowRedirection. Set it to true.
>
> 1. Did you mean "FollowRelocation"?
> 2. Does it automatically then handle the redirection. Or will it trigger the
> OnLocationChange event
> where I need to get the new Destination to use?

OnLocationChange is always triggered. If ou need to change the relocation the 
set FollowRelocation
to FALSE and run a new request yourself with the url you want to relocate to.
--
[EMAIL PROTECTED]
Author of ICS (Internet Component Suite, freeware)
Author of MidWare (Multi-tier framework, freeware)
http://www.overbyte.be

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] DNSQuery - what should i free up?

2006-02-07 Thread Wilfried Mestdagh
Hello Ann,

The sockets are closed, but the OS keeps them for a while in a wait
state.

---
Rgds, Wilfried [TeamICS]
http://www.overbyte.be/eng/overbyte/teamics.html
http://www.mestdagh.biz

Tuesday, February 7, 2006, 11:46, Ja wrote:

> Yes... exaclty that error. But shoudlnt DNSQuery close those sockets 
> after reciving response?

>  Wiadomość Oryginalna 
> Od: Wilfried Mestdagh <[EMAIL PROTECTED]>
> Do: ICS support mailing 
> Data: Tue, 7 Feb 2006 11:31:01 +0100
> Temat: Re: [twsocket] DNSQuery - what should i free up?

>> Hello Ann,
>> 
>> I assume you mean winsock error 10055 (no buffer space available)
>  ?
>> 
>> Could be you have a leak, or that some other program has a leak. 
> Sockets
>> use non pageable RAM witch is very limited and also in use by 
> other
>> programs. I recall you use DnsQuery with TCP (right?). Closing a 
> socket
>> leave it a while in TIME_WAIT state. I think it is default 2 
> minute, but
>> it can be set longer (is registry setting somewhere). So possible 
> is
>> that your program is eating sockets because of the TIME_WAIT.
>> 
>> Anyway if this is the reason then you can easy find out with 
> NETSTAT -a
>> to check out.
>> 
>> ---
>> Rgds, Wilfried [TeamICS]
>> http://www.overbyte.be/eng/overbyte/teamics.html
>> http://www.mestdagh.biz
>> 
>> Tuesday, February 7, 2006, 09:58, Ja wrote:
>> 
>> > Hi.
>> > Got little big problem with DNSQuery... I wrote application that 
>> > frequently checks some domains if their ns records are ok. It 
> just 
>> > creates x DNSQuery components (where x is number of domains) 
> every 5 
>> > minutes and analizes the Lookup results... After finish it uses 
>> > DNSQuery.destroy function. But there is a problem. After 10 
> hours of 
>> > working DNSQuery starts to report errors ... something like "not 
>> > enough buffer space" - for sure something about buffer... after 
>> > those errors whole windows screws up. I cant open any new 
>> > application because gettig different errors.
>> > I suppose that im not freeing something... so the question is: 
> what 
>> > should i free up so that wouldnt occur?
>> > Thanx!
>> > Ann
>> 
>> 
>> -- 
>> To unsubscribe or change your settings for TWSocket mailing list
>> please goto http://www.elists.org/mailman/listinfo/twsocket
>> Visit our website at http://www.overbyte.be
>> 


-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Handling redirects

2006-02-07 Thread Marius van Tubbergh
> Assuming you use THttpCli, there is a property called FollowRedirection.
Set
> it to true.

1. Did you mean "FollowRelocation"?
2. Does it automatically then handle the redirection. Or will it trigger the
OnLocationChange event
where I need to get the new Destination to use?


Thanks in advance!

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Handling redirects

2006-02-07 Thread Fastream Technologies
Hello,

Assuming you use THttpCli, there is a property called FollowRedirection. Set 
it to true.

Regards,

SubZero

- Original Message - 
From: "Marius van Tubbergh" <[EMAIL PROTECTED]>
To: "ICS support mailing" 
Sent: Tuesday, February 07, 2006 12:20 PM
Subject: [twsocket] Handling redirects


> Hi ICS team,
>
> I need to handle redirects on HTTP requests.
> What is the proper way to do this?
>
> Any advice / examples appreciated.
>
> Thanks!
> -- 
> To unsubscribe or change your settings for TWSocket mailing list
> please goto http://www.elists.org/mailman/listinfo/twsocket
> Visit our website at http://www.overbyte.be 

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Spiders

2006-02-07 Thread DZ-Jay
On Feb 6, 2006, at 02:09, Tibor Csonka wrote:

> I think it would be of greater benefit of the ICS community to talk
> about this right here in the mail list. So put your question and/or 
> your
> experiences and I'll try to answer them. Also I think Arno Garrels has
> worked on a web spider (correct me if I am wrong).

I've worked with web spiders, albeit not on Delphi.  Still I might be 
able to answer questions regarding design and engineering.

dZ.

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] DNSQuery - what should i free up?

2006-02-07 Thread Ja
Yes... exaclty that error. But shoudlnt DNSQuery close those sockets 
after reciving response?

 Wiadomość Oryginalna 
Od: Wilfried Mestdagh <[EMAIL PROTECTED]>
Do: ICS support mailing 
Data: Tue, 7 Feb 2006 11:31:01 +0100
Temat: Re: [twsocket] DNSQuery - what should i free up?

> Hello Ann,
> 
> I assume you mean winsock error 10055 (no buffer space available)
 ?
> 
> Could be you have a leak, or that some other program has a leak. 
Sockets
> use non pageable RAM witch is very limited and also in use by 
other
> programs. I recall you use DnsQuery with TCP (right?). Closing a 
socket
> leave it a while in TIME_WAIT state. I think it is default 2 
minute, but
> it can be set longer (is registry setting somewhere). So possible 
is
> that your program is eating sockets because of the TIME_WAIT.
> 
> Anyway if this is the reason then you can easy find out with 
NETSTAT -a
> to check out.
> 
> ---
> Rgds, Wilfried [TeamICS]
> http://www.overbyte.be/eng/overbyte/teamics.html
> http://www.mestdagh.biz
> 
> Tuesday, February 7, 2006, 09:58, Ja wrote:
> 
> > Hi.
> > Got little big problem with DNSQuery... I wrote application that 
> > frequently checks some domains if their ns records are ok. It 
just 
> > creates x DNSQuery components (where x is number of domains) 
every 5 
> > minutes and analizes the Lookup results... After finish it uses 
> > DNSQuery.destroy function. But there is a problem. After 10 
hours of 
> > working DNSQuery starts to report errors ... something like "not 
> > enough buffer space" - for sure something about buffer... after 
> > those errors whole windows screws up. I cant open any new 
> > application because gettig different errors.
> > I suppose that im not freeing something... so the question is: 
what 
> > should i free up so that wouldnt occur?
> > Thanx!
> > Ann
> 
> 
> -- 
> To unsubscribe or change your settings for TWSocket mailing list
> please goto http://www.elists.org/mailman/listinfo/twsocket
> Visit our website at http://www.overbyte.be
> 

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] DNSQuery - what should i free up?

2006-02-07 Thread Wilfried Mestdagh
Hello Ann,

I assume you mean winsock error 10055 (no buffer space available) ?

Could be you have a leak, or that some other program has a leak. Sockets
use non pageable RAM witch is very limited and also in use by other
programs. I recall you use DnsQuery with TCP (right?). Closing a socket
leave it a while in TIME_WAIT state. I think it is default 2 minute, but
it can be set longer (is registry setting somewhere). So possible is
that your program is eating sockets because of the TIME_WAIT.

Anyway if this is the reason then you can easy find out with NETSTAT -a
to check out.

---
Rgds, Wilfried [TeamICS]
http://www.overbyte.be/eng/overbyte/teamics.html
http://www.mestdagh.biz

Tuesday, February 7, 2006, 09:58, Ja wrote:

> Hi.
> Got little big problem with DNSQuery... I wrote application that 
> frequently checks some domains if their ns records are ok. It just 
> creates x DNSQuery components (where x is number of domains) every 5 
> minutes and analizes the Lookup results... After finish it uses 
> DNSQuery.destroy function. But there is a problem. After 10 hours of 
> working DNSQuery starts to report errors ... something like "not 
> enough buffer space" - for sure something about buffer... after 
> those errors whole windows screws up. I cant open any new 
> application because gettig different errors.
> I suppose that im not freeing something... so the question is: what 
> should i free up so that wouldnt occur?
> Thanx!
> Ann


-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


[twsocket] Handling redirects

2006-02-07 Thread Marius van Tubbergh
Hi ICS team,

I need to handle redirects on HTTP requests.
What is the proper way to do this?

Any advice / examples appreciated.

Thanks!
-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] DNSQuery - what should i free up?

2006-02-07 Thread Ja
Yes but im sure its connected with DNSQuery... so maybe i just 
should use some implemented function to free up memory used by 
DNSQuery component?

 Wiadomość Oryginalna 
Od: Francois Piette <[EMAIL PROTECTED]>
Do: ICS support mailing 
Data: Tue, 7 Feb 2006 10:19:44 +0100
Temat: Re: [twsocket] DNSQuery - what should i free up?

> You should use a memory leak checking tool. Like MemProof or 
MemCheck. A little search on Google
> would help you.
> --
> [EMAIL PROTECTED]
> http://www.overbyte.be
> 
> 
> - Original Message - 
> From: "Ja" <[EMAIL PROTECTED]>
> To: 
> Sent: Tuesday, February 07, 2006 9:58 AM
> Subject: [twsocket] DNSQuery - what should i free up?
> 
> 
> > Hi.
> > Got little big problem with DNSQuery... I wrote application that
> > frequently checks some domains if their ns records are ok. It 
just
> > creates x DNSQuery components (where x is number of domains) 
every 5
> > minutes and analizes the Lookup results... After finish it uses
> > DNSQuery.destroy function. But there is a problem. After 10 
hours of
> > working DNSQuery starts to report errors ... something like "not
> > enough buffer space" - for sure something about buffer... after
> > those errors whole windows screws up. I cant open any new
> > application because gettig different errors.
> > I suppose that im not freeing something... so the question is: 
what
> > should i free up so that wouldnt occur?
> > Thanx!
> > Ann
> >
> > -- 
> > To unsubscribe or change your settings for TWSocket mailing list
> > please goto http://www.elists.org/mailman/listinfo/twsocket
> > Visit our website at http://www.overbyte.be
> 
> -- 
> To unsubscribe or change your settings for TWSocket mailing list
> please goto http://www.elists.org/mailman/listinfo/twsocket
> Visit our website at http://www.overbyte.be
> 

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] DNSQuery - what should i free up?

2006-02-07 Thread Francois Piette
You should use a memory leak checking tool. Like MemProof or MemCheck. A little 
search on Google
would help you.
--
[EMAIL PROTECTED]
http://www.overbyte.be


- Original Message - 
From: "Ja" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, February 07, 2006 9:58 AM
Subject: [twsocket] DNSQuery - what should i free up?


> Hi.
> Got little big problem with DNSQuery... I wrote application that
> frequently checks some domains if their ns records are ok. It just
> creates x DNSQuery components (where x is number of domains) every 5
> minutes and analizes the Lookup results... After finish it uses
> DNSQuery.destroy function. But there is a problem. After 10 hours of
> working DNSQuery starts to report errors ... something like "not
> enough buffer space" - for sure something about buffer... after
> those errors whole windows screws up. I cant open any new
> application because gettig different errors.
> I suppose that im not freeing something... so the question is: what
> should i free up so that wouldnt occur?
> Thanx!
> Ann
>
> -- 
> To unsubscribe or change your settings for TWSocket mailing list
> please goto http://www.elists.org/mailman/listinfo/twsocket
> Visit our website at http://www.overbyte.be

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


[twsocket] DNSQuery - what should i free up?

2006-02-07 Thread Ja
Hi.
Got little big problem with DNSQuery... I wrote application that 
frequently checks some domains if their ns records are ok. It just 
creates x DNSQuery components (where x is number of domains) every 5 
minutes and analizes the Lookup results... After finish it uses 
DNSQuery.destroy function. But there is a problem. After 10 hours of 
working DNSQuery starts to report errors ... something like "not 
enough buffer space" - for sure something about buffer... after 
those errors whole windows screws up. I cant open any new 
application because gettig different errors.
I suppose that im not freeing something... so the question is: what 
should i free up so that wouldnt occur?
Thanx!
Ann

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] SSL and implementation

2006-02-07 Thread Francois Piette
By the way, which protocol are you interested in ?
--
[EMAIL PROTECTED]
http://www.overbyte.be

- Original Message - 
From: "Marius van Tubbergh" <[EMAIL PROTECTED]>
To: "ICS support mailing" 
Sent: Tuesday, February 07, 2006 12:13 AM
Subject: [twsocket] SSL and implementation


> Hi ICS,
> 
> Like everybody knows I am quite new to ICS.
> 
> 1. Is the ICS-SSL working and ready should I decide to get hold of it?
> In other words, it's not in development still and a stable working
> release is available?
> 
> 2. How much work is it to implement it to work 100%? Code-wize?
> Is it wrapped in a component?
> 
> 
> 
> Thanks.
> 
> 
> 
> 
> 
> -- 
> To unsubscribe or change your settings for TWSocket mailing list
> please goto http://www.elists.org/mailman/listinfo/twsocket
> Visit our website at http://www.overbyte.be
-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread Marius van Tubbergh
That's 100% fine.

I accept the apology.
We both had a tough day.

Anyway, I am  looking forward to work with everyone at ICS.


- Original Message -
From: "Fastream Technologies" <[EMAIL PROTECTED]>
To: "ICS support mailing" 
Sent: Tuesday, February 07, 2006 10:21 AM
Subject: Re: [twsocket] Protocol "https" not implemented EHttpException


> Ok maybe ordinary was not as explanatory as I thought it would be. What I
> meant was developers outside of Microsoft and other big $,$$$,$$$,$$$
> companies. I usually get the expression -not only from here but generally-
> that people tend to pay to big companies and not to smaller ones despite
> offering the same service and even less costly.
>
> Please do not get me wrong, I did not want to show disrespect. I just
wanted
> to emphasize that money spent on ICS-SSL would not be wasted.
>
> Regards,
>
> SZ
>
> - Original Message -
> From: "Marius van Tubbergh" <[EMAIL PROTECTED]>
> To: "ICS support mailing" 
> Sent: Monday, February 06, 2006 8:54 PM
> Subject: Re: [twsocket] Protocol "https" not implemented EHttpException
>
>
> >> I do not understand why people who spend hundreds of dollars for each
> >> Windows copy hesitate to support a descent effort initiated by me back
in
> >> 2002-2003 and implemented by many volunteers who are ordinary coders
just
> >> like YOU!
> > "Ordinary"??? Please elaborate.
> > If my understanding is not failing me please let me have a word or two:
> > I welcome your compliment warmly. Please keep in mind that you
> > don't have a job if not for "ordinary" coders like myself.
> > Bottom line is ordinary component developers like YOURSELF need ordinary
> > coders like me.
> >
> > Please show me where does MS advertise there O/S to be free
> > and as soon as you want to browse My Computer you need to make a
> > "donation"
> > (compulsory)?
> >
> >
> >
> >
> >>I am not sure what your earning model is but ever thought of
> >> developing shareware? If you did, you would understand
> > My earning model is enough to purchase the best component suite on the
> > market.
> > (BTW: I have spend $1000's on components since 2002).
> > I am developing freeware software as a hobby and support free / open
> > source
> > components.
> > My line of work varies from property investment to software development
> > etc...
> > You might rent one of my properties, drop me the address and I will
> > confirm.
> >
> >
> >
> >
> >>that $50 for a source
> >> code is actually no expensive than nothing.
> > If not mistaken a minimum of $119 (only) will get me the source code.
> > See: http://www.overbyte.be/frame_index.html
> > I have no problem that you get paid for the ordinary work you do!
> > But you should consider to replace "Freeware" (as you arrogantly
advertise
> > on your site) to "Shareware".
> > What if I set up a software site and promote freeware software but as
soon
> > as you get to the download link
> > I pop you an ORDER page to beg for a donation and if you don't donate
you
> > don't get the software. Or even worse,
> > after you use the software you realize that it's only partly free and
you
> > have to make a minimum "donation" (doubting the terminology here) of
$119
> > in order to use the entire application.
> > Please refer to your English dictionary for the term "donation".
> > Quoting WordWeb:
> > "Donation" =
> > "A voluntary gift (as of money or service or ideas)
> > made to some worthwhile cause"
> > "Act of giving in common with others for a common
> > purpose especially to a charity"
> > Yes, I realize ICS is free and SSL-ICS is not free.
> > You actually have very clever strategy, will give you credit for that.
> > Something at least not that ordinary about YOU.
> >
> >
> > NB: Your approach is really not good.
> > Rather stick to technical support and don't try to get funny with users.
> > I have actually just received a decent reply from DZ-Jay (Thanks).
> > Have a look at it, catch a few tips and by the time SSL-ICS is free for
> > everyone you might have enough
> > "people-skills" not to chase users away but rather attract them.
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > --
> > To unsubscribe or change your settings for TWSocket mailing list
> > please goto http://www.elists.org/mailman/listinfo/twsocket
> > Visit our website at http://www.overbyte.be
>
> --
> To unsubscribe or change your settings for TWSocket mailing list
> please goto http://www.elists.org/mailman/listinfo/twsocket
> Visit our website at http://www.overbyte.be
>
>
> __ NOD32 1.1330 (20051220) Information __
>
> This message was checked by NOD32 antivirus system.
> http://www.eset.com
>
>

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] SSL and implementation

2006-02-07 Thread Francois Piette
> Like everybody knows I am quite new to ICS.
>
> 1. Is the ICS-SSL working and ready should I decide to get hold of it?
> In other words, it's not in development still and a stable working
> release is available?

It is still under development, things are still changing to make them the best 
possible.
Nevertheless, it is really usable by now. You can download the binary 
executables for the demos. So
you can check by yourself how it works before spending a single cent. There are 
demos for client and
server, HTTPS and FTPS and others.

> 2. How much work is it to implement it to work 100%? Code-wize?
> Is it wrapped in a component?

There is not much difference between ICS and ICS-SSL the components are the 
same, except of course
new properties, events and methods to support SSL specifics such as 
certificates and peer
verification.

SSL is not an easy thing once you go beyond accessing a simple https website 
(that is easy and even
trivial when no certificate is involved). But to use all the features of SSL, 
you'll probably have
to learn a lot. A good start is the book "Network Security with OpenSSL" 
(O'Reilly). Of course you
may skip the chapters about C programming because it is emebeed in ICS-SSL 
component. But carefuly
read the chapters about SSL in general, SSL certificates and OpenSSL command 
line utility you'll use
even with ICS-SSL.

There is a dedicated ICS-SSL support mailing list you can subscribe once you 
are a contributor.

--
Contribute to the SSL Effort. Visit
http://www.overbyte.be/eng/ssl.html
--
[EMAIL PROTECTED]
Author of ICS (Internet Component Suite, freeware)
Author of MidWare (Multi-tier framework, freeware)
http://www.overbyte.be


-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread ed
Greetings. Thank you for writing Gemdev.com. Gemdev is the publisher of the 
popular eBay auction sniper program called Sporbits.

Emails are answered within 12 - 48 hours or sooner.


Thank you,

Ed Prav
Gemdev Web Design Manager


Below are some frequently needed resources:

Purchase Sporbits
http://www.gemdev.com/catalog/product_info.php?products_id=35

You have left eBay auction feedback and it has not yet been replied to.
http://www.gemdev.com/catalog/contact_us.php

New User CD Installation
http://www.gemdev.com/install_CD.htm: 

Download Sporbits Auction Sniper / Test Drive Sporbits
http://www.gemdev.com/aucbon/downloads.htm 

Receive Notification Of Product Updates and General News About Ebay Buying And 
Selling
http://www.gemdev.com/mailinglistFAQ.htm 

Sporbits Resale Instructions: Get Started in 5 Minutes Or Less!
http://www.gemdev.com/citrus/resalerules.htm 

Have You Sold A Sporbits License?
http://www.gemdev.com/catalog/product_info.php?products_id=39 

Major Markup III Advanced Rapid Auction HTML Maker BETA Testers Needed
http://www.gemdev.com/catalog/product_info.php?products_id=40 



-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread ed
Greetings. Thank you for writing Gemdev.com. Gemdev is the publisher of the 
popular eBay auction sniper program called Sporbits.

Emails are answered within 12 - 48 hours or sooner.


Thank you,

Ed Prav
Gemdev Web Design Manager


Below are some frequently needed resources:

Purchase Sporbits
http://www.gemdev.com/catalog/product_info.php?products_id=35

You have left eBay auction feedback and it has not yet been replied to.
http://www.gemdev.com/catalog/contact_us.php

New User CD Installation
http://www.gemdev.com/install_CD.htm: 

Download Sporbits Auction Sniper / Test Drive Sporbits
http://www.gemdev.com/aucbon/downloads.htm 

Receive Notification Of Product Updates and General News About Ebay Buying And 
Selling
http://www.gemdev.com/mailinglistFAQ.htm 

Sporbits Resale Instructions: Get Started in 5 Minutes Or Less!
http://www.gemdev.com/citrus/resalerules.htm 

Have You Sold A Sporbits License?
http://www.gemdev.com/catalog/product_info.php?products_id=39 

Major Markup III Advanced Rapid Auction HTML Maker BETA Testers Needed
http://www.gemdev.com/catalog/product_info.php?products_id=40 



-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread ed
Greetings. Thank you for writing Gemdev.com. Gemdev is the publisher of the 
popular eBay auction sniper program called Sporbits.

Emails are answered within 12 - 48 hours or sooner.


Thank you,

Ed Prav
Gemdev Web Design Manager


Below are some frequently needed resources:

Purchase Sporbits
http://www.gemdev.com/catalog/product_info.php?products_id=35

You have left eBay auction feedback and it has not yet been replied to.
http://www.gemdev.com/catalog/contact_us.php

New User CD Installation
http://www.gemdev.com/install_CD.htm: 

Download Sporbits Auction Sniper / Test Drive Sporbits
http://www.gemdev.com/aucbon/downloads.htm 

Receive Notification Of Product Updates and General News About Ebay Buying And 
Selling
http://www.gemdev.com/mailinglistFAQ.htm 

Sporbits Resale Instructions: Get Started in 5 Minutes Or Less!
http://www.gemdev.com/citrus/resalerules.htm 

Have You Sold A Sporbits License?
http://www.gemdev.com/catalog/product_info.php?products_id=39 

Major Markup III Advanced Rapid Auction HTML Maker BETA Testers Needed
http://www.gemdev.com/catalog/product_info.php?products_id=40 



-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread ed
Greetings. Thank you for writing Gemdev.com. Gemdev is the publisher of the 
popular eBay auction sniper program called Sporbits.

Emails are answered within 12 - 48 hours or sooner.


Thank you,

Ed Prav
Gemdev Web Design Manager


Below are some frequently needed resources:

Purchase Sporbits
http://www.gemdev.com/catalog/product_info.php?products_id=35

You have left eBay auction feedback and it has not yet been replied to.
http://www.gemdev.com/catalog/contact_us.php

New User CD Installation
http://www.gemdev.com/install_CD.htm: 

Download Sporbits Auction Sniper / Test Drive Sporbits
http://www.gemdev.com/aucbon/downloads.htm 

Receive Notification Of Product Updates and General News About Ebay Buying And 
Selling
http://www.gemdev.com/mailinglistFAQ.htm 

Sporbits Resale Instructions: Get Started in 5 Minutes Or Less!
http://www.gemdev.com/citrus/resalerules.htm 

Have You Sold A Sporbits License?
http://www.gemdev.com/catalog/product_info.php?products_id=39 

Major Markup III Advanced Rapid Auction HTML Maker BETA Testers Needed
http://www.gemdev.com/catalog/product_info.php?products_id=40 



-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread ed
Greetings. Thank you for writing Gemdev.com. Gemdev is the publisher of the 
popular eBay auction sniper program called Sporbits.

Emails are answered within 12 - 48 hours or sooner.


Thank you,

Ed Prav
Gemdev Web Design Manager


Below are some frequently needed resources:

Purchase Sporbits
http://www.gemdev.com/catalog/product_info.php?products_id=35

You have left eBay auction feedback and it has not yet been replied to.
http://www.gemdev.com/catalog/contact_us.php

New User CD Installation
http://www.gemdev.com/install_CD.htm: 

Download Sporbits Auction Sniper / Test Drive Sporbits
http://www.gemdev.com/aucbon/downloads.htm 

Receive Notification Of Product Updates and General News About Ebay Buying And 
Selling
http://www.gemdev.com/mailinglistFAQ.htm 

Sporbits Resale Instructions: Get Started in 5 Minutes Or Less!
http://www.gemdev.com/citrus/resalerules.htm 

Have You Sold A Sporbits License?
http://www.gemdev.com/catalog/product_info.php?products_id=39 

Major Markup III Advanced Rapid Auction HTML Maker BETA Testers Needed
http://www.gemdev.com/catalog/product_info.php?products_id=40 



-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread ed
Greetings. Thank you for writing Gemdev.com. Gemdev is the publisher of the 
popular eBay auction sniper program called Sporbits.

Emails are answered within 12 - 48 hours or sooner.


Thank you,

Ed Prav
Gemdev Web Design Manager


Below are some frequently needed resources:

Purchase Sporbits
http://www.gemdev.com/catalog/product_info.php?products_id=35

You have left eBay auction feedback and it has not yet been replied to.
http://www.gemdev.com/catalog/contact_us.php

New User CD Installation
http://www.gemdev.com/install_CD.htm: 

Download Sporbits Auction Sniper / Test Drive Sporbits
http://www.gemdev.com/aucbon/downloads.htm 

Receive Notification Of Product Updates and General News About Ebay Buying And 
Selling
http://www.gemdev.com/mailinglistFAQ.htm 

Sporbits Resale Instructions: Get Started in 5 Minutes Or Less!
http://www.gemdev.com/citrus/resalerules.htm 

Have You Sold A Sporbits License?
http://www.gemdev.com/catalog/product_info.php?products_id=39 

Major Markup III Advanced Rapid Auction HTML Maker BETA Testers Needed
http://www.gemdev.com/catalog/product_info.php?products_id=40 



-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread ed
Greetings. Thank you for writing Gemdev.com. Gemdev is the publisher of the 
popular eBay auction sniper program called Sporbits.

Emails are answered within 12 - 48 hours or sooner.


Thank you,

Ed Prav
Gemdev Web Design Manager


Below are some frequently needed resources:

Purchase Sporbits
http://www.gemdev.com/catalog/product_info.php?products_id=35

You have left eBay auction feedback and it has not yet been replied to.
http://www.gemdev.com/catalog/contact_us.php

New User CD Installation
http://www.gemdev.com/install_CD.htm: 

Download Sporbits Auction Sniper / Test Drive Sporbits
http://www.gemdev.com/aucbon/downloads.htm 

Receive Notification Of Product Updates and General News About Ebay Buying And 
Selling
http://www.gemdev.com/mailinglistFAQ.htm 

Sporbits Resale Instructions: Get Started in 5 Minutes Or Less!
http://www.gemdev.com/citrus/resalerules.htm 

Have You Sold A Sporbits License?
http://www.gemdev.com/catalog/product_info.php?products_id=39 

Major Markup III Advanced Rapid Auction HTML Maker BETA Testers Needed
http://www.gemdev.com/catalog/product_info.php?products_id=40 



-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread ed
Greetings. Thank you for writing Gemdev.com. Gemdev is the publisher of the 
popular eBay auction sniper program called Sporbits.

Emails are answered within 12 - 48 hours or sooner.


Thank you,

Ed Prav
Gemdev Web Design Manager


Below are some frequently needed resources:

Purchase Sporbits
http://www.gemdev.com/catalog/product_info.php?products_id=35

You have left eBay auction feedback and it has not yet been replied to.
http://www.gemdev.com/catalog/contact_us.php

New User CD Installation
http://www.gemdev.com/install_CD.htm: 

Download Sporbits Auction Sniper / Test Drive Sporbits
http://www.gemdev.com/aucbon/downloads.htm 

Receive Notification Of Product Updates and General News About Ebay Buying And 
Selling
http://www.gemdev.com/mailinglistFAQ.htm 

Sporbits Resale Instructions: Get Started in 5 Minutes Or Less!
http://www.gemdev.com/citrus/resalerules.htm 

Have You Sold A Sporbits License?
http://www.gemdev.com/catalog/product_info.php?products_id=39 

Major Markup III Advanced Rapid Auction HTML Maker BETA Testers Needed
http://www.gemdev.com/catalog/product_info.php?products_id=40 



-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread ed
Greetings. Thank you for writing Gemdev.com. Gemdev is the publisher of the 
popular eBay auction sniper program called Sporbits.

Emails are answered within 12 - 48 hours or sooner.


Thank you,

Ed Prav
Gemdev Web Design Manager


Below are some frequently needed resources:

Purchase Sporbits
http://www.gemdev.com/catalog/product_info.php?products_id=35

You have left eBay auction feedback and it has not yet been replied to.
http://www.gemdev.com/catalog/contact_us.php

New User CD Installation
http://www.gemdev.com/install_CD.htm: 

Download Sporbits Auction Sniper / Test Drive Sporbits
http://www.gemdev.com/aucbon/downloads.htm 

Receive Notification Of Product Updates and General News About Ebay Buying And 
Selling
http://www.gemdev.com/mailinglistFAQ.htm 

Sporbits Resale Instructions: Get Started in 5 Minutes Or Less!
http://www.gemdev.com/citrus/resalerules.htm 

Have You Sold A Sporbits License?
http://www.gemdev.com/catalog/product_info.php?products_id=39 

Major Markup III Advanced Rapid Auction HTML Maker BETA Testers Needed
http://www.gemdev.com/catalog/product_info.php?products_id=40 



-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread ed
Greetings. Thank you for writing Gemdev.com. Gemdev is the publisher of the 
popular eBay auction sniper program called Sporbits.

Emails are answered within 12 - 48 hours or sooner.


Thank you,

Ed Prav
Gemdev Web Design Manager


Below are some frequently needed resources:

Purchase Sporbits
http://www.gemdev.com/catalog/product_info.php?products_id=35

You have left eBay auction feedback and it has not yet been replied to.
http://www.gemdev.com/catalog/contact_us.php

New User CD Installation
http://www.gemdev.com/install_CD.htm: 

Download Sporbits Auction Sniper / Test Drive Sporbits
http://www.gemdev.com/aucbon/downloads.htm 

Receive Notification Of Product Updates and General News About Ebay Buying And 
Selling
http://www.gemdev.com/mailinglistFAQ.htm 

Sporbits Resale Instructions: Get Started in 5 Minutes Or Less!
http://www.gemdev.com/citrus/resalerules.htm 

Have You Sold A Sporbits License?
http://www.gemdev.com/catalog/product_info.php?products_id=39 

Major Markup III Advanced Rapid Auction HTML Maker BETA Testers Needed
http://www.gemdev.com/catalog/product_info.php?products_id=40 



-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Protocol "https" not implemented EHttpException

2006-02-07 Thread Fastream Technologies
Ok maybe ordinary was not as explanatory as I thought it would be. What I 
meant was developers outside of Microsoft and other big $,$$$,$$$,$$$ 
companies. I usually get the expression -not only from here but generally- 
that people tend to pay to big companies and not to smaller ones despite 
offering the same service and even less costly.

Please do not get me wrong, I did not want to show disrespect. I just wanted 
to emphasize that money spent on ICS-SSL would not be wasted.

Regards,

SZ

- Original Message - 
From: "Marius van Tubbergh" <[EMAIL PROTECTED]>
To: "ICS support mailing" 
Sent: Monday, February 06, 2006 8:54 PM
Subject: Re: [twsocket] Protocol "https" not implemented EHttpException


>> I do not understand why people who spend hundreds of dollars for each
>> Windows copy hesitate to support a descent effort initiated by me back in
>> 2002-2003 and implemented by many volunteers who are ordinary coders just
>> like YOU!
> "Ordinary"??? Please elaborate.
> If my understanding is not failing me please let me have a word or two:
> I welcome your compliment warmly. Please keep in mind that you
> don't have a job if not for "ordinary" coders like myself.
> Bottom line is ordinary component developers like YOURSELF need ordinary
> coders like me.
>
> Please show me where does MS advertise there O/S to be free
> and as soon as you want to browse My Computer you need to make a 
> "donation"
> (compulsory)?
>
>
>
>
>>I am not sure what your earning model is but ever thought of
>> developing shareware? If you did, you would understand
> My earning model is enough to purchase the best component suite on the
> market.
> (BTW: I have spend $1000's on components since 2002).
> I am developing freeware software as a hobby and support free / open 
> source
> components.
> My line of work varies from property investment to software development
> etc...
> You might rent one of my properties, drop me the address and I will 
> confirm.
>
>
>
>
>>that $50 for a source
>> code is actually no expensive than nothing.
> If not mistaken a minimum of $119 (only) will get me the source code.
> See: http://www.overbyte.be/frame_index.html
> I have no problem that you get paid for the ordinary work you do!
> But you should consider to replace "Freeware" (as you arrogantly advertise
> on your site) to "Shareware".
> What if I set up a software site and promote freeware software but as soon
> as you get to the download link
> I pop you an ORDER page to beg for a donation and if you don't donate you
> don't get the software. Or even worse,
> after you use the software you realize that it's only partly free and you
> have to make a minimum "donation" (doubting the terminology here) of $119
> in order to use the entire application.
> Please refer to your English dictionary for the term "donation".
> Quoting WordWeb:
> "Donation" =
> "A voluntary gift (as of money or service or ideas)
> made to some worthwhile cause"
> "Act of giving in common with others for a common
> purpose especially to a charity"
> Yes, I realize ICS is free and SSL-ICS is not free.
> You actually have very clever strategy, will give you credit for that.
> Something at least not that ordinary about YOU.
>
>
> NB: Your approach is really not good.
> Rather stick to technical support and don't try to get funny with users.
> I have actually just received a decent reply from DZ-Jay (Thanks).
> Have a look at it, catch a few tips and by the time SSL-ICS is free for
> everyone you might have enough
> "people-skills" not to chase users away but rather attract them.
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> -- 
> To unsubscribe or change your settings for TWSocket mailing list
> please goto http://www.elists.org/mailman/listinfo/twsocket
> Visit our website at http://www.overbyte.be 

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be