Ok, I have a made a SOAP server to interact with a internal database of ours. While the soap server does behave properly with Java and .NET based SOAP clients, it is not behaving properly with PHP's built in SOAP client. The odd part is it is only 1 function in the SOAP server that php seems to be having a problem with. The other methods in the server seem to work just fine.
Here is my PHP Code:
try
{
if (class_exists("SoapClient"))
{
$ops = array(
'soap_version'=>SOAP_1_1,
'cache_wsdl' => WSDL_CACHE_NONE,
'features' => SOAP_SINGLE_ELEMENT_ARRAYS,
'trace' => 1,
'exceptions' => 1
);
$client = new SoapClient($products_settings['service_url'], $ops);
$login = array(
'chain' => $products_settings['service_chain'],
'apiuser' => $products_settings['service_username'],
'password' => $products_settings['service_password'],
);
$response = $client->CountProducts(array('auth' => $login, "where" => $where));
if ($response->Products->Status == "OK")
{
if ($response->Products->Count > 20)
{
$start = 0 * $page;
$end = 5 * $page;
$limit = "LIMIT $start, $end";
}
$response = $client->GetProducts(array('auth' => $login, "where" => $where, 'limit' => $limit));
var_dump(response);
echo "<br>========================================================<br>";
echo htmlspecialchars($client->__getLastRequest());
echo "<br>========================================================<br>";
echo htmlspecialchars($client->__getLastResponse());
if ($response->Products->Status == "OK")
{
//Process list.
}
else
{
echo $response->Products->Message;
}
}
else
{
echo $response->Products->Message;
}
}
else
{
echo "We are sorry the site does not have the required libaries loaded";
}
}
catch (Exception $e)
{
echo "<h2>Exception Error!</h2>";
echo $e->getMessage();
}
Everything functions correctly until it gets to the GetProducts call. When I do "var_dump(response);" all I end up getting is "string 'response' (length=8)" nothing else. When it dump out the request set I see:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://api.domain.com/">
<SOAP-ENV:Body>
<ns1:GetProducts>
<ns1:auth>
<ns1:chain>2</ns1:chain>
<ns1:apiuser>username</ns1:apiuser>
<ns1:password>password</ns1:password>
</ns1:auth>
<ns1:where>`offline` = 0 AND `hidden` = 0</ns1:where>
<ns1:limit>LIMIT 0, 19</ns1:limit>
</ns1:GetProducts>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Then when i getLastResponse for the call I actually see:
<?xml version="1.0" encoding="ISO-8859-1"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 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:Body>
<GetProductsResponse xmlns="http://api.domain.com/">
<Products>
<Status>OK</Status>
<Message>Product Retrived Successfully.</Message>
<Exception/>
<List>
<id>1</id>
<name>Product 1</name>
<cost>3.99</cost>
<client_price>3.99</client_price>
<discountable>1</discountable>
<image></image>
<sku>400000000015</sku>
<tax_groups>{"type":"1","defualt":"1"}</tax_groups>
<tax_ratio>0.0000</tax_ratio>
<group_id>0</group_id>
<vendor_id>1</vendor_id>
<category_id>6</category_id>
<brand_id>6</brand_id>
<type_id>8</type_id>
<package_info>[]</package_info>
<location_id>-1</location_id>
<order_column>0</order_column>
<order_row>0</order_row>
<hidden>0</hidden>
<offline>0</offline>
</List>
<List>
<id>2</id>
<name>Product 2</name>
<cost>4.99</cost>
<client_price>4.99</client_price>
<discountable>1</discountable>
<image></image>
<sku>400000000015</sku>
<tax_groups>{"type":"1","defualt":"1"}</tax_groups>
<tax_ratio>0.0000</tax_ratio>
<group_id>0</group_id>
<vendor_id>1</vendor_id>
<category_id>6</category_id>
<brand_id>6</brand_id>
<type_id>8</type_id>
<package_info>[]</package_info>
<location_id>-1</location_id>
<order_column>0</order_column>
<order_row>0</order_row>
<hidden>0</hidden>
<offline>0</offline>
</List>
<List>
<id>3</id>
<name>Product 3</name>
<cost>0.99</cost>
<client_price>0.99</client_price>
<discountable>1</discountable>
<image></image>
<sku>400000000015</sku>
<tax_groups>{"type":"1","defualt":"1"}</tax_groups>
<tax_ratio>0.0000</tax_ratio>
<group_id>0</group_id>
<vendor_id>1</vendor_id>
<category_id>6</category_id>
<brand_id>6</brand_id>
<type_id>8</type_id>
<package_info>[]</package_info>
<location_id>-1</location_id>
<order_column>0</order_column>
<order_row>0</order_row>
<hidden>0</hidden>
<offline>0</offline>
</List>
<List>
<id>4</id>
<name>Product 4</name>
<cost>45.69</cost>
<client_price>45.69</client_price>
<discountable>1</discountable>
<image></image>
<sku>400000000015</sku>
<tax_groups>{"type":"1","defualt":"1"}</tax_groups>
<tax_ratio>0.0000</tax_ratio>
<group_id>0</group_id>
<vendor_id>1</vendor_id>
<category_id>6</category_id>
<brand_id>6</brand_id>
<type_id>8</type_id>
<package_info>[]</package_info>
<location_id>-1</location_id>
<order_column>0</order_column>
<order_row>0</order_row>
<hidden>0</hidden>
<offline>0</offline>
</List>
<List>
<id>5</id>
<name>Product 5</name>
<cost>23.39/cost>
<client_price>23.39</client_price>
<discountable>1</discountable>
<image></image>
<sku>400000000015</sku>
<tax_groups>{"type":"1","defualt":"1"}</tax_groups>
<tax_ratio>0.0000</tax_ratio>
<group_id>0</group_id>
<vendor_id>1</vendor_id>
<category_id>6</category_id>
<brand_id>6</brand_id>
<type_id>8</type_id>
<package_info>[]</package_info>
<location_id>-1</location_id>
<order_column>0</order_column>
<order_row>0</order_row>
<hidden>0</hidden>
<offline>0</offline>
</List>
</Products>
</GetProductsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Now the response it correct. As I've said it does process correctly in other SOAP client, but just not PHP's SOAP client. So I'm guessing I am missing a value or something in the SoapClient() options.
