The following attempt produced the error shown below:
<?php
include "ML.WS.IVisitor.php";
$Test=new MLWSIVisitor();
$Test->NewVisitor("222");
?>
Fatal error: Non-static method mysqli::init() cannot be called
statically, assuming $this from incompatible context in P:\GateKeeper
\services\StarRise\ML.WS.IVisitor.php on line 13
Call Stack:
0.0563 58344 1. {main}() P:\GateKeeper\services\StarRise
\AddVisitor.php:0
3.7743 1358688 2. MLWSIVisitor->NewVisitor(???) P:\GateKeeper
\services\StarRise\AddVisitor.php:4
However; if what you want to do is to make the SOAP call from your own
PHP solution to the generated solution you should not include our code
but rather implement a SOAP client in PHP (which there is built-in
support for).
Hope this helped,
Joar