Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Fastream Technologies
Strange, why do I get the exception then?!

Did you PostMessage from OnRequestDone as Francois said? I think there is a
need for a check for double onrequestdones after a get/head/post.

Regards,

SZ


On 5/14/09, Arno Garrels  wrote:
>
> Fastream Technologies wrote:
> > I tried to provide. In the ICS Httpstst demo, which is async, I added
> > the lines SslHttpCli1->GetAsync(); to onrequestdone of head and it
> > shows "component not ready" error on the url I provided
> > (68/scripts, NOT www.suckersluck...). If the component is not
> > ready in onrequestdone, when will it be ready??
>
> I modified the HttpTst to call HeadAsync instead.
> Still works fine, no exception:
>
> Not using proxy
> cmd> HEAD /otherroots/www.suckersluck.com/scripts HTTP/1.1
> cmd> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
> cmd> Connection: Keep-Alive
> cmd> Accept-Language: en, fr
> cmd> User-Agent: Mozilla/3.0 (compatibel)
> cmd> Host: 69.28.242.152:7979
> cmd>
> Header: HTTP/1.1 404 World-Class Hacker Detected
> Header: Server: Mysterio/1.1
> Header: Date: Thu, 14 May 2009 05:45:52 GMT
> Header: Content-Type: text/html; charset=windows-1252
> Header: Content-Length: 1352
> Header: Pragma: no-cache
> Header: Cache-control: no-cache
> Header: Expires: Thu, 14 May 2009 05:45:52 GMT
> RequestDone, no error. Status =404
> cmd> GET /otherroots/www.suckersluck.com/scripts HTTP/1.1
> cmd> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
> cmd> Connection: Keep-Alive
> cmd> Accept-Language: en, fr
> cmd> User-Agent: Mozilla/3.0 (compatibel)
> cmd> Host: 69.28.242.152:7979
> cmd>
> Header: HTTP/1.1 404 World-Class Hacker Detected
> Header: Server: Mysterio/1.1
> Header: Date: Thu, 14 May 2009 05:45:52 GMT
> Header: Content-Type: text/html; charset=windows-1252
> Header: Content-Length: 1352
> Header: Pragma: no-cache
> Header: Cache-control: no-cache
> Header: Expires: Thu, 14 May 2009 05:45:52 GMT
> text/html; charset=windows-1252 => scripts
> Location =
> http://69.28.242.152:7979/otherroots/www.suckersluck.com/scripts
> URL = http://69.28.242.152:7979/otherroots/www.suckersluck.com/scripts
> Document = scripts
> RequestDone, no error. Status =404
>
> --
>
-- 
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


Re: [twsocket] TWSocket Digest, Vol 321, Issue 4

2009-05-13 Thread Ole Braad-Sørensen
On Tue, 12 May 2009 12:00:01 +, you wrote:

>Possibly you need breaks? :-)
>
>switch(RqType)
>  {
>   case smtpConnect:  SMTP->Helo(); break;
>   case smtpHelo: SMTP->MailFrom(); break;
>   casesmtpEhlo: SMTP->Auth(); break;
>   casesmtpAuth: SMTP->MailFrom(); break;
>   casesmtpMailFrom: SMTP->RcptTo(); break;
>   casesmtpRcptTo:   SMTP->Data(); break;
>   casesmtpData: SMTP->Quit(); break;
>  }

No. Tried this too. The breaks has no effect in this "switch"
( No "default" value )

Regards:
Ole Braad-Sorensen
www.importshop.dk
-- 
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


Re: [twsocket] TWSocket Digest, Vol 321, Issue 1

2009-05-13 Thread Ole Braad-Sørensen
On Mon, 11 May 2009 12:00:01 +, you wrote:

>You do not check for ErrCode = 0 in OnRequestDone.
>Put a break point before or at the switch statement and single-step
>thru the code. That will show you what's wrong.

Dont' think that the code I showed was til only code I have tried.

I have tried nearly everything. Including checking for errorcode 0.

The hint with a brek-point is also tried. Omly showing that the problem comes in
the second line in the Case block. But why, I cant figure out.

>From your answer it sounds as you know it, so it would be a great help to put a
finger on it in staead of just pointing. 

The "mailsnd" example works great, but it is in Delphi. Wonder if this works in
C++ at all? Has anyone tried it in C++, I would be grateful to know and even
more if you could show me what you did.

Regards:
Ole Braad-Sorensen
www.importshop.dk
-- 
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


Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Arno Garrels
Fastream Technologies wrote:
> I tried to provide. In the ICS Httpstst demo, which is async, I added
> the lines SslHttpCli1->GetAsync(); to onrequestdone of head and it
> shows "component not ready" error on the url I provided
> (68/scripts, NOT www.suckersluck...). If the component is not
> ready in onrequestdone, when will it be ready??

I modified the HttpTst to call HeadAsync instead.
Still works fine, no exception:
 
Not using proxy
cmd> HEAD /otherroots/www.suckersluck.com/scripts HTTP/1.1
cmd> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
cmd> Connection: Keep-Alive
cmd> Accept-Language: en, fr
cmd> User-Agent: Mozilla/3.0 (compatibel)
cmd> Host: 69.28.242.152:7979
cmd> 
Header: HTTP/1.1 404 World-Class Hacker Detected
Header: Server: Mysterio/1.1
Header: Date: Thu, 14 May 2009 05:45:52 GMT
Header: Content-Type: text/html; charset=windows-1252
Header: Content-Length: 1352
Header: Pragma: no-cache
Header: Cache-control: no-cache
Header: Expires: Thu, 14 May 2009 05:45:52 GMT
RequestDone, no error. Status =404
cmd> GET /otherroots/www.suckersluck.com/scripts HTTP/1.1
cmd> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
cmd> Connection: Keep-Alive
cmd> Accept-Language: en, fr
cmd> User-Agent: Mozilla/3.0 (compatibel)
cmd> Host: 69.28.242.152:7979
cmd> 
Header: HTTP/1.1 404 World-Class Hacker Detected
Header: Server: Mysterio/1.1
Header: Date: Thu, 14 May 2009 05:45:52 GMT
Header: Content-Type: text/html; charset=windows-1252
Header: Content-Length: 1352
Header: Pragma: no-cache
Header: Cache-control: no-cache
Header: Expires: Thu, 14 May 2009 05:45:52 GMT
text/html; charset=windows-1252 => scripts
Location = http://69.28.242.152:7979/otherroots/www.suckersluck.com/scripts
URL = http://69.28.242.152:7979/otherroots/www.suckersluck.com/scripts
Document = scripts
RequestDone, no error. Status =404

-- 
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


Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Francois Piette
>I tried to provide. In the ICS Httpstst demo, which is async, I added the
> lines SslHttpCli1->GetAsync(); to onrequestdone of head and it shows
> "component not ready" error on the url I provided (68/scripts, NOT
> www.suckersluck...). If the component is not ready in onrequestdone, when
> will it be ready??

When you are inside an event handler, you are still in the event processing 
(the event handler is just called like a function). To be completely out of 
any processing, you must use PostMessage to send a custom message. And from 
the correponding handler you can do anything with the component. You are 
guranteed to be out of everything.
--
francois.pie...@overbyte.be
The author of the freeware multi-tier middleware MidWare
The author of the freeware Internet Component Suite (ICS)
http://www.overbyte.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


Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Fastream Technologies
I tried to provide. In the ICS Httpstst demo, which is async, I added the
lines SslHttpCli1->GetAsync(); to onrequestdone of head and it shows
"component not ready" error on the url I provided (68/scripts, NOT
www.suckersluck...). If the component is not ready in onrequestdone, when
will it be ready??

Regards,

SZ


On 5/13/09, Arno Garrels  wrote:
>
> Fastream Technologies wrote:
> > I never told I use sync methods at all! I use both async. I call
> > getasync in the onrequestdone of the head! I think this bug exists in
> > that situation as well...
>
> What bug?
> Please provide a simple test application that shows the bug in action,
> it has to be as simple as possible and must compile within 5 minutes.
>
> --
> Arno Garrels
>
-- 
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


Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Arno Garrels
Fastream Technologies wrote:
> I never told I use sync methods at all! I use both async. I call
> getasync in the onrequestdone of the head! I think this bug exists in
> that situation as well...

What bug?
Please provide a simple test application that shows the bug in action,
it has to be as simple as possible and must compile within 5 minutes.

--
Arno Garrels
-- 
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


Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Fastream Technologies
I never told I use sync methods at all! I use both async. I call
getasync in the onrequestdone of the head! I think this bug exists in
that situation as well...

Regards,

SZ

On 5/13/09, Arno Garrels  wrote:
> Fastream Technologies wrote:
> >> HEAD Failed ! << WHY İS THIS HERE?
>
> This is the exception message from DoRequestSync() and displayed in the  first
> ButtonClick-HEAD request which is a sync request.
> So what you see is a good example, why it should avoided to mix async and sync
> methods. Either use asnc or sync, but do not both.
>
> THIS WHAT I AM TALKING ABOUT,
>
> Do you actually use both asnc and sync methods is a chain?
> If true, you caught the bug.
>
> --
> Arno Garrels
-- 
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

Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Arno Garrels
Fastream Technologies wrote:
>> HEAD Failed ! << WHY İS THIS HERE?  

This is the exception message from DoRequestSync() and displayed in the  first
ButtonClick-HEAD request which is a sync request. 
So what you see is a good example, why it should avoided to mix async and sync
methods. Either use asnc or sync, but do not both.

THIS WHAT I AM TALKING ABOUT, 

Do you actually use both asnc and sync methods is a chain?
If true, you caught the bug.

--
Arno Garrels
-- 
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

Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Fastream Technologies
Hello,

I found something VERY STRANGE in your log:

On 5/13/09, Arno Garrels  wrote:
> Fastream Technologies wrote:
> > Hello,
> >
> > HEAD must be first then GET, is that what you did?
>
> I just tried it again:
>
> Not using proxy
> cmd> HEAD /otherroots/www.suckersluck.com/scripts HTTP/1.1
> cmd> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
> cmd> Connection: Keep-Alive
> cmd> User-Agent: Mozilla/3.0 (compatibel)
> cmd> Host: 69.28.242.152:7979
> cmd>
> Header: HTTP/1.1 404 World-Class Hacker Detected
> Header: Server: Mysterio/1.1
> Header: Date: Wed, 13 May 2009 13:25:20 GMT
> Header: Content-Type: text/html; charset=windows-1252
> Header: Content-Length: 1352
> Header: Pragma: no-cache
> Header: Cache-control: no-cache
> Header: Expires: Wed, 13 May 2009 13:25:20 GMT
> RequestDone, no error. Status =404
> cmd> GET /otherroots/www.suckersluck.com/scripts HTTP/1.1
> cmd> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
> cmd> Connection: Keep-Alive
> cmd> User-Agent: Mozilla/3.0 (compatibel)
> cmd> Host: 69.28.242.152:7979
> cmd>
> Header: HTTP/1.1 404 World-Class Hacker Detected
> Header: Server: Mysterio/1.1
> Header: Date: Wed, 13 May 2009 13:25:21 GMT
> Header: Content-Type: text/html; charset=windows-1252
> Header: Content-Length: 1352
> Header: Pragma: no-cache
> Header: Cache-control: no-cache
> Header: Expires: Wed, 13 May 2009 13:25:21 GMT
> text/html; charset=windows-1252 => scripts
> Location = http://69.28.242.152:7979/otherroots/www.suckersluck.com/scripts
> URL = http://69.28.242.152:7979/otherroots/www.suckersluck.com/scripts
> Document = scripts
> RequestDone, no error. Status =404
> HEAD Failed ! << WHY İS THIS HERE? THIS WHAT I AM TALKING ABOUT, IN THE FIRST 
> ONREQUESTDONE THE HEAD IS NOT ACTUALLY FINISHED--IT WAS PENDING AND NOW IT 
> PRINTS HEAD FAILED AFTER THE GET DATA!

HTH,

SZ


> StatusCode   = 404
> ReasonPhrase = World-Class Hacker Detected
>
>
>
> >
> > Regards,
> >
> > SZ
> >
> > On 5/13/09, Arno Garrels  wrote:
> >> Fastream Technologies wrote:
> >>> Did you do what I wrote below? With ICS v7, it raises an exception
> >>> (Component not ready!).
> >>
> if(RqType == httpHEAD)
> SslHttpCli1->GetASync();
> >>
> >> Not for me, I used the Delphi HttpTst demo and added the to lines
> >> as the last in OnRequestDone. That means, the first GET and HEAD
> >> is a sync request.
> >>
> >> --
> >> Arno Garrels
-- 
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

Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Arno Garrels
Fastream Technologies wrote:
> Hello,
> 
> HEAD must be first then GET, is that what you did?

I just tried it again:

Not using proxy
cmd> HEAD /otherroots/www.suckersluck.com/scripts HTTP/1.1
cmd> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
cmd> Connection: Keep-Alive
cmd> User-Agent: Mozilla/3.0 (compatibel)
cmd> Host: 69.28.242.152:7979
cmd> 
Header: HTTP/1.1 404 World-Class Hacker Detected
Header: Server: Mysterio/1.1
Header: Date: Wed, 13 May 2009 13:25:20 GMT
Header: Content-Type: text/html; charset=windows-1252
Header: Content-Length: 1352
Header: Pragma: no-cache
Header: Cache-control: no-cache
Header: Expires: Wed, 13 May 2009 13:25:20 GMT
RequestDone, no error. Status =404
cmd> GET /otherroots/www.suckersluck.com/scripts HTTP/1.1
cmd> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
cmd> Connection: Keep-Alive
cmd> User-Agent: Mozilla/3.0 (compatibel)
cmd> Host: 69.28.242.152:7979
cmd> 
Header: HTTP/1.1 404 World-Class Hacker Detected
Header: Server: Mysterio/1.1
Header: Date: Wed, 13 May 2009 13:25:21 GMT
Header: Content-Type: text/html; charset=windows-1252
Header: Content-Length: 1352
Header: Pragma: no-cache
Header: Cache-control: no-cache
Header: Expires: Wed, 13 May 2009 13:25:21 GMT
text/html; charset=windows-1252 => scripts
Location = http://69.28.242.152:7979/otherroots/www.suckersluck.com/scripts
URL = http://69.28.242.152:7979/otherroots/www.suckersluck.com/scripts
Document = scripts
RequestDone, no error. Status =404
HEAD Failed !
StatusCode   = 404
ReasonPhrase = World-Class Hacker Detected
 


> 
> Regards,
> 
> SZ
> 
> On 5/13/09, Arno Garrels  wrote:
>> Fastream Technologies wrote:
>>> Did you do what I wrote below? With ICS v7, it raises an exception
>>> (Component not ready!).
>> 
if(RqType == httpHEAD)
SslHttpCli1->GetASync();
>> 
>> Not for me, I used the Delphi HttpTst demo and added the to lines
>> as the last in OnRequestDone. That means, the first GET and HEAD
>> is a sync request.
>> 
>> --
>> Arno Garrels
>> 
>> 
>> --
-- 
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


Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Fastream Technologies
Hello,

HEAD must be first then GET, is that what you did?

Regards,

SZ

On 5/13/09, Arno Garrels  wrote:
> Fastream Technologies wrote:
> > Did you do what I wrote below? With ICS v7, it raises an exception
> > (Component not ready!).
>
> >>if(RqType == httpHEAD)
> >>SslHttpCli1->GetASync();
>
> Not for me, I used the Delphi HttpTst demo and added the to lines
> as the last in OnRequestDone. That means, the first GET and HEAD
> is a sync request.
>
> --
> Arno Garrels
>
>
> --
-- 
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


Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Arno Garrels
Fastream Technologies wrote:
> Did you do what I wrote below? With ICS v7, it raises an exception
> (Component not ready!).

>>if(RqType == httpHEAD)
>>SslHttpCli1->GetASync();

Not for me, I used the Delphi HttpTst demo and added the to lines
as the last in OnRequestDone. That means, the first GET and HEAD
is a sync request.

--
Arno Garrels


-- 
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


Re: [twsocket] SSL intermediate cert problem

2009-05-13 Thread Arno Garrels
Fastream Technologies wrote:
> Hello,
> 
> I wonder how would an end user install these files sent from Comodo:
> 
> Root CA Certificate - AddTrustExternalCARoot.crt
> Intermediate CA Certificate - UTNAddTrustSGCCA.crt
> Intermediate CA Certificate - ComodoUTNSGCCA.crt
> Intermediate CA Certificate - EssentialSSLCA_2.crt
> Your Free SSL Certificate - services_mypriority_co_uk.crt
> 
> It is my experience that crt's and pem's are exactly the same yet with
> different extensions.

If they are not PEM files they have to be converted to PEM with
openssl.exe first. 

Then, in order to ensure that those clients who only have the root 
CA in their trusted store will ever be able to verify this _ugly long 
chain, copy all intermediate as well as the server certificate into
one PEM file and make it the server certificate (use a text editor for
this purpose which is able to handle "LF only" line breaks as well). 
As you can imagine, the SSL handshake will be rather slow if four 
certificates have to be sent to the client.

I do not know whether these certificates are commonly included in 
Firefox by default, or whether IE automaticaly retrieves them from the
Microsoft certificate server. If one can be sure that connecting
clients do have the complete chain (well, without the last one of 
course) it was enough to just use the server certificate.  

--
Arno Garrels
-- 
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


Re: [twsocket] SSL intermediate cert problem

2009-05-13 Thread Dod
Hello,

You speak about end-user, but do you already installed one yourself ?

regards.

FT> Of course I am trying to use ICS THttpServer!

FT> Regards,

FT> SZ

FT> On 5/13/09, Dod  wrote:
>> Hello,
>>
>> So if for server, it depend which server software you intend to use.
>>
>> Look at this page that show you how to do it with well known servers
>> like IIS, Apache, WebSphere...
>>
>> http://www.instantssl.com/ssl-certificate-support/cert_installation/ssl-certificate-index.html
>>
>> regards.
>>
>> FT> Hi,
>>
>> FT> But this is a server certificate! Do you still insist on your advice
>> FT> after this info?
>>
>> FT> Regards,
>>
>> FT> Gorkem Ates
>>
>> FT> On 5/13/09, Dod  wrote:
>> >> Hello,
>> >>
>> >> You  can  import  them  using  import  certificate  wizard in Internet
>> >> Explorer,  this  wizard also have an EXE version located into %WINDIR%
>> >> but I don't remember the name.
>> >>
>> >> regards.
>> >>
>> >>
>> >> FT> Hello,
>> >>
>> >> FT> I wonder how would an end user install these files sent from Comodo:
>> >>
>> >> FT> Root CA Certificate - AddTrustExternalCARoot.crt
>> >> FT> Intermediate CA Certificate - UTNAddTrustSGCCA.crt
>> >> FT> Intermediate CA Certificate - ComodoUTNSGCCA.crt
>> >> FT> Intermediate CA Certificate - EssentialSSLCA_2.crt
>> >> FT> Your Free SSL Certificate - services_mypriority_co_uk.crt
>> >>
>> >> FT> It is my experience that crt's and pem's are exactly the same yet with
>> >> FT> different extensions.
>> >>
>> >> FT> Please advise.
>> >>
>> >> FT> Best Regards,
>> >>
>> >> FT> SZ
>> >>

-- 
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


Re: [twsocket] SSL intermediate cert problem

2009-05-13 Thread Fastream Technologies
Hi,

Of course I am trying to use ICS THttpServer!

Regards,

SZ

On 5/13/09, Dod  wrote:
> Hello,
>
> So if for server, it depend which server software you intend to use.
>
> Look at this page that show you how to do it with well known servers
> like IIS, Apache, WebSphere...
>
> http://www.instantssl.com/ssl-certificate-support/cert_installation/ssl-certificate-index.html
>
> regards.
>
> FT> Hi,
>
> FT> But this is a server certificate! Do you still insist on your advice
> FT> after this info?
>
> FT> Regards,
>
> FT> Gorkem Ates
>
> FT> On 5/13/09, Dod  wrote:
> >> Hello,
> >>
> >> You  can  import  them  using  import  certificate  wizard in Internet
> >> Explorer,  this  wizard also have an EXE version located into %WINDIR%
> >> but I don't remember the name.
> >>
> >> regards.
> >>
> >>
> >> FT> Hello,
> >>
> >> FT> I wonder how would an end user install these files sent from Comodo:
> >>
> >> FT> Root CA Certificate - AddTrustExternalCARoot.crt
> >> FT> Intermediate CA Certificate - UTNAddTrustSGCCA.crt
> >> FT> Intermediate CA Certificate - ComodoUTNSGCCA.crt
> >> FT> Intermediate CA Certificate - EssentialSSLCA_2.crt
> >> FT> Your Free SSL Certificate - services_mypriority_co_uk.crt
> >>
> >> FT> It is my experience that crt's and pem's are exactly the same yet with
> >> FT> different extensions.
> >>
> >> FT> Please advise.
> >>
> >> FT> Best Regards,
> >>
> >> FT> SZ
> >>
-- 
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


Re: [twsocket] SSL intermediate cert problem

2009-05-13 Thread Dod
Hello,

So if for server, it depend which server software you intend to use.

Look at this page that show you how to do it with well known servers
like IIS, Apache, WebSphere...

http://www.instantssl.com/ssl-certificate-support/cert_installation/ssl-certificate-index.html

regards.

FT> Hi,

FT> But this is a server certificate! Do you still insist on your advice
FT> after this info?

FT> Regards,

FT> Gorkem Ates

FT> On 5/13/09, Dod  wrote:
>> Hello,
>>
>> You  can  import  them  using  import  certificate  wizard in Internet
>> Explorer,  this  wizard also have an EXE version located into %WINDIR%
>> but I don't remember the name.
>>
>> regards.
>>
>>
>> FT> Hello,
>>
>> FT> I wonder how would an end user install these files sent from Comodo:
>>
>> FT> Root CA Certificate - AddTrustExternalCARoot.crt
>> FT> Intermediate CA Certificate - UTNAddTrustSGCCA.crt
>> FT> Intermediate CA Certificate - ComodoUTNSGCCA.crt
>> FT> Intermediate CA Certificate - EssentialSSLCA_2.crt
>> FT> Your Free SSL Certificate - services_mypriority_co_uk.crt
>>
>> FT> It is my experience that crt's and pem's are exactly the same yet with
>> FT> different extensions.
>>
>> FT> Please advise.
>>
>> FT> Best Regards,
>>
>> FT> SZ
>>
>> --
>> 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
>>


FT> -- 
FT> Gorkem Ates
FT> Fastream Technologies
FT> Software IQ: Innovation & Quality
FT> www.fastream.com | Email: supp...@fastream.com | Tel: +90-312-223-2830
FT> | MSN: g_a...@hotmail.com
FT> Join IQWF Server Yahoo group at http://groups.yahoo.com/group/IQWFServer
FT> Join IQ Reverse Proxy Yahoo group at
FT> http://groups.yahoo.com/group/IQReverseProxy

-- 
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


Re: [twsocket] SSL intermediate cert problem

2009-05-13 Thread Fastream Technologies
Hi,

But this is a server certificate! Do you still insist on your advice
after this info?

Regards,

Gorkem Ates

On 5/13/09, Dod  wrote:
> Hello,
>
> You  can  import  them  using  import  certificate  wizard in Internet
> Explorer,  this  wizard also have an EXE version located into %WINDIR%
> but I don't remember the name.
>
> regards.
>
>
> FT> Hello,
>
> FT> I wonder how would an end user install these files sent from Comodo:
>
> FT> Root CA Certificate - AddTrustExternalCARoot.crt
> FT> Intermediate CA Certificate - UTNAddTrustSGCCA.crt
> FT> Intermediate CA Certificate - ComodoUTNSGCCA.crt
> FT> Intermediate CA Certificate - EssentialSSLCA_2.crt
> FT> Your Free SSL Certificate - services_mypriority_co_uk.crt
>
> FT> It is my experience that crt's and pem's are exactly the same yet with
> FT> different extensions.
>
> FT> Please advise.
>
> FT> Best Regards,
>
> FT> SZ
>
> --
> 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
>


-- 
Gorkem Ates
Fastream Technologies
Software IQ: Innovation & Quality
www.fastream.com | Email: supp...@fastream.com | Tel: +90-312-223-2830
| MSN: g_a...@hotmail.com
Join IQWF Server Yahoo group at http://groups.yahoo.com/group/IQWFServer
Join IQ Reverse Proxy Yahoo group at
http://groups.yahoo.com/group/IQReverseProxy
-- 
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


Re: [twsocket] SSL intermediate cert problem

2009-05-13 Thread Dod
Hello,

You  can  import  them  using  import  certificate  wizard in Internet
Explorer,  this  wizard also have an EXE version located into %WINDIR%
but I don't remember the name.

regards.


FT> Hello,

FT> I wonder how would an end user install these files sent from Comodo:

FT> Root CA Certificate - AddTrustExternalCARoot.crt
FT> Intermediate CA Certificate - UTNAddTrustSGCCA.crt
FT> Intermediate CA Certificate - ComodoUTNSGCCA.crt
FT> Intermediate CA Certificate - EssentialSSLCA_2.crt
FT> Your Free SSL Certificate - services_mypriority_co_uk.crt

FT> It is my experience that crt's and pem's are exactly the same yet with
FT> different extensions.

FT> Please advise.

FT> Best Regards,

FT> SZ

-- 
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


[twsocket] SSL intermediate cert problem

2009-05-13 Thread Fastream Technologies
Hello,

I wonder how would an end user install these files sent from Comodo:

Root CA Certificate - AddTrustExternalCARoot.crt
Intermediate CA Certificate - UTNAddTrustSGCCA.crt
Intermediate CA Certificate - ComodoUTNSGCCA.crt
Intermediate CA Certificate - EssentialSSLCA_2.crt
Your Free SSL Certificate - services_mypriority_co_uk.crt

It is my experience that crt's and pem's are exactly the same yet with
different extensions.

Please advise.

Best Regards,

SZ
-- 
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


Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Fastream Technologies
I notice in email exchanges sometimes people tend to answer each one
separately without reading the entire messages sent by me in whole.
Strange...

Anyway, the problem with THttpCli is it issues OnRequestDone in a
non-sync way! Uses multiple message posts (first for setready and then
for triggerrequestdone) and then sometimes fires onrequestdone twice!
I know I should wait until the last one but this is theoritically
impossible as it is sometimes 1 sometimes 2 fires and you never
know!...

Thanks,

SZ

On 5/13/09, Fastream Technologies  wrote:
> Did you do what I wrote below? With ICS v7, it raises an exception
> (Component not ready!).
>
> On 5/12/09, Fastream Technologies  wrote:
> > Hello,
> >
> > Please open the C++ or Delphi Httpstst demo and add these lines to the
> > end of the onrequestdone event:
> >
> >
> >if(RqType == httpHEAD)
> >SslHttpCli1->GetASync();
> >
> > and click "head". You will see that even the onrequestdone is not the
> > final event before becoming ready as it gives "component not ready".
> >
> > Regards,
> >
> > SZ
> >
> > On 5/12/09, Arno Garrels  wrote:
> > > Fastream Technologies wrote:
> > > > I am now using v7! Upgraded yesterday, forgot to let you know...
> > >
> > > And still the same problem? If true than please check value of
> > > FReceiveLen before the request is it zero?
> > >
> > > --
> > > Arno Garrels
> > >
> > > >
> > > > On 5/11/09, Arno Garrels  wrote:
> > > >> Fastream Technologies wrote:
> > > >>> In my case, I get data from first head being pending in second
> > > >>> head/GET. I know it is weird/rare case yet this customer was annoyed
> > > >>> and he led us to panic even more...
> > > >>
> > > >> From memory, V7 got a fix/change related that wasn't backported to
> > > >> V6. Give me a breath I might recall tomorrow what it was.
> > > >>
> > > >> --
> > > >> Arno Garrels
> > > >>
> > > >>>
> > > >>> On 5/11/09, Arno Garrels  wrote:
> > >  Fastream Technologies wrote:
> > > > Arno,
> > > >
> > > > Yesterday I sent you a wrong url! This new url is the direct IIS
> > > > 5.1 url which returns body in HEAD response and it confuses
> > > > thttpcli.
> > > 
> > >  It does not, just tested with V7 Httptst demo. Multiple GET/HEAD
> > >  requests w/o any problem!
> > > 
> > >  --
> > >  Arno Garrels
> > > 
> > > 
> > >  --
> > >  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
> > > 
> > > >>>
>


-- 
Gorkem Ates
Fastream Technologies
Software IQ: Innovation & Quality
www.fastream.com | Email: supp...@fastream.com | Tel: +90-312-223-2830
| MSN: g_a...@hotmail.com
Join IQWF Server Yahoo group at http://groups.yahoo.com/group/IQWFServer
Join IQ Reverse Proxy Yahoo group at
http://groups.yahoo.com/group/IQReverseProxy
-- 
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


Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-13 Thread Fastream Technologies
Did you do what I wrote below? With ICS v7, it raises an exception
(Component not ready!).

On 5/12/09, Fastream Technologies  wrote:
> Hello,
>
> Please open the C++ or Delphi Httpstst demo and add these lines to the
> end of the onrequestdone event:
>
>
>if(RqType == httpHEAD)
>SslHttpCli1->GetASync();
>
> and click "head". You will see that even the onrequestdone is not the
> final event before becoming ready as it gives "component not ready".
>
> Regards,
>
> SZ
>
> On 5/12/09, Arno Garrels  wrote:
> > Fastream Technologies wrote:
> > > I am now using v7! Upgraded yesterday, forgot to let you know...
> >
> > And still the same problem? If true than please check value of
> > FReceiveLen before the request is it zero?
> >
> > --
> > Arno Garrels
> >
> > >
> > > On 5/11/09, Arno Garrels  wrote:
> > >> Fastream Technologies wrote:
> > >>> In my case, I get data from first head being pending in second
> > >>> head/GET. I know it is weird/rare case yet this customer was annoyed
> > >>> and he led us to panic even more...
> > >>
> > >> From memory, V7 got a fix/change related that wasn't backported to
> > >> V6. Give me a breath I might recall tomorrow what it was.
> > >>
> > >> --
> > >> Arno Garrels
> > >>
> > >>>
> > >>> On 5/11/09, Arno Garrels  wrote:
> >  Fastream Technologies wrote:
> > > Arno,
> > >
> > > Yesterday I sent you a wrong url! This new url is the direct IIS
> > > 5.1 url which returns body in HEAD response and it confuses
> > > thttpcli.
> > 
> >  It does not, just tested with V7 Httptst demo. Multiple GET/HEAD
> >  requests w/o any problem!
> > 
> >  --
> >  Arno Garrels
> > 
> > 
> >  --
> >  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
> > 
> > >>>
-- 
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