Re: [twsocket] SOAP with httpcli??

2007-11-19 Thread Bevan Edwards
Hi Ulli, Yes, you can use the THttpCli - I have done this several times before. You just create the XML request and then use the THttpCli to POST it to the server. Regards, Bevan Ulrike Foeken wrote: > Hello everybody, > > Is it possible to send a SOAP request using the THttpCli

Re: [twsocket] Architectural question II

2007-03-20 Thread Bevan Edwards
Why not have a single thread responsible for doing that and then just have the TTimers use PostThreadMessage to request the update? Markus Humm wrote: > Hello, > > regarding my question from last weekend only a part was answered so far. > The thing is now: if several TTimers get fired at the sam

Re: [twsocket] Help in understanding Web Service

2007-02-03 Thread bevan
//localhost:6080 or http://pavallion8000:6080 Regards, Bevan -- 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] WinSock error 10035 with TWSocketServer

2007-01-17 Thread bevan
TWSocketClient, and the code should > then check for this. An alternative is to use a reference: > > TWSocketClient& Client = dynamic_cast(Sender); But Sender is a pointer - I didn't think you could typecast a pointer to a reference. Regards, Bevan -- To unsubscribe or change your

Re: [twsocket] WinSock error 10035 with TWSocketServer

2007-01-12 Thread bevan
sg = Client->ReceiveStr(); } Regards, Bevan -- 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] Need a simple SMTP example

2007-01-12 Thread bevan
errable. And as far as I´m > understanding it, I can concatenate the sync commands rather than > advancing to the next command in OnRequestDone - am I right here? Yes, that's right, you can just run one command after the other, possibly with appropriate error checking as well. Regards,

Re: [twsocket] WinSock error 10035 with TWSocketServer

2007-01-11 Thread Bevan Edwards
source of probelm is calling the message pump > (ProcessMessages and the like) directly or indirectly (For example with a > modal form or a simple ShowMessage). Hmmm, I'm pretty sure I'm not doing that, but I'll check just in case. It doesn't explain why doing the Ansi

[twsocket] WinSock error 10035 with TWSocketServer

2007-01-11 Thread Bevan Edwards
e any suggestions about what might be going wrong here? Regards, Bevan Edwards -- 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] SMTPClient

2006-08-31 Thread Bevan Edwards
Hi Carlos, Is the "Smtp1.port := 'smpt';" an error in your code or a typo? It should be "Smtp1.port := 'smtp';" Regards, Bevan lalin wrote: > Hello, > I use SMTPClient for sending a email since a server with default smtp > server of II

Re: [twsocket] BCB2006 Console mode application requires CONTROLS.OBJ

2006-04-15 Thread Bevan Edwards
the following in the .bdsproj file: Regards, Bevan Bevan Edwards wrote: > Hi all, > > I was hoping someone here may be able to help me with this. I have > created a console mode application and turned off "Build with Runtime > packages" - a sample of code e

Re: [twsocket] RE : RE : RE : THttpCli in TDatamodule (Console program)

2006-04-13 Thread Bevan Edwards
ile, or the one it found was the wrong version. You could try building with "build with packages" turned on and put the ICS BPL file into the same directory as your executable. Regards, Bevan -- To unsubscribe or change your settings for TWSocket mailing list please goto http

[twsocket] BCB2006 Console mode application requires CONTROLS.OBJ

2006-04-13 Thread Bevan Edwards
; cliSmtp->HeloSync(); cliSmtp->MailFromSync(); cliSmtp->RcptToSync(); cliSmtp->DataSync(); delete cliSmtp; cliSmtp = NULL; return 0; } --snip-- Regards, Bevan -- 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] NOFORMS with ICS v5 TTnCnx class

2006-04-12 Thread Bevan Edwards
ade those > changes ! In the history, it is dated march 11th. I downloaded and used the ICS v5 from your web site - that indicates that it's from 09/03/06. Where I can download the most recent version from? Regards, Bevan -- To unsubscribe or change your settings for T

Re: [twsocket] Compiling ICSBCB100 project for ICS v5

2006-04-12 Thread Bevan Edwards
+ object files" did, so that's alright. I usually build my applications with Packages and Dynamic RTL turned off, so that's why I needed the *.OBJ files. Regards, Bevan -- 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] Compiling ICSBCB100 project for ICS v5

2006-04-12 Thread Bevan Edwards
d Icmp.pas (provided) to create > the corresponding .obj files. I don't know why they are not compiled. Are > the files listed in the project ? No, neither of them are listed in the project. But then I noticed that ICMP is not listed in the ICSDel100 project either. Regards, Beva

[twsocket] Compiling ICSBCB100 project for ICS v5

2006-04-12 Thread Bevan Edwards
J, which I found in the output from the ICSDEL100 project, so I just used that. But the next is ICMP.OBJ, which doesn't appear to be anywhere. Has anyone had any success building this project? Do we need to build this project? Regards, Bevan -- To unsubscribe or change your settin

Re: [twsocket] NOFORMS with ICS v5 TTnCnx class

2006-04-12 Thread Bevan Edwards
Hi Francois, I have sent the file directly to your e-mail address, rather than the list. Regards, Bevan Francois PIETTE wrote: >>I was compiling ICS v5 with NOFORMS defined and found that the TTnCnx >>class is not properly setup for this - it uses WSocket.Allo

[twsocket] NOFORMS with ICS v5 TTnCnx class

2006-04-12 Thread Bevan Edwards
the original source files. Regards, Bevan -- 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] Any BCB users out there?

2006-04-01 Thread Bevan Edwards
.H declares these using #define's, while the OverbyteIcs*.hpp declares them as static const? Would it be feasible to have a #define that caused these "static const" definitions not to be made? Or is the problem more complex than that? Regards, Bevan -- To unsubscribe or change

Re: [twsocket] Any BCB users out there?

2006-04-01 Thread Bevan Edwards
e to fix it. Time is a bit of a factor for me too, but now I have both ICS v5 and ICS v6 packages built in BDS2006 (but only ICS v5 installed) and I can swap between them reasonably easily. So as I get a chance, I'll look into the ICS v6 problem further. Bevan -- To unsubscribe or change

Re: [twsocket] Any BCB users out there?

2006-04-01 Thread Bevan Edwards
Oh, I might switch to v5 then ;) Arno Garrels wrote: > Bevan Edwards wrote: > >>Hi Arno, >> >>I followed your instructions for installing ICS v6 (see below), but when >>I compile a project with a single HttpCli component on it, I get >>"Declarat

Re: [twsocket] Any BCB users out there?

2006-04-01 Thread Bevan Edwards
u mentioned that you compiled such a project without any problems. How did you get rid of these messages? Regards, Bevan Arno Garrels wrote: > Arno Garrels wrote: > >>Fastream Technologies wrote: >> >>>>I use BCB6 and BDS2006, but I haven't yet ventured dow

Re: [twsocket] Any BCB users out there?

2006-03-07 Thread Bevan Edwards
installing any of the latest releases. However, it's something I'm considering doing within the next month or so (depending on availability of my time). Regards, Bevan -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/lis

Re: [twsocket] SmtpCli problem with OnAttachContentType

2005-03-29 Thread Bevan Edwards
been updated/changed/fixed since that time when InitUUEncode was renamed. Thanks for that, it worked perfectly! :) Regards, Bevan Edwards -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http

[twsocket] SmtpCli problem with OnAttachContentType

2005-03-29 Thread Bevan Edwards
ExtractFileName(FileName) instead of the potentially new value in sFileName. Does anyone know how to fix these problems? -- Regards, Bevan Edwards -- 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