Re: [twsocket] THttpCli not returning?

2011-04-11 Thread David Lewis
Arno, I'm running with V7 here, although possibly not the latest iteration of it. Is there anything recently new to this component that may affect this functionality? Also, I don't have an accessible TimeOut parameter that I can set. Is this internal to the component only? Or is this a new f

[twsocket] THttpCli not returning?

2011-04-11 Thread David Lewis
I have an application that retrieves a single image over HTTP from a video server every 60 seconds. This is does over GPRS so at times can be a little slow, but in general there are no issues. I'm using the THttpCli component to get the Get( ) the images within BDS2006, C++ flavour. However,

[twsocket] Correct termination logic

2011-02-14 Thread David Lewis
Hi, I am developing an application that uses both a TWSocketServer/TTcpSrvClient for TCP comms and a THttpCli to retrieve periodic images over HTTP. I'm doing this in C++ in BDS2006. All components are created (new) in code, so not present on the forms, and then deleted in class destructors.

Re: [twsocket] THttpServer POST

2010-09-10 Thread David Lewis
quot; + IntToStr(Body.Length()) + "\r\n\r\n"; // Send response back to sensor Stream->Write(Header.data(), Header.Length()); Stream->Write(Body.data(), Body.Length()); Stream->Seek(0, 0); ((THttpConnection *)Client)->DocStream =

[twsocket] THttpServer POST

2010-09-09 Thread David Lewis
I'm putting together a basic web server for a small application to communicate with. I have the GET event working as intended, but am having difficulty with the POST event. The event fires, but I can't seem to work out where to find the POST data... I tried: ((THttpConnection *)Client)->Rece

Re: [twsocket] Compiling ICSBCB100 project for ICS v5

2007-04-03 Thread David Lewis
I've just managed to update my system with BDS2006 and I am trying to get ICS installed correctly within this new IDE, under the C++ identity. I used the link "Download the latest ICS-V5 Distribution " on the ICS website today to get the latest stable sources. I then proceeded to follow the i

[twsocket] Testing (NM)

2006-11-08 Thread David Lewis
-- 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] IP Messages

2006-05-19 Thread David Lewis
Hi, I've done a lot of work before with serial communications, but it seems that things don't work as simply as RS232/485 in the IP world. I'm setting up a client/server situation using ICS's WSocket & WSocketServer. These modules need to be able to transfer lots of data blocks between each ot

Re: [twsocket] Just got my hands on BDS2006 BUT...

2006-04-20 Thread David Lewis
So ICS doesn't fully support C++ any more? Is this the official path now for ICS, or just a single opinion here? In which case, you should edit the front page of the website where it reads: "with /full source code/ for all *Delphi* and *C++Builder* versions." And yes. I am part of that 'minority'

Re: [twsocket] Any BCB users out there?

2006-03-08 Thread David Lewis
ng something here, or understanding the installation process incorrectly for this new environment... Dave Fastream Technologies wrote: > Hello Dave, > > Have you tried to install the latest beta of std and/or ssl ICS? I failed to > compile a project with it in BCB6. > > Bes

Re: [twsocket] Any BCB users out there?

2006-03-07 Thread David Lewis
I'm currently using BCB5, although currently reviewing BDS for a possible upgrade. For installation, I just unzip & then open IcsBcb50.bpk in the IDE & then compile from there. Dave Fastream Technologies wrote: > Hello, > > As far as I can remember, we are not the only BCB users here on this l

[twsocket] Port Access

2006-01-24 Thread David Lewis
Hi, I have a client service that connects and gathers data and then throws this data out in a stream on port 60500. This client is 3rd party and I cannot alter it. However, it is known to be working product. What I need to be able to do is connect to that stream stream of data on port 60500, a

Re: [twsocket] Email Failing

2005-11-15 Thread David Lewis
This application was written 18 months ago and has been running on-site ever since, so it is very likely it is running the ICS release that contained the Abort fault. I'll try recompiling the sources with the latest ICS release and see how that goes. Thanks, Dave Arno Garrels wrote: &

Re: [twsocket] Email Failing

2005-11-14 Thread David Lewis
you have logs indicating which one cause the break, and what error / >RqType it is ? > >I think in both cases you should call Abort(); > >--- >Rgds, Wilfried [TeamICS] >http://www.overbyte.be/eng/overbyte/teamics.html >http://www.mestdagh.biz > >Monday, November 14,

[twsocket] Email Failing

2005-11-14 Thread David Lewis
I've got an application that I wrote a while ago now that is starting to have some issues I need to look into. Basically, this application contains a process that regularly polls for emails (every 5 minutes) and gathers any available, stripping off up to 60 jpg attachements and processes them.

Re: [twsocket] Post Error?

2005-10-31 Thread David Lewis
replying ? >-- >[EMAIL PROTECTED] >http://www.overbyte.be > > > >- Original Message - >From: "David Lewis" <[EMAIL PROTECTED]> >To: "ICS support mailing" >Sent: Monday, October 31, 2005 10:11 AM >Subject: [twsocket] Post Error? > > >

[twsocket] Post Error?

2005-10-31 Thread David Lewis
When replying to a topic here, I received this reply (the mail seemed to still appear in the list though): This is the Postfix program at host jester.tesla.co.il. I'm sorry to have to inform you that your message could not be be delivered to one or more recipients. It's attached below. For fur

Re: [twsocket] OK to Receiving >2GB ?

2005-10-31 Thread David Lewis
1500 is the 'standard' MTU allocated. This is optimised for LAN However, most internet 'optimisers' tend to adjust this value based on your connection so this value is prone to change. (dial-up I believe is recommended to have an MTU of 576) There are programs out that that will read/set this v

Re: [twsocket] Client/Server

2005-09-07 Thread David Lewis
Further investigation has solved a few things... I was getting a ltitle confused by the data being sent by the component, and not by me. I wasn't expecting this data "Welcome to TcpSrv" so wasn't ready to handle it. I was also a little off-target by expecting my data to be sent at the time I u

Re: [twsocket] Client/Server

2005-09-06 Thread David Lewis
to have reliable communications. >> > >Should be very reliable. If you can provide some more detail of what the >problem is, then we all very glad to help. > >--- >Rgds, Wilfried >http://www.mestdagh.biz > >Tuesday, September 6, 2005, 10:55, David Lewis wrote: > &

[twsocket] Client/Server

2005-09-06 Thread David Lewis
I've been trying to sort out a stable client/server connection with ICS but I'm having a few difficulties, and I'm thinking that maybe my understanding of how it works may be a little wrong. Initially, I am building one application which can act as a client & server, and put one on the remote m