Function error - SOAP connector

Moderator: crythias

Locked
dtosun
Znuny newbie
Posts: 24
Joined: 12 Sep 2012, 14:00
Znuny Version: 4.0.13
Real Name: Dursun Tosun

Function error - SOAP connector

Post by dtosun »

Hi,

I need some ticket data to use in my report. I use web service to get it by using SOAP connector. My function is sometimes working but sometimes does not work and getting error. Anybody has this issue?

Error: Fatal error: Uncaught SoapFault exception: [soap:Client] Application failed during request deserialization: no element found at line 1, column 0, byte -1 at

My function :

Code: Select all

$close_working_time = $client->__soapCall("Dispatch", array($username, $password,
			"TimeObject", "WorkingTime", 
			"StartTime",     strtotime($rs["create_time"]),
			"StopTime",    strtotime($rs["close_time"])
			));
Locked