Search found 6 matches

by peteness
Thu Dec 25, 2014 7:13 pm
Forum: madExcept
Topic: MadExcept not detecting crash
Replies: 18
Views: 18887

Re: MadExcept not detecting crash

I'm seeing something similar. It's happening on the main thread, and it happens in the debugger, too, so I was able to track down the source. (1) and (2) don't seem to apply, and madExcept.InstallUnhandledExceptionFilter doesn't help. In my case, it appears to be happening on a non-visual component ...
by peteness
Tue Jul 24, 2012 5:11 am
Forum: madExcept
Topic: 4.0.2 HTTP Error submission with redirect
Replies: 8
Views: 6523

Re: 4.0.2 HTTP Error submission with redirect

Right on the final slash. That might just be something with my server, but I think a lot of servers might do 301's for a directory where the GET/POST leaves the / absent - for the sake of consistency (Google, in the past, counted these as two distinct pages). You might think about doing a HEAD first...
by peteness
Mon Jul 23, 2012 3:29 am
Forum: madExcept
Topic: 4.0.2 HTTP Error submission with redirect
Replies: 8
Views: 6523

Re: 4.0.2 HTTP Error submission with redirect

OK, I found the problem, and it's not quite as difficult as mapping a redirect. My ticket submission URL is a directory, and ends with a / (example: http://myserver.com/submit_a_ticket/). In V4, the trailing / is being stripped for some reason, so the request is coming across with /submit_a_ticket (...
by peteness
Thu Jul 19, 2012 5:48 am
Forum: madExcept
Topic: 4.0.2 HTTP Error submission with redirect
Replies: 8
Views: 6523

Re: 4.0.2 HTTP Error submission with redirect

I'll do some packet captures with 3.x-based version and 4.x-based version and do some comparisons - I'll get back to you once I have a chance to do that. Thanks for checking in to it!

- Pete
by peteness
Wed Jul 18, 2012 5:54 am
Forum: madExcept
Topic: 4.0.2 HTTP Error submission with redirect
Replies: 8
Views: 6523

4.0.2 HTTP Error submission with redirect

I have a long-standing error submission script on my web server that I was previously using. It's at a url similar to this: http://mywebpage.com/maderror_report/index.php It's secured with basic authentication, and previously did not use SSL, so I thought I'd do some testing with 4.0 and SSL. My Mad...
by peteness
Sun Mar 14, 2010 8:45 pm
Forum: madCodeHook
Topic: Hooking Direct3d without hooking Direct3DCreate9
Replies: 4
Views: 5834

Hooking Direct3d without hooking Direct3DCreate9

I'm working on a POC where I'm trying to hook into a running Direct3d application and draw on to its surface. Because the application is already running, hooking Direct3DCreate9 doesn't really help - it's being called before I'm hooked. There are several reasons why I can't hook in before Direct3d i...