Ok I am at a brick wall... SO I am making a request successfully to a webservice in php, I can capture the response and using php.net am able to output the result/response in readable form
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetLoanDetailResponse xmlns="http://vendorsite.com/">
<GetLoanDetailResult><WEB><LOANDETAIL><acctrefno>31415</acctrefno><master_acctrefno>0</master_acctrefno><loan_number>TEST100001</loan_number><name>HILL ALAN</name><shortname>ALAN HILL</shortname><current_payoff_balance>14,358.83</current_payoff_balance><curr_date>07/14/2015</curr_date><curr_maturity_date>07/14/2021</curr_maturity_date><interest_accrued_thru_date>06/06/2017</interest_accrued_thru_date><current_note_amount>10,000.00</current_note_amount><current_principal_balance>10,000.00</current_principal_balance><current_interest_balance>4,358.83</current_interest_balance><current_fees_balance>0.00</current_fees_balance><current_late_charge_balance>0.00</current_late_charge_balance><current_perdiem>6.30</current_perdiem><current_interest_rate>23.00000</current_interest_rate><total_past_due_balance>5,651.05</total_past_due_balance><total_current_due_balance>5,651.05</total_current_due_balance><next_billing_date>06/18/2017</next_billing_date><days_past_due>662</days_past_due><current_pending>0</current_pending><current_impound_balance>0</current_impound_balance><last_payment_date>05/18/2017</last_payment_date><last_payment_amount>5</last_payment_amount><status_code>ACTIVE</status_code><loan_type>Term</loan_type><open_date>07/14/2015</open_date><last_activity_date>05/18/2017</last_activity_date><current_udf1_balance>0.00</current_udf1_balance><current_udf2_balance>0.00</current_udf2_balance><current_udf3_balance>0.00</current_udf3_balance><current_udf4_balance>0.00</current_udf4_balance><current_udf5_balance>0.00</current_udf5_balance><current_udf6_balance>0.00</current_udf6_balance><current_udf7_balance>0.00</current_udf7_balance><current_udf8_balance>0.00</current_udf8_balance><current_udf9_balance>0.00</current_udf9_balance><current_udf10_balance>0.00</current_udf10_balance><current_suspense_balance>0.00</current_suspense_balance><interest_method>SI</interest_method><term_char>Payments</term_char><term>72</term><term_due>72</term_due></LOANDETAIL></WEB></GetLoanDetailResult>
</GetLoanDetailResponse>
</soap:Body>
</soap:Envelope>
which is done using: echo "RESPONSE:\n" . htmlentities(str_ireplace('><', ">\n<", $soapClient->__getLastResponse())) . "\n";
I have tried simplexml_load_string() will not read soap response with "soap:" in the tags
and
How to drill into SOAP Namespaces with SimpleXML & PHP
trying How to convert SOAP response to PHP Array? again
And EVERY thing I can find in stack overflow and on php.net / google. I keep seeing references to a bug https://bugs.php.net/bug.php?id=48966 which I am now attempting to use to solve this... I really dont want to use dom seems like there should be a php only way to read this response... it is strange that when I call $soapClient->__getLastResponse()) I get
<WEB><LOANDETAIL><acctrefno>31415</acctrefno><master_acctrefno>0</master_acctrefno><loan_number>TEST100001</loan_number><name>Last Name F Name</name><shortname>Name</shortname><current_payoff_balance>14,358.83</current_payoff_balance><curr_date>07/14/2015</curr_date><curr_maturity_date>07/14/2021</curr_maturity_date><interest_accrued_thru_date>06/06/2017</interest_accrued_thru_date><current_note_amount>10,000.00</current_note_amount><current_principal_balance>10,000.00</current_principal_balance><current_interest_balance>4,358.83</current_interest_balance><current_fees_balance>0.00</current_fees_balance><current_late_charge_balance>0.00</current_late_charge_balance><current_perdiem>6.30</current_perdiem><current_interest_rate>23.00000</current_interest_rate><total_past_due_balance>5,651.05</total_past_due_balance><total_current_due_balance>5,651.05</total_current_due_balance><next_billing_date>06/18/2017</next_billing_date><days_past_due>662</days_past_due><current_pending>0</current_pending><current_impound_balance>0</current_impound_balance><last_payment_date>05/18/2017</last_payment_date><last_payment_amount>5</last_payment_amount><status_code>ACTIVE</status_code><loan_type>Term</loan_type><open_date>07/14/2015</open_date><last_activity_date>05/18/2017</last_activity_date><current_udf1_balance>0.00</current_udf1_balance><current_udf2_balance>0.00</current_udf2_balance><current_udf3_balance>0.00</current_udf3_balance><current_udf4_balance>0.00</current_udf4_balance><current_udf5_balance>0.00</current_udf5_balance><current_udf6_balance>0.00</current_udf6_balance><current_udf7_balance>0.00</current_udf7_balance><current_udf8_balance>0.00</current_udf8_balance><current_udf9_balance>0.00</current_udf9_balance><current_udf10_balance>0.00</current_udf10_balance><current_suspense_balance>0.00</current_suspense_balance><interest_method>SI</interest_method><term_char>Payments</term_char><term>72</term><term_due>72</term_due></LOANDETAIL></WEB>
Which I havent been able to explode to an array...
Notice the GetLoanDetailResult when I try anything with jsonencode/decode I get a key with this value and a sting with the rest of the data in a non delimited string...
The end GOAL is to put this in an array so I can pull the values and use them to populate parameters for new variables.
Using php7.0 on ubuntu server
Code to interact with response after How to convert SOAP response to PHP Array?
$loanDetail = var_dump($loanUpdate);
$response = preg_replace("/(<\/?)(\w+):([^>]*>)/", "$1$2$3", $soapClient->__getLastResponse());
$xml = new SimpleXMLElement($response);
$body = $xml->xpath('//SBody');
var_export($xml);
echo "======================<br />";
var_export($body);
echo "======================<br />";
$array = json_decode(json_encode((array)$body), TRUE);
print_r($array);
Returns
object(stdClass)#3 (1) {
["NLSGetLoanDetailResult"]=>
string(24) "7"
}
SimpleXMLElement::__set_state(array(
'soapBody' =>
SimpleXMLElement::__set_state(array(
'NLSGetLoanDetailResponse' =>
SimpleXMLElement::__set_state(array(
'NLSGetLoanDetailResult' => '7',
)),
)),
))======================
array (
)======================
Array
(
)