Hi. I'm in trouble here. I had a RPC server who gets functions call from a jscript lib.
How could I debug those functions??
Ex:
@client: <script> call(MyServer, "myFunc", [params]); </script>
@server:
(...)
case 'myFunc' : $obj = new obj();
$obj-> doMyFunc();
(...)
In that case I whant to be able to debug doMyFunc and *any* related code, like a $db-> doInsert() or whatever inside it.
How? I wonder why can't I just set a breakpoint on a file and get the debugger working on it every time it's processed.
Realy thank you in advance.
P.s: btw, its a GREAT product of yours