Re: [twsocket] UDP Newbie...

2008-04-01 Thread Ionut Muntean
Please post your code. I assure you, everything is working great in ICS ... / Ionut Muntean zayin wrote: > Hello Wilfried, > > >> Are you sure you filled in the correct IP? >> > > Yes. > > >> Do you create all in code or do you have TWSocket com

Re: [twsocket] FTP Put using streams

2008-04-21 Thread Ionut Muntean
Harold Holmes wrote: > I have a bitmap in a timage and I'd like to send that image to the server > without saving the file to the local harddrive first. Is it possible to use > a stream to do this? > > Best regards, > Harold > Yes, you can ... [code] ftp.hostname := 'your_host'; ftp.username :

[twsocket] Strange

2005-12-06 Thread Ionut Muntean
sults. Please help. / Ionut Muntean -- 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] Strange

2005-12-06 Thread Ionut Muntean
gs on both machines? Maybe the DNS on the second machine is having a hard time resolving the name (i.e. a "dead" or not available DNS server specified first). - Original Message - From: "Ionut Muntean" <[EMAIL PROTECTED]> To: Sent: Tuesday, December 06, 2005 3:31 P

Re: [twsocket] Strange

2005-12-06 Thread Ionut Muntean
The telnet connection on the specified port on the server is working well. :( / Ionut Muntean -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Francois Piette Sent: 6 decembrie 2005 05:23 PM To: ICS support mailing Subject: Re: [twsocket] Strange >

Re: [twsocket] Strange

2005-12-06 Thread Ionut Muntean
Excuse my ignorance, but please, is there a packet monitor in Window$ XP? I am a Linux user, and now I am forced to develop an windows app. :( / Ionut Muntean -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Florin Vancea Sent: 6 decembrie 2005 06:24 PM

Re: [twsocket] Strange

2005-12-06 Thread Ionut Muntean
am on the incoming socket. It works very well, as it is also used for the (*nix users wellknowed) "qmail". 10x again, / Ionut Muntean -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Francois PIETTE Sent: 6 decembrie 2005 07:56 PM To: ICS suppor

Re: [twsocket] Strange

2005-12-06 Thread Ionut Muntean
The problem is solved. :) The server is trying to get ident information from the client machine when a connection is established, and since there is no response from the client machine ... it waits until timeout. Thanks to all, / Ionut Muntean -Original Message- From: [EMAIL PROTECTED

Re: [twsocket] Strange

2005-12-07 Thread Ionut Muntean
hat's it. / Ionut Muntean P.S. Romania? On Wed, Dec 07, 2005 at 09:18:31AM +0200, Florin Vancea wrote: > I'm glad that it's solved, but please elaborate, 'cause you made me curious: > You said 3 packets. Where is the ident probe? > How did you figure it out? > &

[twsocket] Discard any bytes in the read buffer

2005-12-07 Thread Ionut Muntean
Hi, Is there any possibility to discard any bytes that are in the read buffer? 10x / Ionut Muntean -- 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] File download

2005-12-07 Thread Ionut Muntean
s no such a thing... > Ann > > -- > 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 -- Ionut Muntean Tel.: 0368-100777, 0722-295205 -- To unsubscribe

[twsocket] ICS and Free Pascal

2005-12-10 Thread Ionut Muntean
Hi all, Is anyone have succesfully using ICS with FPC? I would like to write some programs in FP and as i am an ICS addicted user ... 10x -- Ionut Muntean -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our

Re: [twsocket] ICS and Free Pascal

2005-12-13 Thread Ionut Muntean
Thank you Marco. So, console programs should compile. This is what I'm interested in. I will give it a try. Where are the patches u mentioned? / Ionut Muntean -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marco van de Voort Sent: 13 12 2005 19:

Re: [twsocket] HttpCli.RcvStream - how to clear?

2005-12-17 Thread Ionut Muntean
Try RcvStream.Position := 0; when resetting ... If you set it to nil, it is obvious you'll get Access Violations. / IM Me wrote: > Hi > I noticed that if I'm not doing anything with RCVStream of HTTPCli > in requests im getting Stream with data from previous requests that > were made on the com

[twsocket] What is wrong in this code?

2006-02-06 Thread Ionut Muntean
s executed from OnClientDataAvailable of an TWSocketServer. When the execution reach the "repeat .. until SentOk", on ProcessMessages the code is reentered a second time. What am I doing wrong? 10x, Ionut Muntean -- To unsubscribe or change your settings for TWSocket mailing list please goto http

Re: [twsocket] What is wrong in this code?

2006-02-06 Thread Ionut Muntean
Thanks Dod for your quick response. In OnClientDataAvailable there is a basic command parser, that receives data from the peer ... / Ionut Muntean Dod wrote: > Don't know but did you "Receive" data before ProcessMessage ? > > OnDataAvailable will be triggered unti

Re: [twsocket] What is wrong in this code?

2006-02-06 Thread Ionut Muntean
Dist; Rec.count := RecCount; Send(@Rec, SizeOf(TRec)); Query.Next; end; The code is still entering 2 times ... :( / Ionut Muntean Wilfried Mestdagh wrote: > Hello Ionut, > > >>The code is executed from OnClientDataAvailable of an TWSocketServer.

Re: [twsocket] What is wrong in this code?

2006-02-06 Thread Ionut Muntean
c(true); > Rec.AllDist := Rec.AllDist - Dist; > Rec.count := RecCount; > Send(@Rec, SizeOf(TRec)); > Query.Next; >end; > . > > --- > Rgds, Wilfried [TeamICS] > http://www.overbyte.be/eng/overbyte/teamics.html > http

[twsocket] Udp and WSocketS

2006-02-10 Thread Ionut Muntean
Hi, I'm trying to build an udp server using TWSocketServer component. Source compileok, server is listening on the specified udp port, but OnClientConnected and OnClientDataAvailable is not called. TCP works fine with the same code. Are there any special things I have to do for udp? 10x

[twsocket] multipart/x-mixed-replace

2006-09-20 Thread Ionut Muntean
Hi, The question is simple: has anyone succeded to serve multipart/x-mixed-replace jpeg streams with Httpserver? If so, how? Thank you, Ionut Muntean -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our