Tuleap Community Edition development and releases are no longer public. You have until September 30th to download packages and sources in Tuleap project. You can contact the team if you need further assistance.

    •  
      request #8446 SOAP-ERROR: Parsing WSDL: Couldn't load from http://demo.tuleap.com
    Infos
    #8446
    kannan (kannanc)
    2015-09-28 09:05
    2015-09-26 15:11
    8579
    Details
    SOAP-ERROR: Parsing WSDL: Couldn't load from http://demo.tuleap.com
    $soap_option = array(
    'cache_wsdl' => WSDL_CACHE_NONE,
    'exceptions' => 1,
    'trace' => 1
    );

    $client_login = new SoapClient($host_login, $soap_option);
    $session_hash = $client_login->login($userName,$password)->session_hash;
    $client_tracker = new SoapClient($host_tracker, $soap_option);

    The connection was success at first time,Failed if i try one more tim
    Trackers
    8.6
    CentOS 5 + php53
    • [ ] enhancement
    • [ ] internal improvement
    Empty
    Stage
    Empty
    Declined
    2015-09-28
    Attachments
    Empty
    References

    Follow-ups

    User avatar
    Thomas Gerbet (tgerbet)2015-09-28 09:05
    Duplicate of request #8436.

    Please, do not open multiple requests for the same issue.

    • Status changed from New to Declined
    • Close date set to 2015-09-28
    User avatar
    kannan (kannanc)2015-09-27 05:56
    The below steps are helped me to resolve. Step 1: Replace the second argumrnt of a constructor SoapClient as

    $soap_option = array(
    'cache_wsdl' => WSDL_CACHE_DISK,
    'exceptions' => 1,
    'trace' => 1
    );
    Step:2 clear the files in /tmp directory Step3: Restart the server Step4: Run the file on browser Note: ini_set("soap.wsdl_cache_enabled", 0); This line should be called before create instance for SoapClient