I have no problems connecting to the server and getting information from it, but for certain functions, I'm getting NULL values returned. I've talked to the developer and he swears it's working right on his end, and it works fine when he uses it with a java client, so it must be something in the way php handles it.
Anyway, I'm using wsdl2php to generate classes based on his wsdl (which is another issue in itself), so I'm fairly certain that it's not a problem.
Take for example the "user" class built by wsdl2php...
Code: Select all
class user {
public $address; // string
public $address2; // string
public $city; // string
public $company; // company
public $email; // string
public $firstName; // string
public $id; // int
public $lastName; // string
public $phone; // string
public $postalCode; // string
public $roles; // string
public $state; // string
public $timeZone; // string
public $userName; // string
}Sorry for being a total noob at this. Can anyone point me in the right direction? What kind of information do you need to help diagnose this?
Thanks!