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
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
//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
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
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
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,
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
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
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
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
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
;
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
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
+ 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
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
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
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
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
.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
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
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
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
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
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
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
25 matches
Mail list logo