This is my soap code

try{ 
    $client = new 
        SoapClient( 
            "https://www.tntexpress.com.au/webservices/booking.svc?Wsdl" ,
            array('username' => "xxx",'password' => "yyy")
        ); $params = array(
      "SenderAccount" => 30017823,
      "SenderDetails" => "ROSEHILL 2142 NSW EAST",
      "CollectionDetails" => "ROSEHILL 2142 NSW EAST",
      "ReceiverDetails" => "MELBOURNE 3002 VIC",
      "ItemCount" => 1,
      "TotalWeight" => 10,
      "MaxLength" => 10,
      "MaxWidth" => 10,
      "MaxHeight" => 10,
      "PackagingCode" => '',
      "CollectionDateTime" => '',
      "CollectionCloseTime" => '',
      "ServiceCode" => '',
      "IsDangerousGoods" => '',
      "Payer" => 'S',
      "ReceiverAccount" => '',
      "Specialinstructions" => '',
      "CustomerReference" => '',
      "DangerousGoodsUN" => '',
      "DangerousGoodsPackingGroup" => '',
      "ConsignmentNoteNumber" => ''
    );
    $response = $client->__soapCall("SubmitBookingRequest", array($params));
print_r($response);
} catch (Exception $e) { 
    print  'Caught exception: '.  $e->getMessage(). "\n"; 
    file_get_contents("https://www.tntexpress.com.au/webservices/booking.svc?Wsdl");
}

error...
Caught exception: Could not connect to host

Recommended Answers

All 2 Replies

are you sure you have the correct URL? Are you sure they exist?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.