- I am doing some experiment on using webpage to call functions provided by OCX file (FaceServerSdk.ocx) (I am using PHP COM object)
Of course I have registered the OCX file using regsrv32
//One of the function provided to start its service and listen on port 30000
$obj->C_ServerInit(30000,0);
I have created a simple php file to create COM object and tried to use its functions, however, from "netstat", it only run for few second then killed.
(No error showing on php web page)
So I check the event viewer, it gave me this:
<Event xmlns="**http://schemas.microsoft.com/win/2004/08/events/event**">
-
<System>
<Provider Name="Windows Error Reporting" />
<EventID Qualifiers="0">1001</EventID>
<Level>4</Level>
<Task>0</Task>
<Keywords>0x80000000000000</Keywords>
<TimeCreated SystemTime="2016-07-05T03:18:19.000000000Z" />
<EventRecordID>83322</EventRecordID>
<Channel>Application</Channel>
<Computer>HP-PC55</Computer>
<Security />
</System>
-
<EventData>
<Data>50</Data>
<Data>5</Data>
<Data>BEX</Data>
<Data>無法使用</Data>
<Data>0</Data>
<Data>httpd.exe</Data>
<Data>2.4.17.0</Data>
<Data>561cc534</Data>
<Data>C_FACE~1.OCX_unloaded</Data>
<Data>0.0.0.0</Data>
<Data>5379e970</Data>
<Data>77b3ee3e</Data>
<Data>c0000005</Data>
<Data>00000008</Data>
<Data />
<Data>C:\Users\HP\AppData\Local\Temp\WER7C33.tmp.WERInternalMetadata.xml</Data>
<Data>C:\Users\HP\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_httpd.exe_17df7ec18c858ffcc2c52b15c9bba75142ee6130_1101937a</Data>
<Data />
<Data>0</Data>
<Data>1b4e03b7-425f-11e6-8534-e839354c4871</Data>
<Data>0</Data>
</EventData>
</Event>
Can anyone explain it to me what cause this error happened?