|
|
Question : PHP Soap Error
|
|
hello there,
i am trying to use a payment gateway.when i run this test code.i get this output.in the supported types section below i get an error.saying this method is not supported,but i have been given this method by the service provider.also in the output of the soap i get some error what is that.please help me to solve this problem
\the output i get is
Available Methods
string verify(int $trmID, string $userID, string $Pass, string $datetime, string $hash, long $amunt) string executeservice(int $trmID, string $userID, string $Pass, string $datetime, long $SaleCode, long $amunt, string $MTI, string $ProccCode, long $trnsID, string $PURl) string refund(int $trmID, string $userID, string $Pass, string $datetime, string $returnhash, long $amunt, long $trnsID) string StlmMrch(int $trmID, string $userID, string $Pass, string $datetime, long $TxnAllCut, long $FinalAmunt, long $Salecunt, long $SaleAmunt, long $RetCunt, long $RetAmunt)
Supported Types
Array ( [trmID] => 233 [userID] => User [Pass] => 1111 [datetime] => [SaleCode] => [amunt] => [MTI] => 0100 [ProccCode] => 000000 [trnsID] => 0 [PURl] => ) SoapFault exception: [Server.userException] No such operation 'executeservice' in /usr/local/www/data-dist/aj/testsoap1.php:36 Stack trace: #0 /usr/local/www/data-dist/aj/testsoap1.php(36): SoapClient->__soapCall('executeservice', Array) #1 /usr/local/www/data-dist/theme.php(14): include('/usr/local/www/...') #2 {main} --------------------------------------------------------------------------------
http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://webservices" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
102 | mID> User 0000
0100 000000ode> 0sID>
--------------------------------------------------------------------------------
http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
Server.userExceptionltcode> No such operation 'executeservice'ing>
http://xml.apache.org/axis/">svnpspname>
Answer : PHP Soap Error
|
|
firstly, if you soap service has wsdl you could parse that and see what methods ( functions ) does it support - maybe it's just a "case sensitive" problem. if it doesn't you should contact your service provider and try to get a better ( detailed ) description of how to use this service properly.
Do you use php5 soap extension? if yes, look at this article on zend, it should help yu some.
http://devzone.zend.com/node/view/id/689#Heading4
|
|
|
|
|