Einzelnen Beitrag anzeigen

mjustin

Registriert seit: 14. Apr 2008
3.010 Beiträge
 
Delphi 2009 Professional
 
#1

madxnet - madExcept Reports im Web: Bugtracker-Integration

  Alt 31. Mär 2011, 11:24
madxnet ist eine Webanwendung, an die über das Internetprotokoll HTTP madExcept Bugreports gesendet und dort auch ausgewertet werden können.

Ein öffentlicher Testserver ist auf http://madxnet2.appspot.com/ erreichbar.

Beispiel zum Senden eines madExcept Bugreports an madxnet:

Delphi-Quellcode:
program madxnetTest;

{$APPTYPE CONSOLE}

uses
 madExcept, SysUtils;

procedure MyHandler(const exceptIntf: IMEException; var handled: boolean);
begin
 exceptIntf.MailViaMapi := False;
 exceptIntf.MailViaMailto := False;
 exceptIntf.UploadViaHttp := True;
 exceptIntf.HttpServer := 'http://madxnet2.appspot.com/newbugreport';
 exceptIntf.HttpAccount := 'test'; // public API account user name
 exceptIntf.HttpPassword := 'test'; // public API account password
 AutoSendBugReport(exceptIntf.BugReport, exceptIntf.ScreenShot, exceptIntf);
end;

begin
 madExcept.DetectConsole := false;

 RegisterExceptionHandler(MyHandler, stDontSync);

 StrToInt('this will raise an exception');
end.
Viele Grüße
Miniaturansicht angehängter Grafiken
madxnet.png  
Michael Justin
habarisoft.com

Geändert von mjustin (14. Dez 2011 um 06:10 Uhr)
  Mit Zitat antworten Zitat