Re: [twsocket] ICS V6 Http Post problem

2006-03-23 Thread Frans van Daalen
- Original Message - From: Francois Piette [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Thursday, March 23, 2006 8:52 AM Subject: Re: [twsocket] ICS V6 Http Post problem In your application, are you calling the message pump somewhere ? Specially from one of

Re: [twsocket] ICS V6 Http Post problem

2006-03-23 Thread Francois Piette
My dll is using messageloop but not from one of the ics event handlers. Pay attention to indirect calls. Specially if you use a component for the user interface (for example to display a progress bar). Many components call the message pump to solve screen update problem (bad components written

Re: [twsocket] ICS V6 Http Post problem

2006-03-23 Thread Frans van Daalen
In your application, are you calling the message pump somewhere ? Specially from one of the ICS component event handler ? This will cause a lot of trouble with the events. btw: The message pump is typically Application.ProcessMessages, but can also be anythoing calling it indirectly (such

Re: [twsocket] Making a MT HTTP Server -- NEED HELP!

2006-03-23 Thread Fastream Technologies
Hello, I am not much familier with Delphi linker and the below errors persist. PLEASE DO NOTICE THAT THE CODE LINK I GAVE IS PASCAL AND YOU TOO CAN HELP. I am not in a good mood today and wish someone cared... Regards, SZ - Original Message - From: Fastream Technologies [EMAIL

Re: [twsocket] Making a MT HTTP Server -- NEED HELP!

2006-03-23 Thread Dan
Tried installing them in delphi but got errors with undeclared identifiers for all the authentication stuff. I must be using an older version of ICS than you. Dan - Original Message - From: Fastream Technologies [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent:

Re: [twsocket] Making a MT HTTP Server -- NEED HELP!

2006-03-23 Thread Dan
- Original Message - From: Dan [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Thursday, March 23, 2006 11:47 AM Subject: Re: [twsocket] Making a MT HTTP Server -- NEED HELP! Tried installing them in delphi but got errors with undeclared identifiers for all the

Re: [twsocket] Making a MT HTTP Server -- NEED HELP!

2006-03-23 Thread Fastream Technologies
I am using the Mar 9 beta. Thank you for trying. Best Regards, SZ - Original Message - From: Dan [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Thursday, March 23, 2006 1:47 PM Subject: Re: [twsocket] Making a MT HTTP Server -- NEED HELP! Tried installing them

Re: [twsocket] Making a MT HTTP Server -- NEED HELP!

2006-03-23 Thread Fastream Technologies
Hello, I know it does not work yet. But the problem is the linker errors. I might have been wrong in my statement that any delphi coder could see the error. So we need some BCB coders. I know it should be something easy for a person who is keen on coding Dlephi components for BCB but...

Re: [twsocket] Making a MT HTTP Server -- NEED HELP!

2006-03-23 Thread Wilfried Mestdagh
Hello, I am not much familier with Delphi linker and the below errors persist. Included them in a new project in delphi7, made a few changes and it compile fine here. Changes I did was because I dont think I have the latest v5 version, so I changed some in the uses clauses WSocket to

Re: [twsocket] Making a MT HTTP Server -- NEED HELP!

2006-03-23 Thread Fastream Technologies
Hello, No the problem is as Dan pointed out in the C++ linker. It compiles the Delphi part well as wellas the C++ part but gives the below linker errors. Regards, SZ - Original Message - From: Wilfried Mestdagh [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent:

[twsocket] ICS-V6: New beta ready

2006-03-23 Thread Francois PIETTE
I've just uploaded a new ICS-V6 beta. It include the POP3 component converted to the new version. Also include the missing dcr file from previous upload. All comments are welcome. btw: Only tested with Delphi 7 and Delphi 2006. -- [EMAIL PROTECTED] http://www.overbyte.be -- To unsubscribe or

[twsocket] FW: TWSocket Question

2006-03-23 Thread Philip Colley
I have managed to get the socket receiving the data block as suggested. But now I am having problems sending data to the server. I'm using exactly the same data that the application has previously successfully been using via a comport component. So I know the data block is correct. The equipment

Re: [twsocket] FW: TWSocket Question

2006-03-23 Thread Angus Robertson - Magenta Systems Ltd
My transmision block is this:- TRecBlock = record Transmission : Array[0..5] of char; DataType : Byte; Length : Byte; This should really be: TRecBlock = packed record unless you want the compiler adding blanks to move the elements to 32-bit boundaries. Or was the

[twsocket] Delphi 5 compilatiion error

2006-03-23 Thread KL Chin
Hi Francios, When I compile IcsSsl package file with Delphi 5.0 for version 4.x, I got a very strange error. (Fatal Error) IcsSSLEAY.pas (1047): Interbal error: URW533. Why could the cause? The line 1047 actually exceeded the file. FYI, for version 3.e, it had some missing files

Re: [twsocket] Delphi 5 compilatiion error

2006-03-23 Thread KL Chin
Hi Francios, I found the cause, at line 151 PSTACK_OF_X509_INFO = type PStack; //AG If change to PSTACK_OF_X509_INFO = PSTACK; //AG the error gone, problem I do not know is this the same? Regards KL Chin -Original Message- From: KL Chin