I'm working on a very simple webservice
http://www.inertia.fi/userDetails/source
i have class that include 1 public variable and a function that uses that public variable to return information
now if i include the classes directly
$test = new myClass; $test->myVar = "hello"; $test->runFunc();
It returns it without any problems
if i use $client = new SoapClient('wsdl file here') with all the connectivity informations and types
the function works except it won't anymore recognize $client->myVar = "something", i tried taking var_dumps and echoing it but, it just simply vanishes. it returns absolutely nothing
BRs,
Oltsa