[twsocket] Cathing window messages for HttpSrv

2008-03-18 Thread Bjørnar Nielsen
I'm using the THttpSrv in a thread, and want to catch the windows message to the server. How is this possible? My messagepump int the execute of the thread is like this: while(!Terminated && GetMessage(&msg, 0, 0, 0)) { switch(msg.message) { case WM_CUSTOM_SET_SERVER_SETTINGS:

[twsocket] Delphi version

2008-03-18 Thread Jose Alberto Ortega Rojas
Hi to all Wich Delphi version i need for use ICS??? thanks Jose Alberto Ortega Rojas Consultores en Sistemas Software, S.C. Fco. Sarabia 1403 Col. Primero de Mayo Cd. Madero, Tamaulipas, MEXICO CP 89450 Tel. 52 (833) 210-44-55 [EMAIL PROTECTED] www.consis.com

Re: [twsocket] Intercept Http Request Headers and Alter Them

2008-03-18 Thread RTT
This is a very simple parse solution, but works. HeaderList := TStringList.Create; HeaderList.NameValueSeparator := ':'; HeaderList.Text := YourHeaderString; //must be a string with header items delimited by carriage return and line feed, as it came in the raw

Re: [twsocket] IP Camera

2008-03-18 Thread zayin
For anyone interested in the IP Camera quest. It is a SkpyIPCam310. I ended up using GetASync with http:///goform/video. Thanks to all who commented. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Éric Fleming Bonilha Sent: Friday, March 14,

[twsocket] Intercept Http Request Headers and Alter Them

2008-03-18 Thread wayne forrest
I am looking for a way to PARSE and ALTER http request headers. Currently I have the Header in a STRING, and want to ADD Headers if they do not EXIST. I am not sure what Class to use: I have looked at var web : TWebRequest; web := TWebRequest.Create; web.Content := s; // set the Header , not ev