Results 1 to 2 of 2

Thread: PHP Function

  1. #1
    Join Date
    Jun 2010
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default PHP Function

    Hello
    I'm trying to create a web service which retruns a value,I'm using this code and need some help with the php code.

    1-I uploaded 'lib/nusoap' from http://sourceforge.net/projects/nusoap/


    2-Then i created Request.php contains
    PHP Code:
    <?php
    require_once('lib/nusoap.php');
    $c = new soapclient('http://www.o-survey.com/ragy/Response.php'); //creation of object for soap
    $name $c->call('getfirstname',array('id' => '1'));
    echo 
    "The firstname for id '1' is --- "$name;
    ?>
    3-Then i created Response.php contains:

    PHP Code:
    <?php
    function getfirstname($id) {

    return 
    "ragy";

    }

    require(
    'lib/nusoap.php');
    $server = new soap_server();
    $server->configureWSDL('details''urn:firstname');
    $server->register("getfirstname",
    array(
    'userid' => 'xsd:firstname'),
    array(
    'name' => 'xsd:lastname'),
    'urn:lasstname',
    'urn:lastname#getfirstname');

    $HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA)
    $HTTP_RAW_POST_DATA '';
    $server->service($HTTP_RAW_POST_DATA);
    ?>
    4- When executing the "http://www.o-survey.com/ragy/Request.php"
    the error appear :

    Internal Server Error

    The server encountered an internal error or misconfiguration and was unable to complete your request.

    Please contact the server administrator, webmaster@o-survey.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

    More information about this error may be available in the server error log.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

  2. #2
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    I'm not sure why you're using SOAP for this, but...

    anyway, does your PHP have the libxml and SOAP extensions installed?
    http://us2.php.net/manual/en/book.soap.php

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •