Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7044063
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:21:53+00:00 2026-05-28T02:21:53+00:00

How to catch an error from a SOAP? How can I avoid the fatal

  • 0

How to catch an error from a SOAP?

How can I avoid the fatal error and convert it to my own error.. In this example it’s a SERVER_BUSY

code

class Validate_vatno {
    private $client = null;

    private $options = array(
        'debug' => false
        );

    public function __construct(){
        $this->client = new SoapClient('http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl', array('trace' => true));
    }

    public function check($country, $vatno){
        $result = $this->client->checkVat(array(
            'countryCode' => $country,
            'vatNumber' => $vatno
            ));

        if(!empty($this->options['debug'])){
            echo '<pre>'.htmlentities($this->client->__getLastResponse()).'</pre>';
        }

        if($result->valid){
            list($denomination, $name) = explode(' ', $result->name, 2);

            return array(
                'denomination' => utf8_decode($denomination),
                'name' => ucwords(utf8_decode($name)),
                'address' => ucwords(utf8_decode($result->address)),
                );
        }
        else{
            return array();
        }
    }
}
$vatValidation = new Validate_vatno();

if($return = $vatValidation->check('DK', 33214944)){
    echo '<h1>valid one!</h1>';
    echo 'denomination: ' . $return['denomination']. '<br/>';
    echo 'name: ' . $return['name']. '<br/>';
    echo 'address: ' . $return['address']. '<br/>';
}
else{
    echo '<h1>Invalid VAT</h1>';
}

error

Fatal error: Uncaught SoapFault exception: [soapenv:Server] { 'SERVER_BUSY' } in /var/www/
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T02:21:54+00:00Added an answer on May 28, 2026 at 2:21 am

    Review how to handle exceptions

    Throwing and Catching a Exception

    <?php
    function inverse($x) {
        if (!$x) {
            throw new Exception('Division by zero.');
        }
        else return 1/$x;
    }
    
    try {
        echo inverse(5) . "\n";
        echo inverse(0) . "\n";
    } catch (Exception $e) {
        echo 'Caught exception: ',  $e->getMessage(), "\n";
    }
    
    // Continue execution
    echo 'Hello World';
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know how can I catch a mail error (error is displayed while
I got this from a Soap client request: Exception: SoapFault exception: [soap:Client] Server was
I'm trying to remove SOAP and ns2 nodes from this XML : <SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/envelope/
This coding i got from here. I get error in log cat view like
I am facing SIGEV with this malloc wrapper code, can anybody please help me?
I'm currently getting this error from an InvalidCastException [A]System.Data.Objects.ObjectResult`1[EDMXAssembly.ServiceStatus] cannot be cast to [B]System.Data.Objects.ObjectResult`1[EDMXAssembly.ServiceStatus].
I'm trying to get around this error I get from Microsoft Visual Studio 10
I'm trying to catch error messages returned from a mysql server on insert failure.
I can't understand, why I can't get http response without error from any url.
int somefunction(bool a) { try { if(a) throw Error(msg); return 2; } catch (Error

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.