Autor Beitrag
weissdochnix
Hält's aus hier
Beiträge: 3



BeitragVerfasst: So 20.04.03 14:38 
:?: ich möchte aus meinem programm eine message an einen icq-user senden-das hab ich schon einmal gesehen-diese message ist aber keine richtig message wie ich sie von meinem icq-client aus sende sondern sieht anderst aus-kann mir jemand helfen-sorry genauer kann ichs nicht beschreiben
FloSch
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 129



BeitragVerfasst: So 20.04.03 14:52 
lol... also an deinem Deutsch musst du noch einmal feilen! :lol:

Du meinst sicher WebPager[1].... entweder selber programmieren oder bei [url]www.torry.net[/url] nach ICQ suchen.

Grüße,
Florian :roll:

[1] wwp.icq.com/wwp/1,,c...00.html?Uin=deineuin
weissdochnix Threadstarter
Hält's aus hier
Beiträge: 3



BeitragVerfasst: So 20.04.03 17:47 
danke schon mal nicht schlecht-aber du kannst mir ja sicher auch sagen wie man das selber programmiert??
FloSch
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 129



BeitragVerfasst: So 20.04.03 18:12 
Hallo,

nimm die Indy - Komponenten zur Hand, schau dir an, wie die Daten aus dem Webformular übermittelt werden und überlege ein bisschen.

Gruß
Florian :roll:
Lehrling
Hält's aus hier
Beiträge: 7



BeitragVerfasst: Di 22.04.03 13:14 
Hallo,

Ich glaube was du meinst ist eine PagerMessage. Versuch einfach mal folgenden Code (natürlich UIN angleichen) im OnConnectEvent einer TClientSocketKomponente (Host = ''wwp.mirabilis.com'; Port = 80).

ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
procedure ClientConnected(Socket: TCustomWinSocket);
var
  IcqMsg: string;
  UIN: string;
begin
  IcqMsg := 'T.E.S.T';
  UIN := '123456789';

  IcqMsg := 'from='+MainForm.VictimName+'&'+
               'fromemail='+'john@isp.com'+'&'+
               'subject='+'S.U.B.J.E.C.T' + '&' +
               'body='+IcqMsg + '&' +
               'to='  + UIN + '&' + 
               'Send=Send+Message';

  IcqMsg := 'POST /scripts/WWPMsg.dll HTTP/1.1'+#13#10+
              'Accept: */*'+#13#10+
              'Accept-Language: en'+#13#10+
              'Content-Type: application/x-www-form-urlencoded'+#13#10+
              'Accept-Encoding: gzip, deflate'+#13#10+
              'User-Agent: ABC'+#13#10+
              'Host: 127.0.0.1'+#13#10+
              'Content-Length: '+IntToStr(Length(IcqMsg))+#13#10+
              'Connection: Keep-Alive'+#13#10+
              ''+#13#10+
              IcqMsg;
  Socket.SendText(IcqMsg);
end;



mfg Lehrling
weissdochnix Threadstarter
Hält's aus hier
Beiträge: 3



BeitragVerfasst: Di 22.04.03 18:46 
Titel: fast
funktioniert leider nicht obwohl keine fehlermeldun kommt-aber so in der art hab ich das auch schon gesehen-funtioniert das bei dir mit dem code??
thx
TheNeon
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 408

Windows
VS2010 C#
BeitragVerfasst: Mi 23.04.03 00:12 
...... geh doch mal auf [url]www.google.de[/url] und tipp folgendes ein:

Delphi ICQ Komponente Download

ich meine du findest was ............. hab ich ja auch :wink:
FloSch
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 129



BeitragVerfasst: Mi 23.04.03 00:36 
Hallo,

@weissdochnix: Beherzige einfach meinen obigen Beitrag und bewerkstellige dein Vorhaben mit den Indy-Komponenten.

Grüße
Florian :roll:

_________________
Windows 200 Prof. - Debian Sarge
D5 Prof & D6 PE - Kylix 3 Professional - Free Pascal