PHP SOAP传输文件

时间:2010-05-26 12:57:50

标签: php soap soap-client

我正在尝试学习如何使用PHP和SOAP在客户端和服务器之间传输文件(.zip文件)。目前我的设置看起来像这样:

require('libraries/nusoap/nusoap.php');

$server = new nusoap_server;

$server->configureWSDL('server', 'urn:server');

$server->wsdl->schemaTargetNamespace = 'urn:server';

$server->register('sendFile',
            array('value' => 'xsd:string'),
            array('return' => 'xsd:string'),
            'urn:server',
            'urn:server#sendFile');

但我不确定如果不是字符串,返回类型应该是什么?我正在考虑使用base64_encode

3 个答案:

答案 0 :(得分:13)

为了更清楚,我已经发布了server.php代码和client.php代码。请参阅以下内容:

## server.php ##

require_once('lib/nusoap.php'); //include required class for build nnusoap web service server

  // Create server object
   $server = new soap_server();

   // configure  WSDL
   $server->configureWSDL('Upload File', 'urn:uploadwsdl');

   // Register the method to expose
    $server->register('upload_file',                                 // method
        array('file' => 'xsd:string','location' => 'xsd:string'),    // input parameters
        array('return' => 'xsd:string'),                             // output parameters
        'urn:uploadwsdl',                                            // namespace
        'urn:uploadwsdl#upload_file',                                // soapaction
        'rpc',                                                       // style
        'encoded',                                                   // use
        'Uploads files to the server'                                // documentation
    );

    // Define the method as a PHP function

    function upload_file($encoded,$name) {
        $location = "uploads\\".$name;                               // Mention where to upload the file
        $current = file_get_contents($location);                     // Get the file content. This will create an empty file if the file does not exist     
        $current = base64_decode($encoded);                          // Now decode the content which was sent by the client     
        file_put_contents($location, $current);                      // Write the decoded content in the file mentioned at particular location      
        if($name!="")
        {
            return "File Uploaded successfully...";                      // Output success message                              
        }
        else        
        {
            return "Please upload a file...";
        }
    }

    // Use the request to (try to) invoke the service
    $HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';
    $server->service($HTTP_RAW_POST_DATA); 

=============================================== ======================

## client.php ##

require_once('lib/nusoap.php'); //include required class for build nnusoap web service server
   $wsdl="http://localhost:81/subhan/webservice3/server.php?wsdl";  // SOAP Server

   if($_POST['submit'])
   {
       $tmpfile = $_FILES["uploadfiles"]["tmp_name"];   // temp filename
       $filename = $_FILES["uploadfiles"]["name"];      // Original filename

       $handle = fopen($tmpfile, "r");                  // Open the temp file
       $contents = fread($handle, filesize($tmpfile));  // Read the temp file
       fclose($handle);                                 // Close the temp file

       $decodeContent   = base64_encode($contents);     // Decode the file content, so that we code send a binary string to SOAP
    }   

   $client=new soapclient($wsdl) or die("Error");   // Connect the SOAP server
   $response = $client->__call('upload_file',array($decodeContent,$filename)) or die("Error");  //Send two inputs strings. {1} DECODED CONTENT {2} FILENAME

   // Check if there is anny fault with Client connecting to Server
   if($client->fault){
        echo "Fault {$client->faultcode} <br/>";
        echo "String {$client->faultstring} <br/>";
   }
   else{
        print_r($response); // If success then print response coming from SOAP Server
   }


<form name="name1" method="post" action="" enctype="multipart/form-data">
<input type="file" name="uploadfiles"><br />
<input type="submit" name="submit" value="uploadSubmit"><br />
</form>

=============================================== ==

您需要做的就是下载将在肥皂库http://sourceforge.net/projects/nusoap/中看到的nusoap.php

经过全面测试,它将100%正常运行。

答案 1 :(得分:2)

通过SOAP传输文件是第一次让每个人都拥有的东西(包括我自己)。您需要打开并阅读文档,然后将其作为字符串传输。我就是这样做的。

$handle = fopen("mypackage.zip", "r");
$contents = fread($handle, filesize("mypackage.zip"));
fclose($handle);

//$contents now holds the byte-array of our selected file

然后通过SOAP将$ contents作为字符串发送,并在另一端重新组装。

答案 2 :(得分:2)

在client.php中,更改此内容:

if($_POST['submit'])
{

   ...

}   
$client=new soapclient($wsdl) or die("Error");   // Connect the SOAP server
$response = $client->__call('upload_file',array($decodeContent,$filename)) or die("Error");  //Send two inputs strings. {1} DECODED CONTENT {2} FILENAME

到此:

if($_POST['submit'])
{
   ...

   $client=new soapclient($wsdl) or die("Error");   // Connect the SOAP server
   $response = $client->__call('upload_file',array($decodeContent,$filename)) or die("Error");  //Send two inputs strings. {1} DECODED CONTENT {2} FILENAME
}