|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-22 10:05 UTC] sniper@php.net
[2005-11-22 10:59 UTC] vincent_verhoeven at hotmail dot com
[2005-11-22 11:53 UTC] vincent_verhoeven at hotmail dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 11:00:02 2025 UTC |
Description: ------------ Calling a COM dll returns a timeout Reproduce code: --------------- $obj = new COM( "Project1.Class1" ) or die("Unable to instantiate Project1"); echo "test=" . $obj->DoStuff(); // <-- GETTING A TIMEOUT HERE $stack = null; Expected result: ---------------- echo "test=" . $obj->DoStuff(); // <-- GETTING A TIMEOUT HERE This line should return a string value Actual result: -------------- echo "test=" . $obj->DoStuff(); // <-- GETTING A TIMEOUT HERE Getting a timeout after a while here.