now this code
<?php
$client = new
SoapClient(
"http://www.flash-db.com/services/ws/locationByZip.wsdl"
);
print($client->getLocationByZip("13850"));
echo '<h2>Request</h2>';
echo '<pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
echo '<h2>Response</h2>';
echo '<pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
// Display the debug messages
echo '<h2>Debug</h2>';
echo '<pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
?>
give a return of
Object id #2
not really sure what that means. not even sure if its connecting