logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: ISAPI dll crashing
Author
opti2k4



Joined: 11 Jan 2013
Posts: 4
Location: Croatia, Split

PostPosted: Tue 29 Jan '13 10:44    Post subject: ISAPI dll crashing Reply with quote

Hello,

i have custom dll built with Delphi that used to work on IIS 5/6/7. After i migrated to apache, DLL started to crash after an hour or two and i have to restart the server. The error was something about bad header. Since the developer says DLL is handling reponses OK and i can't get anything with debug logging on apache side can i run DLL as CFG/FastCGI (not that versed with apache so maybe this question does not make sense)?

Thanks!
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7306
Location: Germany, Next to Hamburg

PostPosted: Tue 29 Jan '13 15:22    Post subject: Reply with quote

Via fcgid you can run the dll seprated from apache, when ever it crashes apache won't. I think you have to port that as exe not dll, but than you should be able to tun it over fcgid.

I posted an example config for PHP. Maybe you can use that for you program, too. I don't know if that programs needs to run in the server process.

http://pastebin.com/raw.php?i=rVDEGSdv
Back to top
opti2k4



Joined: 11 Jan 2013
Posts: 4
Location: Croatia, Split

PostPosted: Tue 29 Jan '13 15:57    Post subject: Reply with quote

Well this is pretty old application which is using CGI (executing exe files). Tried executing EXE files with fcgid but did not have success but CGI worked. I am rewriting .exe calls to this custom .dll.

Example:

Request: www.something.com/bla.exe=34rfrz4 is rewritten to www.something.com/bla.dll=34rfrz4

Rest of .exe files are executed by CGI.


When DLL starts to crash, apache is running just fine, only the calls to DLL return error and on apache restart helps. I am using apache 2.2 on windows 2k8R2.

There is also php involved which is running over PHP module just fine.
Back to top
opti2k4



Joined: 11 Jan 2013
Posts: 4
Location: Croatia, Split

PostPosted: Tue 29 Jan '13 20:39    Post subject: Reply with quote

Here is identical request where one works and one doesn't. I wasn't able to determine what is causing DLL to start returning bad headers to Apache.

Working request

Code:
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 112 bytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): GET /cgi-bin/ANLV_SV/ANLV_SV_user.exe?usgetfile=0&USemail=PGANRB100514&ProgVers=ANRB403&ReqANRBData=0 HTTP/1.1\r\n
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(113): mod_dumpio: dumpio_in [getline-blocking] 0 readbytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 25 bytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): Content-Type: text/html\r\n
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(113): mod_dumpio: dumpio_in [getline-blocking] 0 readbytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 29 bytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): Host: www.airnavsystems.com\r\n
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(113): mod_dumpio: dumpio_in [getline-blocking] 0 readbytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 24 bytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): Accept: text/html, */*\r\n
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(113): mod_dumpio: dumpio_in [getline-blocking] 0 readbytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 52 bytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): User-Agent: Mozilla/3.0 (compatible; Indy Library)\r\n
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(113): mod_dumpio: dumpio_in [getline-blocking] 0 readbytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 2 bytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): \r\n
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(143): mod_dumpio: dumpio_out
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_out (data-HEAP): 147 bytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_out (data-HEAP): HTTP/1.1 200 OK\r\nDate: Sat, 12 Jan 2013 11:13:13 GMT\r\nServer: Apache/2.2.23 (Win32) PHP/5.3.20\r\nContent-Length: 193725\r\nContent-Type: text/html\r\n\r\n
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(143): mod_dumpio: dumpio_out
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_out (data-TRANSIENT): 193725 bytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_out (data-TRANSIENT): 0- "NRG*NE?LP@//0//0***TF+VDA*?110*1?nnpm_af*WNNF+WKKJ**"NR?*0./1.//0///1/.*5A5304*TMX470*62..*143*6.*+/250**+15,5257*/22,52**2113********\v\b"NRG*NE?LP@//0//0***?5+@@@*@55J*1?nnpm_af*MR@B+WKKJ**"NR?*0./1.//0///1.4*.4?.46*ORP.1.*5.03*063*14*+/.02**+15,370/*/22,703**100.********\v\b"NRG*NE?LP@//0//0***TF+TX@*@516*1J_lbgle***"NR?*0./1.//0///1.2*5A4BB3*OD?415*2653*016*/47*+3/0**+15,2046*/22,57**/./4********\v\b"NRG*NE?LP@/./275***XI+MIB*@550*0R_ic+Mdd*LX??+TFFF**"NR?*0./1.//0///1.2*A6/66/*?LX13*02/3*014*03/*674**+15,.222*/52,447**.052********\v\b"NRG*NE?LP@/./275***TF+TOQ*?10.*2Apsgqc*LX??+UQQQ**"NR?*0./1.//0///1./*5A4A?0*HQR02/*12753*254*///*.**+13,370*/5/,/5**/004********\v\b"NRG*NE?LP@//2./7***TF+TOC*?10.*0Ajgk`*WQQW+WK?T**"NR?*0./1.//0///1/.*5A4A72*HQR405*12553*144*012*/762**+13,.53*/27,704**200/********\v\b"NRG*NE?LP@//2../***TF+TMO*@516*.L?*WQQW+WN?B**"NR?*0./1.//0///1.5*5A4A36*TMX222***/1*.**+12,7270*/16,304**1435********\v\b"NRG*NE?LP@//2../***TF+TER*?10.*.L?*WKKJ+WN?B**"NR?*0./1.//0///033*5A4@1@*HQR556***//2*.**+12,72/*/16,314**1502********\v\b"NRG*NE?LP@//1347***?4+CB?*?166*0Bcn_prspc*LX??+WQQW**"NR?*0./1.//0///1.2*674.C0*S?C2/1*42..*050*001*/314**+12,034*/3/,006**/330********\v\b"NRG*NE?LP@//2./7***TF+TEL*?10.*1?nnpm_af*WKKJ+WQQW**"NR?*0./1.//0///1/.*5A4@13*HQR306*//13.*152*4/*+/442**+12,/556*/3.,44**215/********\v\b"NRG*NE?LP@//1347***TF+?KO*@C0.*.Epmslb***"NR?*0./1.//0///1.2*5A./A.*?K0.0*03**37*.**+11,7257*/3/,/6**/20.********\v\b"NRG*NE?LP@//1347***TF+TL@*?10.*2Jctcjcb*WKKJ+WQQW**"NR?*0./1.//0///033*5A4A03*REU424*3.**04*.**+11,716/*/3/,/57**1014********\v\b"NRG*NE?LP@//1347***TF+TVS*@516*.Epmslb*W@@L+WQQW**"NR?*0./1.//0///1.2*5A4B?.*OD?331*03**.*.**+11,711*/3/,/55**//22********\v\b"NRG*NE?LP@//1347***7K+KPL*@550*0Bcn_prspc*WQQW+UKII**"NR?*0./1.//0///1//*53..6C*K?Q/2.*0/13.*163*1.5*0.26**+11,6056*/3.,342**/13.********\v\b"NRG*NE?LP@//0.65***XQ+XUN*@516*2Apsgqc*D?MP+D?EE**"NR?*0./1.//0///03/*..A24.*A?U7.3*14...*203*0/5*.**+10,36.3*01,5.0/**********\v\b"NRG*NE?LP@//2./7***TF+TEB*?10.*2Apsgqc*WQQW+W@AE**"NR?*0./1.//0///1.5*5A4@0@*HQR204*15.03*275*/5*.**+1/,2545*/30,3/6**/21.********\v\b"NRG*NE?LP@//2./7***TF+TOK*?10.*2Apsgqc*W@AE+WKKJ**"NR?*0./1.//0///036*5A4A7A*HQR227*13753*22.*0/5*.**+1.,721*/3/,/77**/005********\v\b"NRG*NE?LP@///3./***XQ+XU@*@516*1Bcqaclb*D?AR+D?MP**"NR?*0./1.//0///1.1*..A230*A?U//0*056..*255*21*+1042**+05,0202*05,016/**4424********\v\b"NRG*NE?LP@//2./6***TF+DBR*@C0.*2Jctcjcb***"NR?*0./1.//0///1.2*5A/7AD*DB214*02...*041*066*.**+04,71/*/3/,735**22/2********\v\b"NRG*NE?LP@///3./***XQ+M?K*@512*2Apsgqc*D?MP+D?AR**"NR?*0./1.//0///1.4*..?3/3*A?U42/5*11753*2/.*005*.**+04,675/*05,//46**3.12********\v\b"NRG*NE?LP@//2./6***TF+TEF*?10.*1?nnpm_af*W@RJ+W@@L**"NR?*0./1.//0///1.2*5A4@0D*HQR7.5*/0753*13.*/15*+0466**+04,63./*/30,4.5**4.21********\v\b"NRG*NE?LP@///30.***NR+KTE*?110*2Apsgqc*Q@EP+Q@N?**"NR?*0./1.//0///1.5*C25C6B*R?K13.7*17753*215*0.3*.**+04,433*+27,051/**********\v\b"NRG*NE?LP@//2./6***TF+DBU*@C0.*2Jctcjcb***"NR?*0./1.//0///1/.*5A/7B0*DB225*/3...*002*/55*.**+04,3613*/30,533**222.********\v\b"NRG*NE?LP@///276***NP+ESS*@516*2Apsgqc*Q@EJ+Q@N?**"NR?*0./1.//0///1/.*C26@..*EMJ/730*14...*225*004*.**+04,3111*+24,7.47**********\v\b"NRG*NE?LP@//0.64***XQ+XU?*@516*0Ajgk`***"NR?*0./1.//0///037*..A23/*A?U31/*04/3.*223*/02*/70.**+04,1625*06,554**4424********\v\b"NRG*NE?LP@///3./***XQ+QDJ*?1/7*2Jctcjcb*D?CJ+D?MP**"NR?*0./1.//0///1.1*..@.04*Q??254*600.*0//*133*.**+04,1166*06,0.05**/354********\v\b"NRG*NE?LP@///30.***NP+EGL*@515*0Ajgk`*Q@LD+Q@QN**"NR?*0./1.//0///1./*C25DC?*EJM/1./*1153.*23/*21*0//0**+03,6465*+25,7221**********\v\b"NRG*NE?LP@//2./6***XI+N@@*@516*2Apsgqc*LTTT+W@@L**"NR?*0./1.//0///1.2*A6/550*TMX/6.*16...*200*002*.**+03,6/74*/33,733**********\v\b"NRG*NE?LP@//2./6***TF+WG@*@516*2Apsgqc*W@@L+WNBL**"NR?*0./1.//0///1/.*5A5??/*TMX237*14...*3.0*1//*.**+03,3166*/3.,330**22.5********\v\b"NRG*NE?LP@///30.***NP+?O?*?R54*0Bcn_prspc*Q@AR+Q@QH**"NR?*0./1.//0///1/.*C26B3A*RG@3430*/.43.*0.2*4.*610**+03,2214*+26,6./6**********\v\b"NRG*NE?LP@///30.***NP+ESN*@516*0Ajgk`*Q@AR+Q@EP**"NR?*0./1.//0///1.5*C26A.1*EMJ/524*05.03*243*52*/570**+03,20/2*+26,.577**********\v\b"NRG*NE?LP@///30.***NP+ESH*@516*0Ajgk`*Q@EJ+Q@AR**"NR?*0./1.//0///1.5*C26764*EMJ/.2.*15403*250*45*/06.**+03,/16/*+25,1305**********\v\b"NRG*NE?LP@///675***NR+KSC*@55U*2Apsgqc*Q@EP+Q?CX**"NR?*0./1.//0///1/.*C26@?6*R?K6...*14...*232*000*.**+03,//60*+26,//2/**********\v\b"NRG*NE?LP@///276***NP+KWL*?10.*2Apsgqc*Q@N?+Q@KM**"NR?*0./1.//0///1.2*C26?B3*R?K1146*14753*244*23*.**+03,.661*+23,02//**********\v\b"NRG*NE?LP@///30.***NP+?RT*?R54*2Jctcjcb***"NR?*0./1.//0///1.5*C26A?D*?XS7742*/5753*03/*0/7*.**+02,4372*+26,165/**********\v\b"NRG*NE?LP@///30.***AA+@?H*?10.*0Ajgk`*Q@EP+QACJ**"NR?*0./1.//0///1/.*C6.2/?*J?L535*1.553*224*015*/506**+02,1313*+25,7..2**********\v\b"NRG*NE?LP@///276***NP+KWK*?1/7*1?nnpm_af*Q@HT+Q@QN**"NR?*0./1.//0///1.2*C2672D*R?K1.10*/53..*2.3*11*+/4..**+02,131*+24,637**********\v\b"NRG*NE?LP@///30.***NP+ERH*@516*2Apsgqc*Q@PH+Q@AR**"NR?*0./1.//0///1/.*C25D??*EMJ/24.*14...*202*014*.**+02,/675*+25,1125**********\v\b"NRG*NE?LP@///263***NP+ERR*@516*1?nnpm_af*Q@N?+Q@EP**"NR?*0./1.//0///1.2*C26..?*EMJ/605*/663.*126*/*+/570**+01,7140*+24,163/**********\v\b"NRG*NE?LP@///675***NP+KWC*?10.*0Bcn_prspc*Q@EP+Q@AR**"NR?*0./1.//0///1/.*C261BA*R?K1111*0.003*2.3*011*/762**+01,606*+25,/373**********\v\b"NRG*NE?LP@///3./***CR+?JJ*@541*2Apsgqc*F??@+D?MP**"NR?*0./1.//0///1.7*.2../0*CRF6.7*14...*243*/7.*.**+01,6/20*07,.661**********\v\b"NRG*NE?LP@///276***L120SN*@541*1?nnpm_af***"NR?*0./1.//0///1.5*?1A46A*SNQ2/1*/4003*13/*125*+/250**+01,4457*+24,5601**********\v\b"NRG*NE?LP@///276***NR+RKD*?1/7*1J_lbgle*Q@AD+Q@QN**"NR?*0./1.//0///1/.*C2654@*R?K10./*0303*/1/*//5*+034**+01,4017*+24,4373**********\v\b"NRG*NE?LP@///276***NP+K@T*?1/7*2Jctcjcb*Q@QN+Q@PH**"NR?*0./1.//0///1/.*C26/77*R?K17/0*3703*0.2*56*.**+01,4.73*+24,3565**********\v\b"NRG*NE?LP@///276***NP+ESB*@516*2Apsgqc*Q@PH+Q@QN**"NR?*0./1.//0///017*C264/0*EMJ/3//*04...*213*035*.**+01,3/12*+22,451/**********\v\b"NRG*NE?LP@///675***NP+ERP*@516*1?nnpm_af*Q@AR+Q@QN**"NR?*0./1.//0///1/.*C26..7*EMJ/1/7*3.03*/52*/20*+546**+01,3.4*+24,52.6**********\v\b"NRG*NE?LP@///276***NP+ERD*@516*0Bcn_prspc*Q@EP+Q?@C**"NR?*0./1.//0///1.2*C25D3.*EMJ5456*5203*047*01/*/06.**+01,3.05*+24,2607**********\v\b"NRG*NE?LP@///263***NP+T@C*@516*1J_lbgle*Q@AE+Q@EP**"NR?*0./1.//0///1.5*C26.@?*EJM/.3/*1243*/20*51*+5.2**+01,2306*+24,317**********\v\b"NRG*NE?LP@///263***NP+EEJ*@516*1?nnpm_af*Q@AD+Q@QN**"NR?*0./1.//0///1/.*C26/B5*EMJ/041*4103*010*/.6*+226**+01,23.7*+24,6255**********\v\b"NRG*NE?LP@///263***NP+?VL*C/7.*2Apsgqc***"NR?*0./1.//0///1.2*C26B?C*RG@34.1*12...*2/1*040*.**+01,2123*+23,.5/0**********\v\b"NRG*NE?LP@///276***NR+KVE*?10/*0Bcn_prspc*Q@EP+Q@PD**"NR?*0./1.//0///1.5*C263?D*R?K13.2*6503*051*//*002.**+01,1003*+24,0136**********\v\b"NRG*NE?LP@///263***NP+EEU*@516*1?nnpm_af*Q@RC+Q@EP**"NR?*0./1.//0///1/.*C262D6*EJM/57/*74..*1/.*/30*+/4..**+01,/540*+24,62/1**********\v\b"NRG*NE?LP@///276***NP+?RC*?R54*0Bcn_prspc*Q@IN+Q@QP**"NR?*0./1.//0///1./*C26?@B*?XS21/.*65..*/72*031*674**+01,.665*+25,2.20**********\v\b"NRG*NE?LP@///276***NP+?RE*?R54*0Bcn_prspc***"NR?*0./1.//0///1/.*C26?D4*?XS22/5*/313.*0//*1.4*162**+01,.273*+26,.260**********\v\b"NRG*NE?LP@///263***NP+K?T*?10.*0Bcn_prspc*Q@EP+Q@AD**"NR?*0./1.//0///1.2*C25D0.*R?K1122*/5103*165*10*/506**+00,75.6*+24,.63/**********\v\b"NRG*NE?LP@//03.3***NP+ESR*@516*1?nnpm_af*Q@QN+Q@EJ**"NR?*0./1.//0///026*C26A.3*EMJ/160*6153*07/*54*+/2.6**+00,55/1*+21,5.66**********\v\b"NRG*NE?LP@///276***L570?L*@550*1?nnpm_af*IKG?+Q@EP**"NR?*0./1.//0///1/.*??@D6.*??J707*0..53*13/*/36*+/4..**+00,350/*+25,.773**********\v\b"NRG*NE?LP@///276***NR+KTL*?110*2Jctcjcb*Q@EJ+Q@EP**"NR?*0./1.//0///1/.*C26//7*R?K6.60*/2753*145*14.*.**+00,3030*+24,/752**********\v\b"NRG*NE?LP@//03.3***NP+KFT*?10.*2Jctcjcb*Q@PD+Q@EJ**"NR?*0./1.//0///1./*C26/7@*R?K1/37*/7...*121*031*.**+00,2767*+21,../3**********\v\b"NRG*NE?LP@///263***NR+RKA*?1/7*2Apsgqc*Q@QN+Q@@P**"NR?*0./1.//0///1/.*C263/?*R?K150.*11...*224*121*.**+00,134*+24,6050**********\v\b"NRG*NE?LP@///675***NP+?OB*?R54*0Bc
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_out (metadata-FLUSH): 0 bytes
[Sat Jan 12 11:13:13 2013] [debug] mod_dumpio.c(143): mod_dumpio: dumpio_out


Non working request

Code:
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 112 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): GET /cgi-bin/ANLV_SV/ANLV_SV_user.exe?usgetfile=0&USemail=PGANRB100514&ProgVers=ANRB403&ReqANRBData=0 HTTP/1.1\r\n
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(113): mod_dumpio: dumpio_in [getline-blocking] 0 readbytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 25 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): Content-Type: text/html\r\n
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(113): mod_dumpio: dumpio_in [getline-blocking] 0 readbytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 29 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): Host: www.airnavsystems.com\r\n
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(113): mod_dumpio: dumpio_in [getline-blocking] 0 readbytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 24 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): Accept: text/html, */*\r\n
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(113): mod_dumpio: dumpio_in [getline-blocking] 0 readbytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 52 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): User-Agent: Mozilla/3.0 (compatible; Indy Library)\r\n
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(113): mod_dumpio: dumpio_in [getline-blocking] 0 readbytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_in (data-HEAP): 2 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_in (data-HEAP): \r\n
[Sat Jan 12 15:12:33 2013] [error] [client 95.93.202.134] malformed header from script. Bad header=<h1>Internal Server Error 500<: anlv_sv_user.dll
[Sat Jan 12 15:12:33 2013] [warn] [client 95.93.202.134] ISAPI: HSE_STATUS_ERROR result from HttpExtensionProc(): C:/inetpub/wwwroot/cgi-bin/ANLV_SV/anlv_sv_user.dll
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(143): mod_dumpio: dumpio_out
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_out (data-HEAP): 202 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_out (data-HEAP): HTTP/1.1 500 Internal Server Error\r\nDate: Sat, 12 Jan 2013 15:12:33 GMT\r\nServer: Apache/2.2.23 (Win32) PHP/5.3.20\r\nContent-Length: 545\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(143): mod_dumpio: dumpio_out
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_out (data-HEAP): 545 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(74): mod_dumpio:  dumpio_out (data-HEAP): <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">\n<html><head>\n<title>500 Internal Server Error</title>\n</head><body>\n<h1>Internal Server Error</h1>\n<p>The server encountered an internal error or\nmisconfiguration and was unable to complete\nyour request.</p>\n<p>Please contact the server administrator,\n support@airnavsystems.com and inform them of the time the error occurred,\nand anything you might have done that may have\ncaused the error.</p>\n<p>More information about this error may be available\nin the server error log.</p>\n</body></html>\n
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_out (metadata-EOS): 0 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(143): mod_dumpio: dumpio_out
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_out (metadata-FLUSH): 0 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(143): mod_dumpio: dumpio_out
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_out (metadata-FLUSH): 0 bytes
[Sat Jan 12 15:12:33 2013] [debug] mod_dumpio.c(55): mod_dumpio:  dumpio_out (metadata-EOC): 0 bytes
Back to top
opti2k4



Joined: 11 Jan 2013
Posts: 4
Location: Croatia, Split

PostPosted: Wed 30 Jan '13 20:27    Post subject: Reply with quote

Hi,

i tried running DLL as FCGID instead ISAPI, but after it is loaded it starts returning errors. I mean when i try to load DLL itself over URL it loads fine but DLL is serving requests and for those requests apache returns error 503


[Tue Jan 29 15:05:04 2013] [warn] [client 200.171.140.42] ISAPI: HSE_STATUS_ERROR result from HttpExtensionProc(): C:/inetpub/wwwroot/cgi-bin/ANLV_SV/anlv_sv_user.dll
[Tue Jan 29 15:05:04 2013] [error] [client 86.6.135.38] malformed header from script. Bad header=<h1>Internal Server Error 500<: anlv_sv_user.dll


With ISAPI dll works for some time. Since i am not a developer can you maybe point me where to look for problem?


http://localhost/cgi-bin/ANLV_SV/ANLV_SV_user.exe?usgetfile=0&USemail=PGANRB111823&ProgVers=ANRB403&ReqANRBData=0

This should return something, with FCGI it load for few seconds and then i get nothing. Also i noticed the DLL is loading much slower with FCGID.

Thanks!
Back to top


Reply to topic   Topic: ISAPI dll crashing View previous topic :: View next topic
Post new topic   Forum Index -> Apache