php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #51475 setPersistance not possible with setObject
Submitted: 2010-04-05 11:37 UTC Modified: 2013-02-18 00:34 UTC
Votes:6
Avg. Score:4.7 ± 0.7
Reproduced:5 of 5 (100.0%)
Same Version:2 (40.0%)
Same OS:2 (40.0%)
From: jstein at image dot dk Assigned:
Status: No Feedback Package: SOAP related
PHP Version: 5.3.2 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: jstein at image dot dk
New email:
PHP Version: OS:

 

 [2010-04-05 11:37 UTC] jstein at image dot dk
Description:
------------
In http://svn.php.net/viewvc/php/php-src/trunk/ext/soap/soap.c?revision=296820&view=markup at line 1322 "setPersistence" checks for "service->type == SOAP_CLASS", but if you want to set an object with "setObject" instead of a class, the service type will be SOAP_OBJECT.

I guess it should be possible to use persistence with setObject (that's what the documentation says: http://www.php.net/manual/en/soapserver.setpersistence.php ).



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2010-04-24 19:14 UTC] felipe@php.net
-Status: Open +Status: Feedback
 [2010-04-24 19:14 UTC] felipe@php.net
Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.


 [2010-04-24 22:09 UTC] jstein at image dot dk
SOAP server:

<?php

class Test{
  private $var;
  function __construct(){
    $this->var=0;
  }
  function addOne(){
    $this->var++;
    return $this->getVar();
  }
}

$data=$HTTP_RAW_POST_DATA;
$one=new Test();
session_start();
$server=new SoapServer(null,array('soap_version'=>SOAP_1_2,'uri'=>"http://jsp-hotel.dk/test"));
//$server->setObject($one); // Does not work
$server->setClass('Test'); // This does work
$server->setPersistence(SOAP_PERSISTENCE_SESSION);
$server->handle($data);
?>

SOAP Client:

<?php
$client = new SoapClient(null, array('location' => "http://jsp-hotel.dk/test/soappersistence-setClass.php",
                                     'uri'      => "http://jsp-hotel.dk/test",
                                     'trace'    => true));
try {
  echo $client->addOne();
  echo '<hr>';
  echo $client->addOne();
} catch (Exception $e) {
  echo $e . '<hr>';
  echo $client->__getLastRequest() . '<hr>' . $client->__getLastRequestHeaders() . '<hr>' .
    $client->__getLastResponse() . '<hr>' . $client->__getLastResponseHeaders();
}
?>

The client prints 1 2 (as expected) when server uses "setClass", but 1 1 when server uses "setObject".
 [2012-01-09 22:18 UTC] frozenfire@php.net
Automatic comment from SVN on behalf of frozenfire
Revision: http://svn.php.net/viewvc/?view=revision&amp;revision=321972
Log: Updated to clarify method's use. Closes bug #60686 and reflects behaviour related to bug #51475. Credit to Rick Bird.
 [2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 05:01:29 2024 UTC